Skip to content

Commit

Permalink
MNT: Drop support for numpy < 1.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Dec 20, 2020
1 parent 47fe00b commit 82d1ad2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions nipype/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,9 @@ def get_nipype_gitversion():
# versions
NIBABEL_MIN_VERSION = "2.1.0"
NETWORKX_MIN_VERSION = "2.0"
NUMPY_MIN_VERSION = "1.13"
# Numpy bug in python 3.7:
# https://www.opensourceanswers.com/blog/you-shouldnt-use-python-37-for-data-science-right-now.html
NUMPY_MIN_VERSION_37 = "1.15.3"
NUMPY_MIN_VERSION = "1.15.3"
SCIPY_MIN_VERSION = "0.14"
TRAITS_MIN_VERSION = "4.6"
DATEUTIL_MIN_VERSION = "2.2"
Expand Down Expand Up @@ -138,8 +137,7 @@ def get_nipype_gitversion():
"click>=%s" % CLICK_MIN_VERSION,
"networkx>=%s" % NETWORKX_MIN_VERSION,
"nibabel>=%s" % NIBABEL_MIN_VERSION,
'numpy>=%s ; python_version < "3.7"' % NUMPY_MIN_VERSION,
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
'numpy>=%s' % NUMPY_MIN_VERSION,
"packaging",
"prov>=%s" % PROV_VERSION,
"pydot>=%s" % PYDOT_MIN_VERSION,
Expand Down

0 comments on commit 82d1ad2

Please sign in to comment.