Skip to content

Commit

Permalink
Set upper bound on Numpy version. Ref #493.
Browse files Browse the repository at this point in the history
Numpy v2 introduces a breaking change for WFDB https://numpy.org/devdocs/numpy_2_0_migration_guide.html#changes-to-numpy-data-type-promotion. Set an upper bound on the Numpy version until the issue has been addressed.
  • Loading branch information
tompollard committed Jul 3, 2024
1 parent 34b989e commit b3161f6
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 b3161f6

Please sign in to comment.