Skip to content

Commit fe0f88a

Browse files
committed
Merge tag '1.0.6'
1.0.6 (April 15, 2020) Bug-fix release. * FIX: Do not reorient magnitude images (#98)
2 parents 95ad0f0 + 67138a4 commit fe0f88a

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGES.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
1.0.6 (April 15, 2020)
2+
======================
3+
Bug-fix release.
4+
5+
* FIX: Do not reorient magnitude images (#98)
6+
17
1.2.1 (April 01, 2020)
28
======================
39
A patch release to make *SDCFlows* more amicable to downstream software.
410

5-
* MAINT: Migrate from versioneer to setuptools_scm (#97)
6-
* MAINT: Flexibilize dependencies -- nipype, niworkflows, pybids (#95)
11+
* MAINT: Migrate from versioneer to setuptools_scm (#97)
12+
* MAINT: Flexibilize dependencies -- nipype, niworkflows, pybids (#95)
713

814
1.2.0 (February 15, 2020)
915
=========================

docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packaging
88
pydot>=1.2.3
99
pydotplus
1010
sphinx-argparse
11-
sphinx>=2.1.2
11+
sphinx>=2.1.2,<3
1212
sphinx_rtd_theme
1313
sphinxcontrib-apidoc ~= 0.3.0
14-
templateflow
14+
templateflow

sdcflows/workflows/gre.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ def init_magnitude_wf(omp_nthreads, name='magnitude_wf'):
6565
name='outputnode')
6666

6767
# Merge input magnitude images
68-
magmrg = pe.Node(IntraModalMerge(hmc=False), name='magmrg')
68+
# Do not reorient to RAS to preserve the validity of PhaseEncodingDirection
69+
magmrg = pe.Node(IntraModalMerge(hmc=False, to_ras=False), name='magmrg')
6970

7071
# de-gradient the fields ("bias/illumination artifact")
7172
n4_correct = pe.Node(ants.N4BiasFieldCorrection(dimension=3, copy_header=True),

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ include_package_data = True
4545

4646
[options.extras_require]
4747
doc =
48-
sphinx >= 2.1.2
48+
sphinx >= 2.1.2, <3
4949
pydot >= 1.2.3
5050
pydotplus
5151
sphinx_rtd_theme

0 commit comments

Comments
 (0)