File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- numpy >= 1.15
1
+ numpy == 1.15.4
2
2
python-dateutil >= 2.5.0
3
3
pytz
4
4
asv
43
43
xlrd
44
44
xlsxwriter
45
45
xlwt
46
- cpplint
46
+ cpplint
Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ def is_platform_mac():
30
30
return sys .platform == 'darwin'
31
31
32
32
33
- min_numpy_ver = '1.12.0 '
33
+ min_numpy_ver = '1.15.4 '
34
34
setuptools_kwargs = {
35
35
'install_requires' : [
36
36
'python-dateutil >= 2.5.0' ,
37
37
'pytz >= 2011k' ,
38
- 'numpy > = {numpy_ver}' .format (numpy_ver = min_numpy_ver ),
38
+ 'numpy = {numpy_ver}' .format (numpy_ver = min_numpy_ver ),
39
39
],
40
- 'setup_requires' : ['numpy > = {numpy_ver}' .format (numpy_ver = min_numpy_ver )],
40
+ 'setup_requires' : ['numpy = {numpy_ver}' .format (numpy_ver = min_numpy_ver )],
41
41
'zip_safe' : False ,
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments