Skip to content

Commit de3192f

Browse files
committed
change initial numpy version to 1.14.5.
1 parent 2c07970 commit de3192f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ install:
6464
# Install general requirements the way setup.py suggests
6565
- pip install pep8 codecov
6666
# Temporarily pin the numpy version for travis-ci
67-
- pip install "numpy<1.15"
67+
- pip install "numpy<=1.14.5"
6868
- cat requirements.txt | xargs -n 1 -L 1 pip install
6969
# Install openml dependency for metadata generation unittest
7070
- pip install xmltodict requests liac-arff

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)