Skip to content

Commit 955a18c

Browse files
committed
MAINT: Make numpy min version explicitly for Python > 3.7
1 parent 0076a89 commit 955a18c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def get_nipype_gitversion():
136136
REQUIRES = [
137137
'nibabel>=%s' % NIBABEL_MIN_VERSION,
138138
'networkx>=%s' % NETWORKX_MIN_VERSION,
139-
'numpy>=%s' % NUMPY_MIN_VERSION,
139+
'numpy>=%s ; python_version < "3.7"' % NUMPY_MIN_VERSION,
140140
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
141141
'python-dateutil>=%s' % DATEUTIL_MIN_VERSION,
142142
'scipy>=%s' % SCIPY_MIN_VERSION,

0 commit comments

Comments
 (0)