Skip to content

Commit be0c9dc

Browse files
effigiesmgxd
andauthored
FIX: Relax tolerance for different affines when concatenating blips (#265)
* MNT: Pin niworkflows >=1.4.8, < 1.6 Skip 1.5.x versions before inclusion of the new parameter * FIX: Relax tolerance for different affines when concatenating blips * Update sdcflows/workflows/fit/pepolar.py Co-authored-by: Mathias Goncalves <[email protected]> Co-authored-by: Mathias Goncalves <[email protected]>
1 parent a86c6e0 commit be0c9dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdcflows/workflows/fit/pepolar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def init_topup_wf(
121121

122122
flatten = pe.Node(Flatten(), name="flatten")
123123
regrid = pe.Node(UniformGrid(reference=grid_reference), name="regrid")
124-
concat_blips = pe.Node(MergeSeries(), name="concat_blips")
124+
concat_blips = pe.Node(MergeSeries(affine_tolerance=1e-4), name="concat_blips")
125125
readout_time = pe.MapNode(
126126
GetReadoutTime(),
127127
name="readout_time",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ install_requires =
3131
attrs >= 20.1.0
3232
nibabel >=3.0.1
3333
nipype >=1.5.1,<2.0
34-
niworkflows >= 1.4.2, < 1.6
34+
niworkflows >= 1.4.8, < 1.6, !=1.5.0, !=1.5.1, !=1.5.2, !=1.5.3
3535
nitransforms ~= 21.0.0
3636
numpy
3737
pybids >= 0.12.1

0 commit comments

Comments
 (0)