diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 2ba2904..c4b623b 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -37,11 +37,6 @@ jobs: - name: Install task package run: | pip install ".[test]" - - name: Install development Pydra and fileformats-medimage - run: | - pip uninstall pydra fileformats-medimage -y - pip install --no-deps git+https://github.com/nipype/pydra.git@develop - pip install --no-deps git+https://github.com/arcanaframework/fileformats-medimage.git@updated-pydra-imports - name: Test with pytest run: | pytest -sv --cov pydra.tasks.$SUBPACKAGE --cov-report xml @@ -51,9 +46,6 @@ jobs: deploy: needs: [test] runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.9] steps: - uses: actions/checkout@v3 with: diff --git a/.gitignore b/.gitignore index f363079..2beefad 100644 --- a/.gitignore +++ b/.gitignore @@ -138,3 +138,6 @@ dmypy.json upload-token.txt .DS_Store + +# Created by hatch-vcs +/pydra/tasks/dcm2niix/_version.py diff --git a/pydra/tasks/dcm2niix/_version.py b/pydra/tasks/dcm2niix/_version.py deleted file mode 100644 index 19d066b..0000000 --- a/pydra/tasks/dcm2niix/_version.py +++ /dev/null @@ -1,17 +0,0 @@ -# file generated by setuptools_scm -# don't change, don't track in version control -TYPE_CHECKING = False -if TYPE_CHECKING: - from typing import Tuple, Union - - VERSION_TUPLE = Tuple[Union[int, str], ...] -else: - VERSION_TUPLE = object - -version: str -__version__: str -__version_tuple__: VERSION_TUPLE -version_tuple: VERSION_TUPLE - -__version__ = version = "1.2.2.dev1+ge5de395.d20250104" -__version_tuple__ = version_tuple = (1, 2, 2, "dev1", "ge5de395.d20250104") diff --git a/pyproject.toml b/pyproject.toml index 117832e..1185544 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.24"] +dependencies = ["fileformats>=0.15", "fileformats-medimage >=0.10a", "pydra >=1.0a"] 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" }]