File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -49,12 +49,12 @@ jobs:
49
49
- name : Install Pydra
50
50
run : |
51
51
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__}')"
53
53
- name : Install task package
54
54
run : |
55
55
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__}')"
58
58
59
59
test :
60
60
runs-on : ubuntu-latest
83
83
- name : Install task package
84
84
run : |
85
85
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__}')"
88
88
- name : Test with pytest
89
89
run : |
90
90
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"
8
8
readme = " README.md"
9
9
requires-python = " >=3.11"
10
10
dependencies = [
11
- " pydra >=0.6.2 " ,
11
+ " pydra >=1.0a1 " ,
12
12
" nipype" ,
13
13
" attrs >=21.3.0" ,
14
14
]
You can’t perform that action at this time.
0 commit comments