Skip to content

Commit 08cd3d3

Browse files
committed
MAINT: Sort dependencies
1 parent 375d00f commit 08cd3d3

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

nipype/info.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -129,22 +129,22 @@ def get_nipype_gitversion():
129129
VERSION = __version__
130130
PROVIDES = ['nipype']
131131
REQUIRES = [
132-
'nibabel>=%s' % NIBABEL_MIN_VERSION,
132+
'click>=%s' % CLICK_MIN_VERSION,
133+
'funcsigs',
134+
'future>=%s' % FUTURE_MIN_VERSION,
133135
'networkx>=%s' % NETWORKX_MIN_VERSION,
136+
'neurdflib',
137+
'nibabel>=%s' % NIBABEL_MIN_VERSION,
134138
'numpy>=%s ; python_version < "3.7"' % NUMPY_MIN_VERSION,
135139
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
140+
'packaging',
141+
'prov>=%s' % PROV_VERSION,
142+
'pydot>=%s' % PYDOT_MIN_VERSION,
143+
'pydotplus',
136144
'python-dateutil>=%s' % DATEUTIL_MIN_VERSION,
137145
'scipy>=%s' % SCIPY_MIN_VERSION,
138-
'traits>=%s,!=5.0' % TRAITS_MIN_VERSION,
139-
'future>=%s' % FUTURE_MIN_VERSION,
140146
'simplejson>=%s' % SIMPLEJSON_MIN_VERSION,
141-
'prov>=%s' % PROV_VERSION,
142-
'neurdflib',
143-
'click>=%s' % CLICK_MIN_VERSION,
144-
'funcsigs',
145-
'pydotplus',
146-
'pydot>=%s' % PYDOT_MIN_VERSION,
147-
'packaging',
147+
'traits>=%s,!=5.0' % TRAITS_MIN_VERSION,
148148
]
149149

150150
TESTS_REQUIRES = [

0 commit comments

Comments
 (0)