File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
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 \
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ description = "Tools for importing nipype 1.x interfaces into Pydra"
88readme = " README.md"
99requires-python = " >=3.11"
1010dependencies = [
11- " pydra >=0.6.2 " ,
11+ " pydra >=1.0a1 " ,
1212 " nipype" ,
1313 " attrs >=21.3.0" ,
1414]
You can’t perform that action at this time.
0 commit comments