Skip to content

Commit 0204617

Browse files
committed
MAINT: Sort dependencies alphabetically
1 parent e722d61 commit 0204617

File tree

3 files changed

+47
-47
lines changed

3 files changed

+47
-47
lines changed

nipype/info.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -135,47 +135,47 @@ def get_nipype_gitversion():
135135
VERSION = __version__
136136
PROVIDES = ['nipype']
137137
REQUIRES = [
138-
'nibabel>=%s' % NIBABEL_MIN_VERSION,
139-
'networkx>=%s,<=%s ; python_version < "3.0"' % (NETWORKX_MIN_VERSION, NETWORKX_MAX_VERSION_27),
138+
'click>=%s' % CLICK_MIN_VERSION,
139+
'configparser; python_version <= "3.4"',
140+
'funcsigs',
141+
'future>=%s' % FUTURE_MIN_VERSION,
142+
'futures; python_version == "2.7"',
140143
'networkx>=%s ; python_version >= "3.0"' % NETWORKX_MIN_VERSION,
141-
'numpy>=%s,!=%s ; python_version == "2.7"' % (NUMPY_MIN_VERSION, NUMPY_BAD_VERSION_27),
144+
'networkx>=%s,<=%s ; python_version < "3.0"' % (NETWORKX_MIN_VERSION, NETWORKX_MAX_VERSION_27),
145+
'neurdflib',
146+
'nibabel>=%s' % NIBABEL_MIN_VERSION,
142147
'numpy>=%s ; python_version > "3.0" and python_version < "3.7"' % NUMPY_MIN_VERSION,
143148
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
149+
'numpy>=%s,!=%s ; python_version == "2.7"' % (NUMPY_MIN_VERSION, NUMPY_BAD_VERSION_27),
150+
'packaging',
151+
'prov>=%s' % PROV_VERSION,
152+
'pydot>=%s' % PYDOT_MIN_VERSION,
153+
'pydotplus',
144154
'python-dateutil>=%s' % DATEUTIL_MIN_VERSION,
145155
'scipy>=%s' % SCIPY_MIN_VERSION,
146-
'traits>=%s,!=5.0' % TRAITS_MIN_VERSION,
147-
'future>=%s' % FUTURE_MIN_VERSION,
148156
'simplejson>=%s' % SIMPLEJSON_MIN_VERSION,
149-
'prov>=%s' % PROV_VERSION,
150-
'neurdflib',
151-
'click>=%s' % CLICK_MIN_VERSION,
152-
'funcsigs',
153-
'pydotplus',
154-
'pydot>=%s' % PYDOT_MIN_VERSION,
155-
'packaging',
156-
'futures; python_version == "2.7"',
157-
'configparser; python_version <= "3.4"',
157+
'traits>=%s,!=5.0' % TRAITS_MIN_VERSION,
158158
]
159159

160160
TESTS_REQUIRES = [
161+
'codecov',
162+
'coverage<5',
161163
'mock',
162164
'pytest',
163165
'pytest-cov',
164-
'codecov',
165166
'pytest-env',
166-
'coverage<5'
167167
]
168168

169169
EXTRA_REQUIRES = {
170170
'doc': ['Sphinx>=1.4', 'numpydoc', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'],
171-
'tests': TESTS_REQUIRES,
172-
'specs': ['yapf'],
171+
'duecredit': ['duecredit'],
173172
'nipy': ['nitime', 'nilearn<0.5.0', 'dipy', 'nipy', 'matplotlib'],
174173
'profiler': ['psutil>=5.0'],
175-
'duecredit': ['duecredit'],
176-
'xvfbwrapper': ['xvfbwrapper'],
177174
'pybids': ['pybids>=0.7.0'],
175+
'specs': ['yapf'],
178176
'ssh': ['paramiko'],
177+
'tests': TESTS_REQUIRES,
178+
'xvfbwrapper': ['xvfbwrapper'],
179179
# 'mesh': ['mayavi'] # Enable when it works
180180
}
181181

requirements.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
numpy>=1.9.0
2-
scipy>=0.14
1+
click>=6.6.0
2+
configparser
3+
funcsigs
4+
future>=0.16.0
35
networkx>=1.9
4-
traits>=4.6
5-
python-dateutil>=2.2
6+
neurdflib
67
nibabel>=2.1.0
7-
future>=0.16.0
8-
simplejson>=3.8.0
8+
numpy>=1.9.0
9+
packaging
910
prov>=1.5.2
10-
neurdflib
11-
click>=6.6.0
12-
funcsigs
13-
configparser
14-
pydotplus
1511
pydot>=1.2.3
16-
packaging
12+
pydotplus
13+
python-dateutil>=2.2
14+
scipy>=0.14
15+
simplejson>=3.8.0
16+
traits>=4.6

rtd_requirements.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
numpy>=1.9.0
2-
scipy>=0.14
1+
configparser
2+
funcsigs
3+
future>=0.16.0
4+
matplotlib
5+
mock
36
networkx>=1.9
4-
traits>=4.6
5-
python-dateutil>=2.2
67
nibabel>=2.1.0
7-
future>=0.16.0
8-
simplejson>=3.8.0
8+
numpy>=1.9.0
9+
numpydoc
10+
packaging
911
prov==1.5.0
10-
funcsigs
11-
configparser
12-
pytest>=3.0
13-
mock
14-
pydotplus
15-
pydot>=1.2.3
1612
psutil
17-
matplotlib
18-
packaging
19-
numpydoc
13+
pydot>=1.2.3
14+
pydotplus
15+
pytest>=3.0
16+
python-dateutil>=2.2
17+
scipy>=0.14
18+
simplejson>=3.8.0
19+
traits>=4.6

0 commit comments

Comments
 (0)