Skip to content

Commit 100dd52

Browse files
committed
Fix Python 3.10 setup in workflows
1 parent 047e0a8 commit 100dd52

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
strategy:
3232
matrix:
33-
python_version: [ 3.10 ]
33+
python_version: [ "3.10" ]
3434

3535
steps:
3636
- uses: actions/checkout@v6

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282

8383
strategy:
8484
matrix:
85-
python_version: [ 3.10 ]
85+
python_version: [ "3.10" ]
8686

8787
steps:
8888
- uses: actions/checkout@v6
@@ -130,7 +130,7 @@ jobs:
130130

131131
strategy:
132132
matrix:
133-
python_version: [ 3.10 ]
133+
python_version: [ "3.10" ]
134134

135135
steps:
136136
- uses: actions/checkout@v6
@@ -172,7 +172,7 @@ jobs:
172172

173173
strategy:
174174
matrix:
175-
python_version: [ 3.10 ]
175+
python_version: [ "3.10" ]
176176

177177
steps:
178178
- uses: actions/checkout@v6
@@ -248,7 +248,7 @@ jobs:
248248

249249
strategy:
250250
matrix:
251-
python_version: [ 3.10 ]
251+
python_version: [ "3.10" ]
252252

253253
steps:
254254
- uses: actions/checkout@v6
@@ -319,7 +319,7 @@ jobs:
319319
run: rm -rf venv/ || true
320320

321321
- name: Export Development Requirements
322-
run: uv export --extra test --extra lint --extra mypy --extra docs --format requirements.txt --output requirements-dev.txt
322+
run: uv export --extra test --extra lint --extra mypy --extra docs --format requirements.txt --output-file requirements-dev.txt
323323

324324
- name: Run Pip Audit Check On All Development And Test Dependencies
325325
uses: ./.github/actions/gh-action-pip-audit/ # v1.0.0
@@ -338,7 +338,7 @@ jobs:
338338

339339
strategy:
340340
matrix:
341-
python_version: [ 3.10 ]
341+
python_version: [ "3.10" ]
342342

343343
steps:
344344
- uses: actions/checkout@v6
@@ -377,7 +377,7 @@ jobs:
377377

378378
strategy:
379379
matrix:
380-
python_version: [ 3.10 ]
380+
python_version: [ "3.10" ]
381381

382382
steps:
383383
- uses: actions/checkout@v6

.github/workflows/publish_dev_artifact.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Use Python ${{ matrix.python_version }}
2828
uses: actions/setup-python@v6
2929
with:
30-
python-version: 3.10
30+
python-version: "3.10"
3131
- name: Install uv
3232
uses: astral-sh/setup-uv@v4
3333

.github/workflows/publish_pricing_to_s3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python_version: [ 3.10 ]
20+
python_version: [ "3.10" ]
2121

2222
steps:
2323
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)