Skip to content

Commit 2c07970

Browse files
committed
Fix requirement inequality mistake
1 parent f9a7b1d commit 2c07970

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ nose
44
six
55
Cython
66

7-
numpy>=1.9.0<=1.14.5
7+
numpy<=1.9.0>=1.14.5
88
scipy>=0.14.1
99

1010
scikit-learn>=0.19,<0.20

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"six",
3737
"Cython",
3838
# Numpy version of higher than 1.14.5 causes libgcc_s.so.1 error.
39-
"numpy>=1.9.0<=1.14.5",
39+
"numpy<=1.9.0>=1.14.5",
4040
"scipy>=0.14.1",
4141
"scikit-learn>=0.19,<0.20",
4242
"lockfile",

0 commit comments

Comments
 (0)