Skip to content

Commit 599553e

Browse files
committed
Re-add missing quotes for python versions
1 parent 29f611c commit 599553e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/getting_started.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
include:
1717
- env-prefix: PY310_LINUX
1818
os: ubuntu-latest
19-
python-version: 3.10
19+
python-version: "3.10"
2020

2121
- env-prefix: PY313_LINUX
2222
os: ubuntu-latest
23-
python-version: 3.13
23+
python-version: "3.13"
2424

2525
- env-prefix: PY313_WINDOWS
2626
os: windows-latest
27-
python-version: 3.13
27+
python-version: "3.13"
2828

2929
runs-on: ${{ matrix.os }}
3030
timeout-minutes: 20

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Python
2828
uses: actions/setup-python@v2
2929
with:
30-
python-version: 3.12
30+
python-version: "3.12"
3131

3232
- name: Install
3333
run: pip install -e .[dev]

.github/workflows/pytest_perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Python
2323
uses: actions/setup-python@v2
2424
with:
25-
python-version: 3.12
25+
python-version: "3.12"
2626

2727
- name: Install
2828
run: pip install -e .[dev]

0 commit comments

Comments
 (0)