Skip to content

REL: 2.5.1 #808

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Sep 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
{
"name": "Moloney, Brendan"
},
{
"affiliation": "MIT",
"name": "Goncalves, Mathias",
"orcid": "0000-0002-7252-7771"
},
{
"name": "Burns, Christopher"
},
Expand Down Expand Up @@ -130,11 +135,6 @@
{
"name": "Baker, Eric M."
},
{
"affiliation": "MIT",
"name": "Goncalves, Mathias",
"orcid": "0000-0002-7252-7771"
},
{
"name": "Hayashi, Soichi"
},
Expand Down Expand Up @@ -244,6 +244,11 @@
"name": "P\u00e9rez-Garc\u00eda, Fernando",
"orcid": "0000-0001-9090-3024"
},
{
"affiliation": "Center for Magnetic Resonance Research, University of Minnesota",
"name": "Braun, Henry",
"orcid": "0000-0001-7003-9822"
},
{
"name": "Solovey, Igor"
},
Expand Down
27 changes: 27 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,33 @@ Eric Larson (EL), Demian Wassermann, and Stephan Gerhard.

References like "pr/298" refer to github pull request numbers.

2.5.1 (Monday 23 September 2019)
================================

Enhancements
------------
* Ignore endianness in ``nib-diff`` if values match (pr/799) (YOH, reviewed
by CM)

Bug fixes
---------
* Correctly handle Philips DICOMs w/ derived volume (pr/795) (Mathias
Goncalves, reviewed by CM)
* Raise CSA tag limit to 1000, parametrize for future relaxing (pr/798,
backported to 2.5.x in pr/800) (Henry Braun, reviewed by CM, MB)
* Coerce data types to match NIfTI intent codes when writing GIFTI data
arrays (pr/806) (CM, reported by Tom Holroyd)

Maintenance
-----------
* Require h5py 2.10 for Windows + Python < 3.6 to resolve unexpected dtypes
in Minc2 data (pr/804) (CM, reviewed by YOH)

API changes and deprecations
----------------------------
* Deprecate ``nicom.dicomwrappers.Wrapper.get_affine()`` in favor of ``affine``
property; final removal in nibabel 4.0 (pr/796) (YOH, reviewed by CM)

2.5.0 (Sunday 4 August 2019)
============================

Expand Down
1 change: 1 addition & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ contributed code and discussion (in rough order of appearance):
* Matt Cieslak
* Egor Pafilov
* Jath Palasubramaniam
* Henry Braun

License reprise
===============
Expand Down
4 changes: 2 additions & 2 deletions nibabel/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
_version_major = 2
_version_minor = 5
_version_micro = 1
_version_extra = 'dev'
# _version_extra = ''
# _version_extra = 'dev'
_version_extra = ''

# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
__version__ = "%s.%s.%s%s" % (_version_major,
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ install_requires =
numpy >=1.8
six >=1.3
bz2file ; python_version < "3.0"
tests_require = nose
tests_require =
nose >=0.11
test_suite = nose.collector
zip_safe = False
packages = find:
Expand All @@ -46,7 +47,7 @@ dicom =
doc =
sphinx >=0.3
test =
nose >=0.10.1
nose >=0.11
all =
%(dicom)s
%(doc)s
Expand Down