Skip to content

Commit

Permalink
require julia 1.10 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 authored Oct 9, 2024
1 parent 67d5b42 commit 711c914
Show file tree
Hide file tree
Showing 21 changed files with 12 additions and 53 deletions.
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
Empty file.

This file was deleted.

Empty file.
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

2 comments on commit 711c914

@nhz2
Copy link
Member Author

@nhz2 nhz2 commented on 711c914 Oct 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116930

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.6 -m "<description of version>" 711c914cf102fac0a00f2e5c213c0547756d4b2c
git push origin v0.5.6

Please sign in to comment.