Skip to content

Commit

Permalink
Set upper bound on Numpy version (numpy = ">=1.10.1,<2.0.0"). Ref #493.…
Browse files Browse the repository at this point in the history
… (#494)

As discussed in #493, numpy v2.0.0 introduces a breaking change for
WFDB:
https://numpy.org/devdocs/numpy_2_0_migration_guide.html#changes-to-numpy-data-type-promotion.

This pull request sets an upper bound on the numpy version as a
temporary fix (`numpy = ">=1.10.1,<2.0.0"`).
  • Loading branch information
tompollard authored Jul 3, 2024
2 parents 34b989e + b3161f6 commit 13df748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"

[tool.poetry.dependencies]
python = ">=3.7"
numpy = ">=1.10.1"
numpy = ">=1.10.1,<2.0.0"
scipy = ">=1.0.0"
pandas = ">=1.3.0"
SoundFile = ">=0.10.0"
Expand Down

0 comments on commit 13df748

Please sign in to comment.