Skip to content

Commit 071523a

Browse files
authored
Merge pull request #3238 from nipy/rel/1.5.1
REL: 1.5.1
2 parents 946519c + a8367b0 commit 071523a

15 files changed

+72
-46
lines changed

.zenodo.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,16 @@
115115
"name": "Hamalainen, Carlo",
116116
"orcid": "0000-0001-7655-3830"
117117
},
118-
{
119-
"affiliation": "Stanford University",
120-
"name": "\u0106iri\u0107 , Rastko",
121-
"orcid": "0000-0001-6347-7939"
122-
},
123118
{
124119
"affiliation": "Institute for Biomedical Engineering, ETH and University of Zurich",
125120
"name": "Christian, Horea",
126121
"orcid": "0000-0001-7037-2449"
127122
},
123+
{
124+
"affiliation": "Stanford University",
125+
"name": "\u0106iri\u0107 , Rastko",
126+
"orcid": "0000-0001-6347-7939"
127+
},
128128
{
129129
"name": "Dubois, Mathieu"
130130
},
@@ -225,6 +225,11 @@
225225
{
226226
"name": "Millman, Jarrod"
227227
},
228+
{
229+
"affiliation": "University College London",
230+
"name": "Mancini, Matteo",
231+
"orcid": "0000-0001-7194-4568"
232+
},
228233
{
229234
"affiliation": "National Institute of Mental Health",
230235
"name": "Nielson, Dylan M.",
@@ -241,11 +246,6 @@
241246
{
242247
"name": "Mordom, David"
243248
},
244-
{
245-
"affiliation": "University College London",
246-
"name": "Mancini, Matteo",
247-
"orcid": "0000-0001-7194-4568"
248-
},
249249
{
250250
"affiliation": "ARAMIS LAB, Brain and Spine Institute (ICM), Paris, France.",
251251
"name": "Guillon, Je\u0301re\u0301my",

doc/changelog/1.X.X-changelog.rst

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1+
1.5.1 (August 16, 2020)
2+
=======================
3+
4+
Bug-fix release in the 1.5.x series.
5+
6+
This release includes small updates to ANTs utilities that lie somewhere
7+
between bug fixes and enhancements.
8+
9+
(`Full changelog <https://github.com/nipy/nipype/milestone/1.5.1?closed=1>`__)
10+
11+
* FIX: Warn for min/max_ver traits when tool version can't be parsed (https://github.com/nipy/nipype/pull/3241)
12+
* FIX: Serialize all interface arguments when exporting workflows (https://github.com/nipy/nipype/pull/3240)
13+
* FIX: Permit identity transforms in list of transforms given to ants.ApplyTransforms (https://github.com/nipy/nipype/pull/3237)
14+
* FIX: ANTs' utilities revision - bug fixes and add more operations to ``ants.ImageMath`` (https://github.com/nipy/nipype/pull/3236)
15+
* DOC: Skip BIDSDataGrabber doctest if pybids is missing (https://github.com/nipy/nipype/pull/3224)
16+
117
1.5.0 (June 03, 2020)
2-
=========================
18+
=====================
319

420
New feature release in the 1.5.x series.
521

doc/interfaces.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Interfaces and Workflows
88
:Release: |version|
99
:Date: |today|
1010

11-
Previous versions: `1.4.2 <http://nipype.readthedocs.io/en/1.4.2/>`_ `1.4.1 <http://nipype.readthedocs.io/en/1.4.1/>`_
11+
Previous versions: `1.5.0 <http://nipype.readthedocs.io/en/1.5.0/>`_ `1.4.2 <http://nipype.readthedocs.io/en/1.4.2/>`_
1212

1313
Workflows
1414
---------

nipype/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# nipype version information
77
# Remove -dev for release
8-
__version__ = "1.5.1-dev"
8+
__version__ = "1.5.1"
99

1010

1111
def get_nipype_gitversion():

nipype/interfaces/ants/registration.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,8 @@ class RegistrationOutputSpec(TraitedSpec):
592592
File(exists=True), desc="List of output transforms for forward registration"
593593
)
594594
reverse_forward_transforms = traits.List(
595-
File(exists=True), desc="List of output transforms for forward registration reversed for antsApplyTransform"
595+
File(exists=True),
596+
desc="List of output transforms for forward registration reversed for antsApplyTransform",
596597
)
597598
reverse_transforms = traits.List(
598599
File(exists=True), desc="List of output transforms for reverse registration"
@@ -601,7 +602,8 @@ class RegistrationOutputSpec(TraitedSpec):
601602
traits.Bool(), desc="List of flags corresponding to the forward transforms"
602603
)
603604
reverse_forward_invert_flags = traits.List(
604-
traits.Bool(), desc="List of flags corresponding to the forward transforms reversed for antsApplyTransform"
605+
traits.Bool(),
606+
desc="List of flags corresponding to the forward transforms reversed for antsApplyTransform",
605607
)
606608
reverse_invert_flags = traits.List(
607609
traits.Bool(), desc="List of flags corresponding to the reverse transforms"

nipype/interfaces/ants/segmentation.py

+1
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,7 @@ def _list_outputs(self):
543543
outputs["bias_image"] = os.path.abspath(self._out_bias_file)
544544
return outputs
545545

546+
546547
class CorticalThicknessInputSpec(ANTSCommandInputSpec):
547548
dimension = traits.Enum(
548549
3, 2, argstr="-d %d", usedefault=True, desc="image dimension (2 or 3)"

nipype/interfaces/ants/utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -138,18 +138,18 @@ class ImageMath(ANTSCommand, CopyHeaderInterface):
138138

139139
def __init__(self, **inputs):
140140
super(ImageMath, self).__init__(**inputs)
141-
if self.inputs.operation in ("PadImage", ):
141+
if self.inputs.operation in ("PadImage",):
142142
self.inputs.copy_header = False
143143

144144
self.inputs.on_trait_change(self._operation_update, "operation")
145145
self.inputs.on_trait_change(self._copyheader_update, "copy_header")
146146

147147
def _operation_update(self):
148-
if self.inputs.operation in ("PadImage", ):
148+
if self.inputs.operation in ("PadImage",):
149149
self.inputs.copy_header = False
150150

151151
def _copyheader_update(self):
152-
if self.inputs.copy_header and self.inputs.operation in ("PadImage", ):
152+
if self.inputs.copy_header and self.inputs.operation in ("PadImage",):
153153
warn("copy_header cannot be updated to True with PadImage as operation.")
154154
self.inputs.copy_header = False
155155

nipype/interfaces/freesurfer/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def looseversion(cls):
7676
vstr = "6.0.0-dev" + githash
7777
elif vinfo[5][0] == "v":
7878
vstr = vinfo[5][1:]
79-
elif len([1 for val in vinfo[3] if val == '.']) == 2:
79+
elif len([1 for val in vinfo[3] if val == "."]) == 2:
8080
"version string: freesurfer-linux-centos7_x86_64-7.1.0-20200511-813297b"
8181
vstr = vinfo[3]
8282
else:

nipype/interfaces/freesurfer/preprocess.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,10 @@ def cmdline(self):
727727
outdir = self._get_outdir()
728728
cmd = []
729729
if not os.path.exists(outdir):
730-
cmdstr = "%s -c \"import os; os.makedirs('%s')\"" % (op.basename(sys.executable), outdir)
730+
cmdstr = "%s -c \"import os; os.makedirs('%s')\"" % (
731+
op.basename(sys.executable),
732+
outdir,
733+
)
731734
cmd.extend([cmdstr])
732735
infofile = os.path.join(outdir, "shortinfo.txt")
733736
if not os.path.exists(infofile):

nipype/interfaces/fsl/preprocess.py

+6-12
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ def _list_outputs(self):
174174
outputs = self.output_spec().get()
175175
outputs["out_file"] = self._gen_outfilename()
176176

177-
basename = os.path.basename(outputs['out_file'])
178-
cwd = os.path.dirname(outputs['out_file'])
179-
kwargs = {'basename': basename, 'cwd': cwd}
177+
basename = os.path.basename(outputs["out_file"])
178+
cwd = os.path.dirname(outputs["out_file"])
179+
kwargs = {"basename": basename, "cwd": cwd}
180180

181181
if (isdefined(self.inputs.mesh) and self.inputs.mesh) or (
182182
isdefined(self.inputs.surfaces) and self.inputs.surfaces
@@ -189,9 +189,7 @@ def _list_outputs(self):
189189
):
190190
outputs["mask_file"] = self._gen_fname(suffix="_mask", **kwargs)
191191
if isdefined(self.inputs.outline) and self.inputs.outline:
192-
outputs["outline_file"] = self._gen_fname(
193-
suffix="_overlay", **kwargs
194-
)
192+
outputs["outline_file"] = self._gen_fname(suffix="_overlay", **kwargs)
195193
if isdefined(self.inputs.surfaces) and self.inputs.surfaces:
196194
outputs["inskull_mask_file"] = self._gen_fname(
197195
suffix="_inskull_mask", **kwargs
@@ -211,13 +209,9 @@ def _list_outputs(self):
211209
outputs["outskin_mesh_file"] = self._gen_fname(
212210
suffix="_outskin_mesh", **kwargs
213211
)
214-
outputs["skull_mask_file"] = self._gen_fname(
215-
suffix="_skull_mask", **kwargs
216-
)
212+
outputs["skull_mask_file"] = self._gen_fname(suffix="_skull_mask", **kwargs)
217213
if isdefined(self.inputs.skull) and self.inputs.skull:
218-
outputs["skull_file"] = self._gen_fname(
219-
suffix="_skull", **kwargs
220-
)
214+
outputs["skull_file"] = self._gen_fname(suffix="_skull", **kwargs)
221215
if isdefined(self.inputs.no_output) and self.inputs.no_output:
222216
outputs["out_file"] = Undefined
223217
return outputs

nipype/interfaces/niftyreg/base.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
import os
2020

2121
from ... import logging
22-
from ..base import (CommandLine, CommandLineInputSpec, traits, Undefined,
23-
PackageInfo)
22+
from ..base import CommandLine, CommandLineInputSpec, traits, Undefined, PackageInfo
2423
from ...utils.filemanip import split_filename
2524

2625
iflogger = logging.getLogger("nipype.interface")
@@ -31,7 +30,7 @@ def get_custom_path(command, env_dir="NIFTYREGDIR"):
3130

3231

3332
class Info(PackageInfo):
34-
version_cmd = get_custom_path('reg_aladin') + ' --version'
33+
version_cmd = get_custom_path("reg_aladin") + " --version"
3534

3635
@staticmethod
3736
def parse_version(raw_info):

nipype/interfaces/spm/preprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1884,7 +1884,7 @@ class MultiChannelNewSegmentInputSpec(SPMCommandInputSpec):
18841884
- FWHM of Gaussian smoothness of bias
18851885
- which maps to save (Field, Corrected) - a tuple of two boolean values""",
18861886
field="channel",
1887-
)
1887+
),
18881888
),
18891889
desc="""A list of tuples (one per each channel) with the following fields:
18901890
- a list of channel files (only 1rst channel files will be segmented)

nipype/pipeline/plugins/tests/test_legacymultiproc_nondaemon.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ def run_multiproc_nondaemon_with_flag(nondaemon_flag):
134134
return result
135135

136136

137-
@pytest.mark.skipif(sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8")
137+
@pytest.mark.skipif(
138+
sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8"
139+
)
138140
def test_run_multiproc_nondaemon_false():
139141
"""
140142
This is the entry point for the test. Two times a pipe of several
@@ -153,7 +155,9 @@ def test_run_multiproc_nondaemon_false():
153155
assert shouldHaveFailed
154156

155157

156-
@pytest.mark.skipif(sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8")
158+
@pytest.mark.skipif(
159+
sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8"
160+
)
157161
def test_run_multiproc_nondaemon_true():
158162
# with nondaemon_flag = True, the execution should succeed
159163
result = run_multiproc_nondaemon_with_flag(True)

nipype/pipeline/plugins/tests/test_multiproc.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def _list_outputs(self):
3434
return outputs
3535

3636

37-
@pytest.mark.skipif(sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8")
37+
@pytest.mark.skipif(
38+
sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8"
39+
)
3840
def test_run_multiproc(tmpdir):
3941
tmpdir.chdir()
4042

@@ -116,7 +118,9 @@ def test_no_more_threads_than_specified(tmpdir):
116118
pipe.run(plugin="MultiProc", plugin_args={"n_procs": max_threads})
117119

118120

119-
@pytest.mark.skipif(sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8")
121+
@pytest.mark.skipif(
122+
sys.version_info >= (3, 8), reason="multiprocessing issues in Python 3.8"
123+
)
120124
def test_hold_job_until_procs_available(tmpdir):
121125
tmpdir.chdir()
122126

nipype/utils/tests/test_filemanip.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -655,12 +655,15 @@ def test_pickle(tmp_path, save_versioning):
655655
assert outobj == testobj
656656

657657

658-
@pytest.mark.parametrize("items,expected", [
659-
('', ' \n\n'),
660-
('A string', ' A string\n\n'),
661-
(['A list', 'Of strings'], ' A list\n Of strings\n\n'),
662-
(None, TypeError),
663-
])
658+
@pytest.mark.parametrize(
659+
"items,expected",
660+
[
661+
("", " \n\n"),
662+
("A string", " A string\n\n"),
663+
(["A list", "Of strings"], " A list\n Of strings\n\n"),
664+
(None, TypeError),
665+
],
666+
)
664667
def test_write_rst_list(tmp_path, items, expected):
665668
if items is not None:
666669
assert write_rst_list(items) == expected

0 commit comments

Comments
 (0)