Skip to content

Commit f8b2ad2

Browse files
committed
fix: ensure Python version is treated as a string
1 parent 5206569 commit f8b2ad2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python 3.10
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: 3.10
28+
python-version: "3.10"
2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v7
3131
- name: Install Python dependencies

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python 3.10
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: 3.10
28+
python-version: "3.10"
2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v7
3131
- name: Install Python dependencies

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python 3.10
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: 3.10
25+
python-version: "3.10"
2626
- name: Install uv
2727
uses: astral-sh/setup-uv@v7
2828
- name: Install Python dependencies

0 commit comments

Comments
 (0)