We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f777602 commit f3cc6f4Copy full SHA for f3cc6f4
.github/workflows/ci-cd.yaml
@@ -40,7 +40,7 @@ jobs:
40
- name: Install Pydra
41
run: |
42
pip install ${{ matrix.pydra }}
43
- python -c "import pydra as m; print(f'{m.__name__} {getattr(m, '__version__', 'no 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]"
@@ -50,7 +50,7 @@ jobs:
50
runs-on: ubuntu-latest
51
strategy:
52
matrix:
53
- python-version: [3.7, 3.8, 3.9, '3.10']
+ python-version: [3.8, 3.9, '3.10']
54
55
steps:
56
- uses: actions/checkout@v4
0 commit comments