File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ install:
37
37
# might want to avoid the later by installing all dependencies manually
38
38
# except scipy and install pandas with --no-deps
39
39
- conda create -n travisci --yes python=${TRAVIS_PYTHON_VERSION:0:3}
40
- numpy pandas pytables matplotlib xlrd openpyxl
40
+ numpy!=1.16.* pandas pytables matplotlib xlrd openpyxl
41
41
xlsxwriter pytest pytest-pep8
42
42
- source activate travisci
43
43
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ def readlocal(fname):
15
15
DESCRIPTION = "N-D labeled arrays in Python"
16
16
LONG_DESCRIPTION = readlocal ("README.rst" )
17
17
SETUP_REQUIRES = []
18
- INSTALL_REQUIRES = ['numpy >= 1.13' , 'pandas >= 0.13.1' ]
18
+ # excludes numpy 1.16.* because it is incompatible with pytables < 3.5
19
+ INSTALL_REQUIRES = ['numpy >= 1.13, != 1.16.*' , 'pandas >= 0.13.1' ]
19
20
TESTS_REQUIRE = ['pytest' , 'pytest-pep8' ]
20
21
21
22
LICENSE = 'GPLv3'
You can’t perform that action at this time.
0 commit comments