Skip to content

Commit 61d0ec8

Browse files
committed
[MNT] Fix requirements to avoid using Numpy ver1.20.0
1 parent 065df52 commit 61d0ec8

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ requires = [
33
"setuptools>=42",
44
"wheel",
55
"Cython>=0.28.5",
6-
"numpy==1.11.3; python_version<='3.6'",
7-
"numpy==1.14.5; python_version=='3.7'",
8-
"numpy==1.17.3; python_version=='3.8'",
9-
"numpy==1.19.4; python_version>='3.9'",
6+
"numpy>=1.13.3,<1.20.0"
107
"scipy>=0.19.1"
118
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy>=1.13.3
1+
numpy>=1.13.3,<1.20.0
22
scipy>=0.19.1
33
joblib>=0.11
44
scikit-learn>=0.22

0 commit comments

Comments
 (0)