Skip to content

Commit 7f0ef16

Browse files
committed
Merge remote-tracking branch 'upstream/master' into enh/revising-popen-calls
2 parents 309c6ea + 1b05497 commit 7f0ef16

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.circleci/config.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,17 +137,13 @@ jobs:
137137
docker save nipype/nipype:base \
138138
nipype/nipype:latest \
139139
nipype/nipype:py36 \
140-
nipype/nipype:py27 | gzip -6 > /tmp/docker/nipype-base-latest-py36-py27.tar.gz
140+
nipype/nipype:py27 | gzip -1 > /tmp/docker/nipype-base-latest-py36-py27.tar.gz
141141
du -h /tmp/docker/nipype-base-latest-py36-py27.tar.gz
142-
else
143-
# Workaround for `persist_to_workspace` to succeed when we are
144-
# not deploying Docker images.
145-
touch /tmp/docker/nipype-base-latest-py36-py27.tar.gz
146142
fi
147143
- persist_to_workspace:
148144
root: /tmp
149145
paths:
150-
- docker/nipype-base-latest-py36-py27.tar.gz
146+
- docker/*
151147

152148

153149
deploy:

nipype/interfaces/afni/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3490,7 +3490,7 @@ class Qwarp(AFNICommand):
34903490
>>> qwarp3.inputs.base_file = 'mni.nii'
34913491
>>> qwarp3.inputs.allineate = True
34923492
>>> qwarp3.inputs.allineate_opts = '-cose lpa -verb'
3493-
>>> qwarp3.cmdline # doctest: +ALLOW_UNICODE
3493+
>>> qwarp3.cmdline
34943494
"3dQwarp -allineate -allineate_opts '-cose lpa -verb' -base mni.nii -source structural.nii -prefix structural_QW"
34953495
>>> res3 = qwarp3.run() # doctest: +SKIP """
34963496
_cmd = '3dQwarp'

nipype/interfaces/afni/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ class NwarpCat(AFNICommand):
16741674
>>> nwarpcat = afni.NwarpCat()
16751675
>>> nwarpcat.inputs.in_files = ['Q25_warp+tlrc.HEAD', ('IDENT', 'structural.nii')]
16761676
>>> nwarpcat.inputs.out_file = 'Fred_total_WARP'
1677-
>>> nwarpcat.cmdline # doctest: +ALLOW_UNICODE
1677+
>>> nwarpcat.cmdline
16781678
"3dNwarpCat -prefix Fred_total_WARP Q25_warp+tlrc.HEAD 'IDENT(structural.nii)'"
16791679
>>> res = nwarpcat.run() # doctest: +SKIP
16801680

nipype/interfaces/ants/resampling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class WarpTimeSeriesImageMultiTransform(ANTSCommand):
7575
>>> wtsimt.inputs.reference_image = 'ants_deformed.nii.gz'
7676
>>> wtsimt.inputs.transformation_series = ['ants_Warp.nii.gz','ants_Affine.txt']
7777
>>> wtsimt.inputs.invert_affine = [1] # # this will invert the 1st Affine file: ants_Affine.txt
78-
>>> wtsimt.cmdline # doctest: +ALLOW_UNICODE
78+
>>> wtsimt.cmdline
7979
'WarpTimeSeriesImageMultiTransform 4 resting.nii resting_wtsimt.nii -R ants_deformed.nii.gz ants_Warp.nii.gz \
8080
-i ants_Affine.txt'
8181
"""

0 commit comments

Comments
 (0)