Skip to content

Commit 395cfd7

Browse files
BLD Sets minimal supported numpy version in pyproject.toml (scikit-learn#16823)
1 parent 2d25ea7 commit 395cfd7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ requires = [
44
"setuptools",
55
"wheel",
66
"Cython>=0.28.5",
7-
"numpy>=1.13.3",
7+
"numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'",
8+
"numpy==1.14.5; python_version=='3.7' and platform_system!='AIX'",
9+
"numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'",
10+
"numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'",
11+
"numpy==1.16.0; python_version=='3.7' and platform_system=='AIX'",
12+
"numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'",
813
"scipy>=0.19.1",
914
]

0 commit comments

Comments
 (0)