Skip to content

Commit 82d1ad2

Browse files
committed
MNT: Drop support for numpy < 1.15.3
1 parent 47fe00b commit 82d1ad2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

nipype/info.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,9 @@ def get_nipype_gitversion():
100100
# versions
101101
NIBABEL_MIN_VERSION = "2.1.0"
102102
NETWORKX_MIN_VERSION = "2.0"
103-
NUMPY_MIN_VERSION = "1.13"
104103
# Numpy bug in python 3.7:
105104
# https://www.opensourceanswers.com/blog/you-shouldnt-use-python-37-for-data-science-right-now.html
106-
NUMPY_MIN_VERSION_37 = "1.15.3"
105+
NUMPY_MIN_VERSION = "1.15.3"
107106
SCIPY_MIN_VERSION = "0.14"
108107
TRAITS_MIN_VERSION = "4.6"
109108
DATEUTIL_MIN_VERSION = "2.2"
@@ -138,8 +137,7 @@ def get_nipype_gitversion():
138137
"click>=%s" % CLICK_MIN_VERSION,
139138
"networkx>=%s" % NETWORKX_MIN_VERSION,
140139
"nibabel>=%s" % NIBABEL_MIN_VERSION,
141-
'numpy>=%s ; python_version < "3.7"' % NUMPY_MIN_VERSION,
142-
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
140+
'numpy>=%s' % NUMPY_MIN_VERSION,
143141
"packaging",
144142
"prov>=%s" % PROV_VERSION,
145143
"pydot>=%s" % PYDOT_MIN_VERSION,

0 commit comments

Comments
 (0)