Skip to content

Commit 41c6fef

Browse files
committed
Avoid numpy==1.16.0 --> results in error 'cannot set WRITABLE flag'
solution seems to be to downgrade from numpy 1.16: pandas-dev/pandas#24839
1 parent 37e46f2 commit 41c6fef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
future>=0.14.3
2-
numpy>=1.9.2
2+
numpy>=1.13,<1.16.0
33
numexpr>=2.4
4-
tables>=3.2.2
4+
tables>=3.4
55
cython
66
PySAIS
77
biopython

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
name = 'pyoma'
77

8-
req_packages = ['numpy', 'tables>=3.2', 'future', 'fuzzyset',
9-
'tqdm', 'pyopa', 'pandas>=0.21', 'biopython']
8+
req_packages = ['numpy>=1.13,<1.16', 'tables>=3.4', 'future', 'fuzzyset>=0.0.17',
9+
'tqdm', 'pyopa>=0.8', 'pandas>=0.21', 'biopython']
1010
if sys.version_info < (3, 3):
1111
req_packages.extend(['mock', 'functools32'])
1212

0 commit comments

Comments
 (0)