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

Move set_blosc! methods to H5ZBlosc.jl #1167

Merged
merged 9 commits into from
Nov 14, 2024
9 changes: 8 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,14 @@ jobs:
using Pkg
try
# force it to use this PR's version of the package
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
Pkg.develop(PackageSpec[ # resolver may fail with main deps
PackageSpec(path="."),
PackageSpec(path="./filters/H5Zbitshuffle"),
PackageSpec(path="./filters/H5Zblosc"),
PackageSpec(path="./filters/H5Zbzip2"),
PackageSpec(path="./filters/H5Zlz4"),
PackageSpec(path="./filters/H5Zzstd"),
])
Pkg.update()
Pkg.test() # resolver may fail with test time deps
catch err
Expand Down
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ MPIExt = "MPI"

[compat]
Compat = "3.1.0, 4"
H5Zblosc = "≥ 0.1.3"
Copy link
Collaborator

Choose a reason for hiding this comment

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

Shouldn't this be covered by the compat in H5Zblosc?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good point - it should be bumped / tightened whenever this falls into a release, but doing the compat on the H5Zblosc side is probably right

HDF5_jll = "~1.10.5, ~1.12.0, ~1.14.0"
MPI = "0.20"
MPIPreferences = "0.1.7"
Expand Down
Loading
Loading