From bdeafde695cf7211a8ed8a7c5f0ee1f3da150c83 Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Wed, 18 Dec 2024 19:46:49 -0500 Subject: [PATCH 1/2] chore: Use future-safe acres invocation --- nireports/assembler/data/__init__.py | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nireports/assembler/data/__init__.py b/nireports/assembler/data/__init__.py index 8d5cfbf4..b0cba440 100644 --- a/nireports/assembler/data/__init__.py +++ b/nireports/assembler/data/__init__.py @@ -11,4 +11,4 @@ from acres import Loader -load = Loader(__package__) +load = Loader(__spec__.name) diff --git a/pyproject.toml b/pyproject.toml index a8952048..b132bccc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,11 +16,12 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] license = "Apache-2.0" requires-python = ">=3.9" dependencies = [ - "acres", + "acres >= 0.2", "importlib_resources >= 5.12; python_version < '3.12'", "matplotlib >= 3.5", "nibabel >= 3.0.1", From 8515189c7bcb04c5f2ba7d793fabdf81bb885eb2 Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Wed, 18 Dec 2024 19:47:19 -0500 Subject: [PATCH 2/2] doc: 24.1.0 changelog --- CHANGES.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 691c7fcb..ff60bab7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,18 @@ +24.1.0 (December 18, 2024) +========================== +New feature release in the 24.1.x series. + +This release includes a migration of most if not all reporting +interfaces from NiWorkflows. +This release also supports Python 3.13 and Numpy 2. + +* ENH: Finalize migration of reporting interfaces (#71) +* ENH: Allow figures in session folder (#138) +* RF: Replace nireports.data.Loader with acres.Loader (#142) +* STY: Apply new ruff rules (#139) +* MAINT: Add tox.ini, test minimum dependencies (#141) + + 24.0.3 (November 18, 2024) ========================== Bug-fix release in the 24.0.x series.