Skip to content

Commit

Permalink
upper-bound numpy version to fix tests (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
dionhaefner authored Aug 11, 2024
1 parent 9f7c0b4 commit 4ac20dd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@
long_description,
)

numpy_version = ">=1.15,!=1.17.0"
numpy_constraints = (
">=1.15",
"!=1.17.0",
# TODO: drop this once all deps support numpy 2.0
# see https://github.com/dask/crick/issues/53
"<2",
)
numpy_version = ",".join(numpy_constraints)

setup(
# metadata
Expand Down

0 comments on commit 4ac20dd

Please sign in to comment.