Skip to content

Commit 6152ccf

Browse files
authored
Fix for panda/pip 10 installation below py.v3.5
For more details: pandas-dev/pandas#20775 or pandas-dev/pandas#20697 (comment)
1 parent 7b2c0f3 commit 6152ccf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,12 @@ def read(*names, **kwargs):
6262
'keras',
6363
'h5py>=2.8.0rc1',
6464
'networkx>=1.11',
65-
'numpy>=1.13.1',
65+
'numpy',
6666
'kopt',
6767
'scipy',
6868
'sklearn',
69-
'pandas',
69+
'pandas;python_version>="3.5"',
70+
'pandas<0.21;python_version>="3.5"',
7071
'statsmodels',
7172
'pytest'
7273
],

0 commit comments

Comments
 (0)