Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-adding numpy 2+ support #2804

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements/audio.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# this need to be the same as used inside speechmetrics
pesq >=0.0.4, <0.0.5
numpy <2.0 # strict, for compatibility reasons
pystoi >=0.4.0, <0.5.0
torchaudio >=2.0.1, <2.6.0
gammatone >=1.0.0, <1.1.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment

numpy >1.20.0, <2.0 # strict, for compatibility reasons
numpy >1.20.0
packaging >17.1
torch >=2.0.0, <2.6.0
typing-extensions; python_version < '3.9'
Expand Down
Loading