Skip to content

Commit c2fa6d6

Browse files
committed
excluded version 1.16 of numpy in setup.py because it is incompatible with pytables < 3.5
1 parent ea9b60b commit c2fa6d6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ install:
3737
# might want to avoid the later by installing all dependencies manually
3838
# except scipy and install pandas with --no-deps
3939
- 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
4141
xlsxwriter pytest pytest-pep8
4242
- source activate travisci
4343

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ def readlocal(fname):
1515
DESCRIPTION = "N-D labeled arrays in Python"
1616
LONG_DESCRIPTION = readlocal("README.rst")
1717
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']
1920
TESTS_REQUIRE = ['pytest', 'pytest-pep8']
2021

2122
LICENSE = 'GPLv3'

0 commit comments

Comments
 (0)