Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require Julia 1.10 #36

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,22 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- '1.10'
- '~1.11.0-0'
- '1.11'
- 'nightly'
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macOS-13
arch:
- x64
include:
- os: macOS-14
version: '1.10'
arch: aarch64
- os: macOS-14
version: '1.11'
arch: aarch64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MEDYANSimRunner"
uuid = "b58a3b99-22e3-44d1-b5ea-258f082a6fe8"
authors = ["nhz2 <[email protected]>"]
version = "0.5.5"
version = "0.5.6"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down Expand Up @@ -30,4 +30,4 @@ OrderedCollections = "1"
Random = "1"
SHA = "0.7, 1"
SmallZarrGroups = "0.8.3"
julia = "1.9"
julia = "1.10"
3 changes: 3 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[source]
MEDYANSimRunner = {path = ".."}

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand Down

This file was deleted.

4 changes: 0 additions & 4 deletions test/example/output-ref-1_9/a/traj/footer.json

This file was deleted.

4 changes: 0 additions & 4 deletions test/example/output-ref-1_9/a/traj/header.json

This file was deleted.

Binary file removed test/example/output-ref-1_9/a/traj/snap0.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap1.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap10.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap11.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap2.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap3.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap4.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap5.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap6.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap7.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap8.zarr.zip
Binary file not shown.
Binary file removed test/example/output-ref-1_9/a/traj/snap9.zarr.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions test/test_ref_out.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ module UserCode
end
@testset "reference output" begin

ref_out = if VERSION >= v"1.10.0-rc1"
ref_out = if VERSION >= v"1.10"
joinpath(@__DIR__, "example/output-ref-1_10")
else
joinpath(@__DIR__, "example/output-ref-1_9")
error("Julia version $(VERSION) isn't supported")
end
warn_only_logger = MinLevelLogger(current_logger(), Logging.Warn);

Expand Down
Loading