From c01223ae6ee04d0bb34fc396fb71b485ac8365f7 Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Tue, 17 Dec 2024 12:45:34 -0500 Subject: [PATCH] REL: 1.9.2 --- doc/changelog/1.X.X-changelog.rst | 10 ++++++++++ nipype/info.py | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/changelog/1.X.X-changelog.rst b/doc/changelog/1.X.X-changelog.rst index 79b583c871..a51ef7f13e 100644 --- a/doc/changelog/1.X.X-changelog.rst +++ b/doc/changelog/1.X.X-changelog.rst @@ -1,3 +1,13 @@ +1.9.2 (December 17, 2024) +========================= + +Bug fix release in the 1.9.x series. + + * FIX: Missed np.savetxt bstring (https://github.com/nipy/nipype/pull/3704) + * MAINT: Bump astral-sh/setup-uv from 3 to 4 (https://github.com/nipy/nipype/pull/3702) + * MAINT: Bump codecov/codecov-action from 4 to 5 (https://github.com/nipy/nipype/pull/3703) + + 1.9.1 (November 19, 2024) ========================= diff --git a/nipype/info.py b/nipype/info.py index 99b8c74919..3fd328e995 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -5,7 +5,7 @@ # nipype version information # Remove .dev0 for release -__version__ = "1.9.2.dev0" +__version__ = "1.9.2" def get_nipype_gitversion(): @@ -58,6 +58,7 @@ def get_nipype_gitversion(): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering", ] PYTHON_REQUIRES = ">= 3.9"