Skip to content

Commit 4bc9eee

Browse files
committed
Merge remote-tracking branch 'nipy/master' into multi-echo
2 parents c227177 + fd6d413 commit 4bc9eee

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
language: python
33
python:
44
- 2.7
5-
- 3.4
65
- 3.5
76
- 3.6
7+
- 3.7
88

99
cache:
1010
- apt

heudiconv/cli/run.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def main(argv=None):
130130

131131
def get_parser():
132132
docstr = ("""Example:
133-
heudiconv -d rawdata/{subject} -o . -f heuristic.py -s s1 s2 s3""")
133+
heudiconv -d 'rawdata/{subject}' -o . -f heuristic.py -s s1 s2 s3""")
134134
parser = ArgumentParser(description=docstr)
135135
parser.add_argument('--version', action='version', version=__version__)
136136
group = parser.add_mutually_exclusive_group()
@@ -139,7 +139,9 @@ def get_parser():
139139
'subject id {subject} and session {session}. Tarballs '
140140
'(can be compressed) are supported in addition to '
141141
'directory. All matching tarballs for a subject are '
142-
'extracted and their content processed in a single pass')
142+
'extracted and their content processed in a single '
143+
'pass. Note that you might need to surround the value '
144+
'with quotes to avoid {...} being considered by shell')
143145
group.add_argument('--files', nargs='*',
144146
help='Files (tarballs, dicoms) or directories '
145147
'containing files to process. Cannot be provided if '

heudiconv/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
REQUIRES = [
1212
'nibabel',
1313
'pydicom',
14-
'nipype>=0.12.0',
14+
'nipype>=1.0.0',
1515
'pathlib',
1616
'dcmstack>=0.7',
1717
]

0 commit comments

Comments
 (0)