Skip to content

Commit e6edf98

Browse files
authored
Merge pull request #443 from dbic/bf-py3
RF(+BF somewhat): remove no longer needed dependencies etc
2 parents a1a7cb5 + 672d3a3 commit e6edf98

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

heudiconv/info.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@
2323
REQUIRES = [
2424
'nibabel',
2525
'pydicom',
26-
'nipype >=1.0.0; python_version > "3.0"',
27-
'nipype >=1.0.0,!=1.2.1,!=1.2.2; python_version == "2.7"',
28-
'pathlib',
26+
'nipype >=1.0.0',
2927
'dcmstack>=0.8',
3028
'etelemetry',
3129
'filelock>=3.0.12',

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ def main():
1919
# Get version and release info, which is all stored in heudiconv/info.py
2020
info_file = op.join(thispath, 'heudiconv', 'info.py')
2121
with open(info_file) as infofile:
22-
# exec(infofile.read(), globals(), ldict)
23-
# Workaround for python 2.7 prior 2.7.8
24-
eval(compile(infofile.read(), '<string>', 'exec'), globals(), ldict)
22+
exec(infofile.read(), globals(), ldict)
2523

2624

2725
def findsome(subdir, extensions):

0 commit comments

Comments
 (0)