Skip to content

Commit b66a47e

Browse files
committed
REL: 2.5.2
1 parent 5d31477 commit b66a47e

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

Changelog

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,18 @@ Eric Larson (EL), Demian Wassermann, and Stephan Gerhard.
2525

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

28-
2.5.2 (To Be Determined)
29-
========================
28+
2.5.2 (Wednesday 8 April 2020)
29+
==============================
30+
31+
Bug-fix release in the 2.5.x series. This is an extended-support series,
32+
providing bug fixes for Python 2.7 and 3.4.
3033

31-
This and all future releases in 2.5.x series will be incompatible with Python
32-
3.9.
34+
This and all future releases in the 2.5.x series will be incompatible with
35+
Python 3.9. The last compatible series of numpy and scipy are 1.16.x and
36+
1.2.x, respectively.
37+
38+
If you are able to upgrade to Python 3, it is recommended to upgrade to
39+
NiBabel 3.
3340

3441
Bug fixes
3542
---------
@@ -38,6 +45,11 @@ Bug fixes
3845
* Re-import externals/netcdf.py from scipy to resolve numpy deprecation
3946
(pr/821) (CM)
4047

48+
Maintenance
49+
-----------
50+
* Set maximum numpy to 1.16.x, maximum scipy to 1.2.x (pr/901) (CM)
51+
52+
4153
2.5.1 (Monday 23 September 2019)
4254
================================
4355

@@ -304,7 +316,7 @@ Maintenance
304316
* Use SSH address to use key-based auth (pr/587) (CM, reviewed by MB)
305317
* Fix doctests for numpy 1.14 array printing (pr/591) (MB, reviewed by CM)
306318
* Refactor for pydicom 1.0 API changes (pr/599) (MB, reviewed by CM)
307-
* Increase test coverage, remove unreachable code (pr/602) (CM, reviewed by
319+
* Increase test coverage, remove unreachable code (pr/602) (CM, reviewed by
308320
Yaroslav Halchenko, MB)
309321
* Move ``nib-ls`` and other programs to a new cmdline module (pr/601, pr/615)
310322
(Chris Cheng, reviewed by MB, Yaroslav Halchenko)

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999

100100
# General information about the project.
101101
project = u'NiBabel'
102-
copyright = u'2006-2019, %(maintainer)s <%(author_email)s>' % metadata
102+
copyright = u'2006-2020, %(maintainer)s <%(author_email)s>' % metadata
103103

104104
# The version info for the project you're documenting, acts as replacement for
105105
# |version| and |release|, also used in various other places throughout the

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 = 2
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,

0 commit comments

Comments
 (0)