Skip to content

Commit 497a8e7

Browse files
committed
Upgrade numpy version requirement to
Summary: 1.21 is too old now. Let's at least try to upgrade to 1.24.4 instead (https://numpy.org/devdocs/release/1.24.4-notes.html) Hopefully over time we can migrate to numpy 2.x instead
1 parent 25d8f15 commit 497a8e7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.ci/docker/requirements-ci.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
mpmath==1.3.0
2-
numpy==1.21.3; python_version == '3.10'
3-
numpy==1.23.2; python_version == '3.11'
2+
numpy==1.24.4; python_version == '3.10' or python_version == '3.11'
43
numpy; python_version >= '3.12'
54
PyYAML==6.0.1
65
ruamel.yaml==0.17.32

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ dependencies=[
5555
"flatbuffers",
5656
"hypothesis",
5757
"mpmath==1.3.0",
58-
"numpy==1.21.3; python_version == '3.10'",
59-
"numpy==1.23.2; python_version == '3.11'",
58+
"numpy==1.24.4; python_version == '3.10' or python_version == '3.11'",
6059
"numpy; python_version >= '3.12'",
6160
"packaging",
6261
"pandas==2.0.3; python_version == '3.10'",

0 commit comments

Comments
 (0)