Skip to content

Commit 81231c8

Browse files
authored
Merge pull request #2980 from nipy/fix/deps-lxml-py34
FIX: Python 3.4 is not compatible with the recent release of lxml-4.4.0
2 parents 6f2f94f + 39522fc commit 81231c8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

nipype/info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ def get_nipype_gitversion():
140140
'funcsigs',
141141
'future>=%s' % FUTURE_MIN_VERSION,
142142
'futures; python_version == "2.7"',
143+
'lxml<4.4.0; python_version == "3.4"',
143144
'networkx>=%s ; python_version >= "3.0"' % NETWORKX_MIN_VERSION,
144145
'networkx>=%s,<=%s ; python_version < "3.0"' % (NETWORKX_MIN_VERSION, NETWORKX_MAX_VERSION_27),
145146
'nibabel>=%s' % NIBABEL_MIN_VERSION,

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ numpy>=1.9.0
88
packaging
99
pathlib2
1010
prov>=1.5.2
11+
lxml<4.4.0 ; python_version == "3.4"
1112
neurdflib
1213
pydot>=1.2.3
1314
pydotplus

0 commit comments

Comments
 (0)