Skip to content

Commit

Permalink
Merge tag '24.1.0'
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
effigies committed Dec 19, 2024
2 parents d2eb0f8 + 8515189 commit d923a42
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion nireports/assembler/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@

from acres import Loader

load = Loader(__package__)
load = Loader(__spec__.name)
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d923a42

Please sign in to comment.