Skip to content

Commit

Permalink
Merge tag '1.0.6'
Browse files Browse the repository at this point in the history
1.0.6 (April 15, 2020)

Bug-fix release.

* FIX: Do not reorient magnitude images (#98)
  • Loading branch information
effigies committed Apr 16, 2020
2 parents 95ad0f0 + 67138a4 commit fe0f88a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
10 changes: 8 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
1.0.6 (April 15, 2020)
======================
Bug-fix release.

* FIX: Do not reorient magnitude images (#98)

1.2.1 (April 01, 2020)
======================
A patch release to make *SDCFlows* more amicable to downstream software.

* MAINT: Migrate from versioneer to setuptools_scm (#97)
* MAINT: Flexibilize dependencies -- nipype, niworkflows, pybids (#95)
* MAINT: Migrate from versioneer to setuptools_scm (#97)
* MAINT: Flexibilize dependencies -- nipype, niworkflows, pybids (#95)

1.2.0 (February 15, 2020)
=========================
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ packaging
pydot>=1.2.3
pydotplus
sphinx-argparse
sphinx>=2.1.2
sphinx>=2.1.2,<3
sphinx_rtd_theme
sphinxcontrib-apidoc ~= 0.3.0
templateflow
templateflow
3 changes: 2 additions & 1 deletion sdcflows/workflows/gre.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def init_magnitude_wf(omp_nthreads, name='magnitude_wf'):
name='outputnode')

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

# de-gradient the fields ("bias/illumination artifact")
n4_correct = pe.Node(ants.N4BiasFieldCorrection(dimension=3, copy_header=True),
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ include_package_data = True

[options.extras_require]
doc =
sphinx >= 2.1.2
sphinx >= 2.1.2, <3
pydot >= 1.2.3
pydotplus
sphinx_rtd_theme
Expand Down

0 comments on commit fe0f88a

Please sign in to comment.