Skip to content

Commit fe058c2

Browse files
[RFR] Pin numpy to 1.15.4
Workaround for pandas-dev#27435
1 parent 1ec0472 commit fe058c2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

requirements-dev.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy>=1.15
1+
numpy==1.15.4
22
python-dateutil>=2.5.0
33
pytz
44
asv
@@ -43,4 +43,4 @@ xarray
4343
xlrd
4444
xlsxwriter
4545
xlwt
46-
cpplint
46+
cpplint

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ def is_platform_mac():
3030
return sys.platform == 'darwin'
3131

3232

33-
min_numpy_ver = '1.12.0'
33+
min_numpy_ver = '1.15.4'
3434
setuptools_kwargs = {
3535
'install_requires': [
3636
'python-dateutil >= 2.5.0',
3737
'pytz >= 2011k',
38-
'numpy >= {numpy_ver}'.format(numpy_ver=min_numpy_ver),
38+
'numpy = {numpy_ver}'.format(numpy_ver=min_numpy_ver),
3939
],
40-
'setup_requires': ['numpy >= {numpy_ver}'.format(numpy_ver=min_numpy_ver)],
40+
'setup_requires': ['numpy = {numpy_ver}'.format(numpy_ver=min_numpy_ver)],
4141
'zip_safe': False,
4242
}
4343

0 commit comments

Comments
 (0)