Skip to content

Commit e66cefd

Browse files
committed
[skip ci] Merge branch 'master' of https://github.com/poldracklab/fmriprep into code_server
2 parents 3d81d31 + 3260f82 commit e66cefd

File tree

5 files changed

+29
-16
lines changed

5 files changed

+29
-16
lines changed

.github/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Number of days of inactivity before an issue becomes stale
2-
daysUntilStale: 300
2+
daysUntilStale: 900
33
# Number of days of inactivity before a stale issue is closed
4-
daysUntilClose: 20
4+
daysUntilClose: 200
55
# Issues with these labels will never be considered stale
66
exemptLabels:
77
- pinned

.zenodo.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,11 @@
136136
"affiliation": "Department of Psychology, Stanford University",
137137
"orcid": "0000-0002-0533-6035"
138138
},
139+
{
140+
"name": "Tooley, Ursula A.",
141+
"affiliation": "Department of Neuroscience, University of Pennsylvania, PA, USA",
142+
"orcid": "0000-0001-6377-3885"
143+
},
139144
{
140145
"name": "Poldrack, Russell A.",
141146
"affiliation": "Department of Psychology, Stanford University",

CHANGES.rst

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,21 @@ with M. Cieslak, A. Adebimpe, and T. Satterthwaite.
1212
Some other bugfixes, improvements to the documentation and minor features are also
1313
shipped with the new release.
1414

15-
16-
* ENH: Add TaskName metadata to BOLD outputs (#1714) @effigies
17-
* REF: Separate SDCflows from fMRIPrep (#1670) @oesteban
18-
* MAINT: Remove old ``extensions`` entity selector for PyBIDS queries (#1707) @oesteban
1915
* FIX: Postpone ``pandoc`` conversion of boilerplate after workflow has fully run (#1710) @oesteban
20-
* DOC: adding recon-all issue to faq (#1622) @franklin-feingold
2116
* FIX: Use MNI152NLin2009cAsym for SDC if no templates are specified (#1703) @effigies
2217
* FIX: Correct BOLD-T1w registration description if DoF != 9 (#1701) @effigies
23-
* MAINT: Use PyBIDS 0.9.x via niworkflows/smriprep PRs (#1695) @effigies
18+
* ENH: Make fmriprep print defaults for arguments with help (#1735) @gdevenyi
19+
* ENH: Add check for updates and check whether version has been flagged. (#1715) @oesteban
20+
* ENH: Add TaskName metadata to BOLD outputs (#1714) @effigies
21+
* REF: Separate SDCflows from fMRIPrep (#1670) @oesteban
22+
* DOC: Update .zenodo.json (#1732) @utooley
23+
* DOC: Add link to documentation in help of ``--output-spaces`` argument (#1722) @oesteban
24+
* DOC: adding recon-all issue to faq (#1622) @franklin-feingold
2425
* DOC: Add copyright waiver to boilerplate and reviewer note to docs (#1691) @effigies
26+
* MAINT: Bump pybids and nipype dependencies (#1744) @effigies
27+
* MAINT: Move regression tests of EPI masks over to Niworkflows (#1716) @oesteban
28+
* MAINT: Remove old ``extensions`` entity selector for PyBIDS queries (#1707) @oesteban
29+
* MAINT: Use PyBIDS 0.9.x via niworkflows/smriprep PRs (#1695) @effigies
2530

2631
1.4.1 (July 9, 2019)
2732
====================

fmriprep/cli/run.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import uuid
1515
import warnings
1616
from argparse import ArgumentParser
17-
from argparse import RawTextHelpFormatter
17+
from argparse import ArgumentDefaultsHelpFormatter
1818
from multiprocessing import cpu_count
1919
from time import strftime
2020

@@ -46,9 +46,11 @@ def get_parser():
4646
from .version import check_latest, is_flagged
4747

4848
verstr = 'fmriprep v{}'.format(__version__)
49+
currentv = Version(__version__)
50+
is_release = not any((currentv.is_devrelease, currentv.is_prerelease, currentv.is_postrelease))
4951

5052
parser = ArgumentParser(description='FMRIPREP: fMRI PREProcessing workflows',
51-
formatter_class=RawTextHelpFormatter)
53+
formatter_class=ArgumentDefaultsHelpFormatter)
5254

5355
# Arguments as specified by BIDS-Apps
5456
# required, positional arguments
@@ -140,8 +142,11 @@ def get_parser():
140142
Non-standard spaces (valid keywords: %s) imply specific orientations and sampling \
141143
grids. \
142144
Important to note, the ``res-*`` modifier does not define the resolution used for \
143-
the spatial normalization """ % (', '.join('"%s"' % s for s in templates()),
144-
', '.join(NONSTANDARD_REFERENCES)))
145+
the spatial normalization.
146+
For further details, please check out \
147+
https://fmriprep.readthedocs.io/en/%s/spaces.html""" % (
148+
', '.join('"%s"' % s for s in templates()), ', '.join(NONSTANDARD_REFERENCES),
149+
currentv.base_version if is_release else 'latest'))
145150

146151
g_conf.add_argument(
147152
'--output-space', required=False, action='store', type=str, nargs='+',
@@ -276,9 +281,7 @@ def get_parser():
276281
g_other.add_argument('--sloppy', action='store_true', default=False,
277282
help='Use low-quality tools for speed - TESTING ONLY')
278283

279-
currentv = Version(__version__)
280284
latest = check_latest()
281-
282285
if latest is not None and currentv < latest:
283286
print("""\
284287
You are using fMRIPrep-%s, and a newer version of fMRIPrep is available: %s.

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ install_requires =
2626
nibabel >=2.2.1
2727
indexed_gzip >=0.8.8
2828
nilearn !=0.5.0, !=0.5.1
29-
nipype >=1.2.0
29+
nipype >=1.2.1
3030
psutil >=5.4
31-
pybids ~= 0.9.2
31+
pybids ~= 0.9.3
3232
tedana >=0.0.5
3333
nitime
3434
numpy

0 commit comments

Comments
 (0)