Skip to content

Commit 9fa38d1

Browse files
committed
restoring pydotplus, adding min version to pydot
1 parent c052581 commit 9fa38d1

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

doc/users/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ use the following command::
4747
While `all` installs everything, one can also install select components as
4848
listed below::
4949

50-
'doc': ['Sphinx>=1.4', 'matplotlib', 'pydot'],
50+
'doc': ['Sphinx>=1.4', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'],
5151
'tests': ['pytest-cov', 'codecov'],
5252
'nipy': ['nitime', 'nilearn', 'dipy', 'nipy', 'matplotlib'],
5353
'profiler': ['psutil'],

nipype/info.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def get_nipype_gitversion():
107107
SIMPLEJSON_MIN_VERSION = '3.8.0'
108108
PROV_VERSION = '1.5.0'
109109
CLICK_MIN_VERSION = '6.6.0'
110+
PYDOT_MIN_VERSION = '1.2.3'
110111

111112
NAME = 'nipype'
112113
MAINTAINER = 'nipype developers'
@@ -141,7 +142,8 @@ def get_nipype_gitversion():
141142
'funcsigs',
142143
'pytest>=%s' % PYTEST_MIN_VERSION,
143144
'mock',
144-
'pydot',
145+
'pydotplus',
146+
'pydot>=%s' % PYDOT_MIN_VERSION,
145147
'packaging',
146148
]
147149

@@ -154,7 +156,7 @@ def get_nipype_gitversion():
154156
]
155157

156158
EXTRA_REQUIRES = {
157-
'doc': ['Sphinx>=1.4', 'matplotlib', 'pydot'],
159+
'doc': ['Sphinx>=1.4', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'],
158160
'tests': TESTS_REQUIRES,
159161
'nipy': ['nitime', 'nilearn', 'dipy', 'nipy', 'matplotlib'],
160162
'profiler': ['psutil'],

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ funcsigs
1212
configparser
1313
pytest>=3.0
1414
mock
15-
pydot
15+
pydotplus
16+
pydot>=1.2.3
1617
packaging

rtd_requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ funcsigs
1111
configparser
1212
pytest>=3.0
1313
mock
14-
pydot
14+
pydotplus
15+
pydot>=1.2.3
1516
psutil
1617
matplotlib
1718
packaging

0 commit comments

Comments
 (0)