We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4358fe5 commit ab11581Copy full SHA for ab11581
nipype/info.py
@@ -4,6 +4,7 @@
4
"""
5
from __future__ import print_function, division, unicode_literals, absolute_import
6
7
+import sys
8
9
# nipype version information. An empty version_extra corresponds to a
10
# full release. '.dev' as a version_extra string means this is a development
@@ -138,12 +139,14 @@ def get_nipype_gitversion():
138
139
'prov>=%s' % PROV_MIN_VERSION,
140
'click>=%s' % CLICK_MIN_VERSION,
141
'funcsigs',
- 'configparser',
142
'pytest>=%s' % PYTEST_MIN_VERSION,
143
'mock',
144
'pydotplus'
145
]
146
147
+if sys.version_info <= (3, 4):
148
+ REQUIRES.append('configparser')
149
+
150
TESTS_REQUIRES = [
151
'pytest-cov',
152
'codecov'
0 commit comments