Skip to content

Commit 6655626

Browse files
committed
Update pydra minimum, version location
1 parent 2da9e06 commit 6655626

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949
- name: Install Pydra
5050
run: |
5151
pip install ${{ matrix.pydra }}
52-
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
52+
python -c "import pydra.utils as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
5353
- name: Install task package
5454
run: |
5555
pip install ${{ matrix.pip-flags }} ".[dev]"
56-
python -c "import pydra.tasks.$SUBPACKAGE as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
57-
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
56+
python -c "import pydra.compose.$SUBPACKAGE as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
57+
python -c "import pydra.utils as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
5858
5959
test:
6060
runs-on: ubuntu-latest
@@ -83,8 +83,8 @@ jobs:
8383
- name: Install task package
8484
run: |
8585
pip install ".[test]"
86-
python -c "import pydra.tasks.$SUBPACKAGE as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
87-
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
86+
python -c "import pydra.compose.$SUBPACKAGE as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
87+
python -c "import pydra.utils as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
8888
- name: Test with pytest
8989
run: |
9090
pytest -sv --doctest-modules --pyargs pydra.tasks.$SUBPACKAGE \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Tools for importing nipype 1.x interfaces into Pydra"
88
readme = "README.md"
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"pydra >=0.6.2",
11+
"pydra >=1.0a1",
1212
"nipype",
1313
"attrs >=21.3.0",
1414
]

0 commit comments

Comments
 (0)