diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6c0ed16..a490c35 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,13 +2,13 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-added-large-files - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 25.1.0 hooks: - id: black diff --git a/pydra/tasks/dcm2niix/__init__.py b/pydra/tasks/dcm2niix/__init__.py index 8f1d6ae..eb5a9d6 100644 --- a/pydra/tasks/dcm2niix/__init__.py +++ b/pydra/tasks/dcm2niix/__init__.py @@ -7,5 +7,10 @@ """ from ._version import __version__ - from .utils import Dcm2Niix + + +__all__ = [ + "__version__", + "Dcm2Niix", +] diff --git a/pyproject.toml b/pyproject.toml index 8ce7ce2..117832e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "pydra-dcm2niix" description = "pydra-dcm2niix contains Pydra task specifications for the Dcm2niix converter" readme = "README.md" requires-python = ">=3.11" -dependencies = ["fileformats>=0.15a2", "pydra >=0.25"] +dependencies = ["fileformats>=0.15a2", "pydra >=0.24"] license = { file = "LICENSE" } authors = [{ name = "Thomas G. Close", email = "tom.g.close@gmail.com" }] maintainers = [{ name = "Thomas G. Close", email = "tom.g.close@gmail.com" }]