Skip to content

Commit

Permalink
Merge pull request #152 from mattjala/master
Browse files Browse the repository at this point in the history
Support numpy 2.0.0
  • Loading branch information
kiyo-masui authored Sep 24, 2024
2 parents 333b459 + b2aec12 commit f219f50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lzf/lzf_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

/* Deal with the mutiple definitions for H5Z_class_t.
Note: HDF5 1.6 and >= 1.8 are supported.
See https://portal.hdfgroup.org/hdf5/develop/group___h5_z.html#title6
See https://hdfgroup.github.io/hdf5/develop/group___h5_z.html#ga93145acc38c2c60d832b7a9b0123706b
for version history.
(1) The old class should always be used for HDF5 1.6
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
requires = [
"setuptools>=0.7",
"Cython>=0.19",
"oldest-supported-numpy",
"numpy>=1.6.1",
"h5py>=2.4.0",
]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

VERSION_MAJOR = 0
VERSION_MINOR = 5
VERSION_POINT = 1
VERSION_POINT = 2
# Define ZSTD macro for cython compilation
default_options["compile_time_env"] = {"ZSTD_SUPPORT": False}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
np.float64,
np.complex128,
]
TEST_DTYPES += [b"a3", b"a5", b"a6", b"a7", b"a9", b"a11", b"a12", b"a24", b"a48"]
TEST_DTYPES += [b"S3", b"S5", b"S6", b"S7", b"S9", b"S11", b"S12", b"S24", b"S48"]


class TestProfile(unittest.TestCase):
Expand Down

0 comments on commit f219f50

Please sign in to comment.