Skip to content

Commit a616f7f

Browse files
authored
Merge pull request #808 from nipy/rel/2.5.1
REL: 2.5.1
2 parents b5ff2de + 248b946 commit a616f7f

File tree

5 files changed

+43
-9
lines changed

5 files changed

+43
-9
lines changed

.zenodo.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@
8787
{
8888
"name": "Moloney, Brendan"
8989
},
90+
{
91+
"affiliation": "MIT",
92+
"name": "Goncalves, Mathias",
93+
"orcid": "0000-0002-7252-7771"
94+
},
9095
{
9196
"name": "Burns, Christopher"
9297
},
@@ -130,11 +135,6 @@
130135
{
131136
"name": "Baker, Eric M."
132137
},
133-
{
134-
"affiliation": "MIT",
135-
"name": "Goncalves, Mathias",
136-
"orcid": "0000-0002-7252-7771"
137-
},
138138
{
139139
"name": "Hayashi, Soichi"
140140
},
@@ -244,6 +244,11 @@
244244
"name": "P\u00e9rez-Garc\u00eda, Fernando",
245245
"orcid": "0000-0001-9090-3024"
246246
},
247+
{
248+
"affiliation": "Center for Magnetic Resonance Research, University of Minnesota",
249+
"name": "Braun, Henry",
250+
"orcid": "0000-0001-7003-9822"
251+
},
247252
{
248253
"name": "Solovey, Igor"
249254
},

Changelog

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,33 @@ Eric Larson (EL), Demian Wassermann, and Stephan Gerhard.
2525

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

28+
2.5.1 (Monday 23 September 2019)
29+
================================
30+
31+
Enhancements
32+
------------
33+
* Ignore endianness in ``nib-diff`` if values match (pr/799) (YOH, reviewed
34+
by CM)
35+
36+
Bug fixes
37+
---------
38+
* Correctly handle Philips DICOMs w/ derived volume (pr/795) (Mathias
39+
Goncalves, reviewed by CM)
40+
* Raise CSA tag limit to 1000, parametrize for future relaxing (pr/798,
41+
backported to 2.5.x in pr/800) (Henry Braun, reviewed by CM, MB)
42+
* Coerce data types to match NIfTI intent codes when writing GIFTI data
43+
arrays (pr/806) (CM, reported by Tom Holroyd)
44+
45+
Maintenance
46+
-----------
47+
* Require h5py 2.10 for Windows + Python < 3.6 to resolve unexpected dtypes
48+
in Minc2 data (pr/804) (CM, reviewed by YOH)
49+
50+
API changes and deprecations
51+
----------------------------
52+
* Deprecate ``nicom.dicomwrappers.Wrapper.get_affine()`` in favor of ``affine``
53+
property; final removal in nibabel 4.0 (pr/796) (YOH, reviewed by CM)
54+
2855
2.5.0 (Sunday 4 August 2019)
2956
============================
3057

doc/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ contributed code and discussion (in rough order of appearance):
9898
* Matt Cieslak
9999
* Egor Pafilov
100100
* Jath Palasubramaniam
101+
* Henry Braun
101102

102103
License reprise
103104
===============

nibabel/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
_version_major = 2
2020
_version_minor = 5
2121
_version_micro = 1
22-
_version_extra = 'dev'
23-
# _version_extra = ''
22+
# _version_extra = 'dev'
23+
_version_extra = ''
2424

2525
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
2626
__version__ = "%s.%s.%s%s" % (_version_major,

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ install_requires =
3434
numpy >=1.8
3535
six >=1.3
3636
bz2file ; python_version < "3.0"
37-
tests_require = nose
37+
tests_require =
38+
nose >=0.11
3839
test_suite = nose.collector
3940
zip_safe = False
4041
packages = find:
@@ -46,7 +47,7 @@ dicom =
4647
doc =
4748
sphinx >=0.3
4849
test =
49-
nose >=0.10.1
50+
nose >=0.11
5051
all =
5152
%(dicom)s
5253
%(doc)s

0 commit comments

Comments
 (0)