Skip to content

Commit f3cc6f4

Browse files
committed
[ci-cd] ci: fix f-string syntax error and drop EOL Python 3.7
1 parent f777602 commit f3cc6f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Pydra
4141
run: |
4242
pip install ${{ matrix.pydra }}
43-
python -c "import pydra as m; print(f'{m.__name__} {getattr(m, '__version__', 'no version')} @ {m.__file__}')"
43+
python -c "import pydra as m; print(f\"{m.__name__} {getattr(m, '__version__', 'no version')} @ {m.__file__}\")"
4444
- name: Install task package
4545
run: |
4646
pip install ${{ matrix.pip-flags }} ".[dev]"
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
strategy:
5252
matrix:
53-
python-version: [3.7, 3.8, 3.9, '3.10']
53+
python-version: [3.8, 3.9, '3.10']
5454

5555
steps:
5656
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)