Skip to content

Commit

Permalink
Fix numpy and pandas versions.
Browse files Browse the repository at this point in the history
Summary:
It has to match the coremltools minimum requirement for Python 3.10:
https://github.com/apple/coremltools/blob/main/reqs/build.pip

Differential Revision: D60265982
  • Loading branch information
shoumikhin authored and facebook-github-bot committed Jul 25, 2024
1 parent 889e5cb commit 4a08541
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .ci/docker/requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mpmath==1.3.0
numpy==1.25.2
numpy==1.21.3
PyYAML==6.0.1
ruamel.yaml==0.17.32
sympy==1.12
Expand All @@ -8,6 +8,7 @@ tomli==2.0.1
torchsr==1.0.4
transformers==4.38.0
zstd==1.5.5.1
pandas==2.0.3
pytest==7.2.0
pytest-cov==4.1.0
expecttest==0.1.6
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ dependencies=[
"flatbuffers",
"hypothesis",
"mpmath==1.3.0",
"numpy>=1.25.2",
"numpy==1.21.3",
"packaging",
"pandas",
"pandas==2.0.3",
"parameterized",
"pytest",
"pytest-xdist",
Expand Down

0 comments on commit 4a08541

Please sign in to comment.