File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ def get_nipype_gitversion():
110
110
# Numpy drops 2.7 support in 1.17
111
111
NUMPY_MAX_VERSION_27 = '1.17.0'
112
112
SCIPY_MIN_VERSION = '0.14'
113
+ # Scipy drops 2.7 and 3.4 support in 1.3
114
+ SCIPY_MAX_VERSION_34 = '1.3.0'
113
115
TRAITS_MIN_VERSION = '4.6'
114
116
DATEUTIL_MIN_VERSION = '2.2'
115
117
FUTURE_MIN_VERSION = '0.16.0'
@@ -157,7 +159,8 @@ def get_nipype_gitversion():
157
159
'pydot>=%s' % PYDOT_MIN_VERSION ,
158
160
'pydotplus' ,
159
161
'python-dateutil>=%s' % DATEUTIL_MIN_VERSION ,
160
- 'scipy>=%s' % SCIPY_MIN_VERSION ,
162
+ 'scipy>=%s ; python_version >= "3.5"' % SCIPY_MIN_VERSION ,
163
+ 'scipy>=%s,<%s ; python_version <= "3.4"' % (SCIPY_MIN_VERSION , SCIPY_MAX_VERSION_34 ),
161
164
'simplejson>=%s' % SIMPLEJSON_MIN_VERSION ,
162
165
'traits>=%s,!=5.0' % TRAITS_MIN_VERSION ,
163
166
]
You can’t perform that action at this time.
0 commit comments