Skip to content

Commit d6b86d5

Browse files
committed
MNT: Update minimum numpy, clean up min versions
1 parent 5dbbd65 commit d6b86d5

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

nipype/info.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,12 @@ def get_nipype_gitversion():
101101
# versions
102102
NIBABEL_MIN_VERSION = "2.1.0"
103103
NETWORKX_MIN_VERSION = "2.0"
104-
# Numpy bug in python 3.7:
105-
# https://www.opensourceanswers.com/blog/you-shouldnt-use-python-37-for-data-science-right-now.html
106-
NUMPY_MIN_VERSION = "1.15.3"
104+
NUMPY_MIN_VERSION = "1.17"
107105
SCIPY_MIN_VERSION = "0.14"
108106
TRAITS_MIN_VERSION = "4.6"
109107
DATEUTIL_MIN_VERSION = "2.2"
110-
FUTURE_MIN_VERSION = "0.16.0"
111108
SIMPLEJSON_MIN_VERSION = "3.8.0"
112-
PROV_VERSION = "1.5.2"
109+
PROV_MIN_VERSION = "1.5.2"
113110
RDFLIB_MIN_VERSION = "5.0.0"
114111
CLICK_MIN_VERSION = "6.6.0"
115112
PYDOT_MIN_VERSION = "1.2.3"
@@ -140,7 +137,7 @@ def get_nipype_gitversion():
140137
"nibabel>=%s" % NIBABEL_MIN_VERSION,
141138
"numpy>=%s" % NUMPY_MIN_VERSION,
142139
"packaging",
143-
"prov>=%s" % PROV_VERSION,
140+
"prov>=%s" % PROV_MIN_VERSION,
144141
"pydot>=%s" % PYDOT_MIN_VERSION,
145142
"python-dateutil>=%s" % DATEUTIL_MIN_VERSION,
146143
"rdflib>=%s" % RDFLIB_MIN_VERSION,

0 commit comments

Comments
 (0)