Pin numpy to v2

This commit is contained in:
Matthew Honnibal 2024-09-02 10:09:55 +02:00
parent 304a8539e9
commit 77abf0828a
3 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
# build version constraints for use with wheelwright
numpy>=1.25.0; python_version>='3.9'
numpy>=2.0.0; python_version>='3.9'

View File

@ -12,8 +12,8 @@ catalogue>=2.0.6,<2.1.0
typer>=0.3.0,<1.0.0
weasel>=0.1.0,<0.5.0
# Third party dependencies
numpy>=1.15.0; python_version < "3.9"
numpy>=1.19.0; python_version >= "3.9"
numpy>=2.0.0,<3.0.0; python_version < "3.9"
numpy>=2.0.0,<3.0.0; python_version >= "3.9"
requests>=2.13.0,<3.0.0
tqdm>=4.38.0,<5.0.0
pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0

View File

@ -45,8 +45,8 @@ install_requires =
# Third-party dependencies
typer>=0.3.0,<1.0.0
tqdm>=4.38.0,<5.0.0
numpy>=1.15.0; python_version < "3.9"
numpy>=1.19.0; python_version >= "3.9"
numpy>=2.0.0,<3.0.0; python_version < "3.9"
numpy>=2.0.0,<3.0.0; python_version >= "3.9"
requests>=2.13.0,<3.0.0
pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0
jinja2