Skip to content

Commit 48c985e

Browse files
authored
Merge branch 'master' into makie
2 parents ccefe09 + 38ce40b commit 48c985e

40 files changed

+1680
-560
lines changed

.github/workflows/documenter.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: julia-actions/setup-julia@latest
1616
with:
1717
version: ^1.7.0-rc1
18-
- name: Install dependencies
18+
- name: Install dependencies and build package
1919
env:
2020
PYTHON: # remove PYTHON env variable to make sure packages are installed
21+
uses: julia-actions/julia-buildpkg@v1
22+
- name: Instantiate documentation pkg
2123
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
2224
- name: Build and deploy
2325
env:

.github/workflows/run_tests.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,19 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
julia-version: ['1.7', '1.8']
11+
julia-version: ['1.9', '1']
1212
julia-arch: [x64]
1313
os: [ubuntu-latest, windows-latest, macos-latest]
1414
if: github.event.pull_request.draft == false
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- uses: julia-actions/setup-julia@latest
1818
with:
1919
version: ${{ matrix.julia-version }}
2020
arch: ${{ matrix.julia-arch }}
21-
- name: Install dependencies
21+
- name: Install dependencies and build
2222
env:
2323
PYTHON: # remove PYTHON env variable to make sure packages are installed
24-
uses: julia-actions/julia-runtest@master
24+
uses: julia-actions/julia-buildpkg@v1
25+
- name: Run tests
26+
uses: julia-actions/julia-runtest@v1

Project.toml

+25-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name = "Luna"
22
uuid = "30eb0fb0-5147-11e9-3356-d75b018717ce"
33
authors = ["chrisbrahms <[email protected]>"]
4-
version = "0.2.0"
4+
version = "0.5.0"
55

66
[deps]
77
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
88
BlackBoxOptim = "a134a8b2-14d6-55f6-9291-3336d3ab0209"
99
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
1010
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
11+
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
1112
CoolProp = "e084ae63-2819-5025-826e-f8e611a84251"
1213
Cubature = "667455a9-e2ce-5579-9412-b964f529a492"
1314
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
@@ -19,6 +20,7 @@ Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
1920
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
2021
EllipsisNotation = "da5c29d0-fa7d-589e-88eb-ea29b0a81949"
2122
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
23+
FileWatching = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
2224
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
2325
GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
2426
GSL = "92c85e6c-cbff-5e0c-80f7-495c94daaecd"
@@ -36,7 +38,7 @@ NumericalIntegration = "e7bfaba1-d571-5449-8927-abc22e82249b"
3638
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
3739
Peaks = "18e31ff7-3703-566c-8e60-38913d67486b"
3840
PhysicalConstants = "5ad8b20f-a522-5ce9-bfc9-ddf1d5bda6ab"
39-
Pidfile = "fa939f87-e72e-5be4-a000-7fc836dbe307"
41+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
4042
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
4143
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
4244
ProgressLogging = "33c8b6b6-d38a-422a-b730-caa89a2f386c"
@@ -45,6 +47,7 @@ QuartzImageIO = "dca85d43-d64c-5e67-8c65-017450d5d020"
4547
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
4648
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
4749
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
50+
Scratch = "6c6a2e73-6563-6170-7368-637461726353"
4851
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
4952
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
5053
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
@@ -55,33 +58,46 @@ Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
5558
ArgParse = "1"
5659
BlackBoxOptim = "0.6"
5760
CSV = "0.9, 0.10"
58-
CoolProp = "0.1"
61+
Conda = "1"
62+
CoolProp = "0.1, 0.2"
5963
Cubature = "1.5.1"
6064
DSP = "0.7.3"
6165
DataStructures = "0.18.10"
66+
Dates = "1.9"
67+
DelimitedFiles = "1"
6268
Dierckx = "0.5.1"
63-
Documenter = "0.27.5"
69+
Distributed = "1.9"
70+
Documenter = "0.27.5, 1"
6471
EllipsisNotation = "1"
6572
FFTW = "1.3"
73+
FileWatching = "1.9"
6674
FiniteDifferences = "0.11, 0.12"
6775
GSL = "1"
6876
Glob = "1.3"
6977
H5Zblosc = "0.1"
7078
HCubature = "1.5"
71-
HDF5 = "0.15, 0.16"
79+
HDF5 = "0.15, 0.16, 0.17"
7280
Hankel = "0.5.5"
81+
LibGit2 = "1.9"
82+
LinearAlgebra = "1.9"
83+
Logging = "1.9"
7384
Memoize = "0.4.4"
7485
NumericalIntegration = "0.3.3"
7586
Optim = "1.4"
76-
Peaks = "0.3.2, 0.4"
87+
Peaks = "0.3.2, 0.4, 0.5"
7788
PhysicalConstants = "0.2"
78-
Pidfile = "1.2"
79-
Polynomials = "2, 3"
89+
Pkg = "1.9"
90+
Polynomials = "2, 3, 4"
91+
Printf = "1.9"
8092
ProgressLogging = "0.1"
8193
QuadGK = "2.4"
94+
Random = "1.9"
8295
Reexport = "1.2"
8396
Roots = "2"
97+
Scratch = "1"
8498
SpecialFunctions = "0.10.3, 1, 2"
8599
StaticArrays = "1"
100+
Statistics = "1.9"
101+
Test = "1.9"
86102
Unitful = "1"
87-
julia = "1.7"
103+
julia = "1.9"

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
[![DOI](https://zenodo.org/badge/190623784.svg)](https://zenodo.org/badge/latestdoi/190623784)
55
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://lupo-lab.com/Luna.jl)
66

7+
> [!IMPORTANT]
8+
> To stay up-to-date with Luna.jl and learn about bugfixes and new features, subscribe to our [mailing list](https://jiscmail.ac.uk/luna).
79
810
Luna.jl is a flexible platform for the simulation of nonlinear optical dynamics—both in waveguides (such as optical fibres) and free-space geometries—using the unidirectional pulse propagation equation (UPPE) and its approximate forms, such as the commonly used generalised nonlinear Schrödinger equation (GNLSE). Some of the key features of Luna:
911
- A variety of propagation geometries treated in a unified way:
@@ -34,7 +36,7 @@ There are two ways of using Luna:
3436
For a short introduction on how to use the simple interface, see the [Quickstart](#quickstart) or [GNLSE](#gnlse) sections below. More information, including on the internals of Luna, can be found in the [Documentation](http://lupo-lab.com/Luna.jl).
3537

3638
## Installation
37-
Luna requires Julia v1.7 or later, which can be obtained from [here](https://julialang.org/downloads/). In a Julia terminal, to install Luna simply enter the package manager with `]` and run `add Luna`:
39+
Luna requires Julia v1.9 or later, which can be obtained from [here](https://julialang.org/downloads/). In a Julia terminal, to install Luna simply enter the package manager with `]` and run `add Luna`:
3840

3941
```julia
4042
]

deps/build.jl

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# from https://github.com/GeoscienceAustralia/HiQGA.jl/commit/db833bf32840503ee3bd0909b2b92993c239413c#diff-708e1c220f34be9ffbf04c0619b1f1a56388096c1df2b95603950d7adc80feaa
2+
import Pkg, Conda
3+
@info "building!"
4+
Conda.pip_interop(true)
5+
Conda.pip("install", "matplotlib")
6+
Conda.add("matplotlib")
7+
ENV["PYTHON"] = joinpath(Conda.ROOTENV, "bin", "python")
8+
Pkg.build("PyCall")
9+
@info "built PyCall!"

0 commit comments

Comments
 (0)