Skip to content

Commit 13df748

Browse files
authored
Set upper bound on Numpy version (numpy = ">=1.10.1,<2.0.0"). Ref #493. (#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"`).
2 parents 34b989e + b3161f6 commit 13df748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111

1212
[tool.poetry.dependencies]
1313
python = ">=3.7"
14-
numpy = ">=1.10.1"
14+
numpy = ">=1.10.1,<2.0.0"
1515
scipy = ">=1.0.0"
1616
pandas = ">=1.3.0"
1717
SoundFile = ">=0.10.0"

0 commit comments

Comments
 (0)