Skip to content

Commit fe0f2c8

Browse files
authored
Merge pull request #375 from effigies/fix/traiterror
FIX: Blacklist nipype 1.2.1, 1.2.2 in Python 2.7 to avoid TraitError
2 parents 5cfb6f2 + 0d39942 commit fe0f2c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

heudiconv/info.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
REQUIRES = [
1212
'nibabel',
1313
'pydicom',
14-
'nipype>=1.0.0',
14+
'nipype >=1.0.0; python_version > "3.0"',
15+
'nipype >=1.0.0,!=1.2.1,!=1.2.2; python_version == "2.7"',
1516
'pathlib',
1617
'dcmstack>=0.7',
1718
]

0 commit comments

Comments
 (0)