We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d97098 commit f777602Copy full SHA for f777602
1 file changed
.github/workflows/ci-cd.yaml
@@ -40,12 +40,11 @@ jobs:
40
- name: Install Pydra
41
run: |
42
pip install ${{ matrix.pydra }}
43
- python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
+ python -c "import pydra as m; print(f'{m.__name__} {getattr(m, '__version__', 'no version')} @ {m.__file__}')"
44
- name: Install task package
45
46
pip install ${{ matrix.pip-flags }} ".[dev]"
47
python -c "import pydra.workers.oar as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
48
49
50
test:
51
runs-on: ubuntu-latest
0 commit comments