Skip to content

Commit

Permalink
chore: Use future-safe acres invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Dec 19, 2024
1 parent d2eb0f8 commit bdeafde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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 bdeafde

Please sign in to comment.