Skip to content

Commit

Permalink
Update Compatibility
Browse files Browse the repository at this point in the history
* Updated Julia compatibility to 1.10
* Refactored folders to match style guide
  • Loading branch information
dominic-chang committed Dec 28, 2023
1 parent 5c6213d commit c1b4a6e
Show file tree
Hide file tree
Showing 16 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- '1.10'
- 'nightly'
os:
- ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.9'
version: '1.10'
- name: Install JacobiElliptic
run: julia --project -e 'using Pkg; Pkg.develop([PackageSpec(path="https://github.com/dchang10/JacobiElliptic.jl.git")]); Pkg.instantiate()'
- name: Install docs dependencies
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ notifications:
email: false
julia:
- 1.0
- 1.9
- 1.10
- nightly
os:
- linux
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
DocStringExtensions = "0.9"
JacobiElliptic = "0.1"
StaticArrays = "1"
julia = "1.9"
julia = "1.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
20 changes: 10 additions & 10 deletions src/Krang.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ using JacobiElliptic

# Write your package code here.
include("metrics/AbstractMetric.jl")
include("metrics/Kerr.jl")
include("Geometries/geometry_types.jl")
include("Cameras/camera_types.jl")
include("Cameras/SlowLightIntensityCamera.jl")
include("Cameras/IntensityCamera.jl")
include("Kerr/raytracer.jl")
include("Kerr/api.jl")
include("Materials/material_types.jl")
include("Materials/PowerLawPolarization.jl")
include("Materials/observations.jl")
include("metrics/Kerr/Kerr.jl")
include("geometries/geometry_types.jl")
include("cameras/camera_types.jl")
include("cameras/SlowLightIntensityCamera.jl")
include("cameras/IntensityCamera.jl")
include("metrics/Kerr/raytracer.jl")
include("metrics/Kerr/api.jl")
include("materials/material_types.jl")
include("materials/PowerLawPolarization.jl")
include("materials/observations.jl")

end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c1b4a6e

Please sign in to comment.