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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
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"
HDF5_jll = "~1.10.5, ~1.12.0, ~1.14.0"
MPI = "0.20"
MPIPreferences = "0.1.7"
Expand Down
Loading
Loading