Skip to content

Commit 23c5e9c

Browse files
committed
Fix proper python version pinning in github actions
1 parent 8aedfd8 commit 23c5e9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@v4
4848
- uses: actions/setup-python@v5
4949
with:
50-
python-version: 3.10
50+
python-version: "3.10"
5151
- name: Install dependencies
5252
run: |
5353
python -m pip install --upgrade pip
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions/checkout@v4
6262
- uses: actions/setup-python@v5
6363
with:
64-
python-version: 3.10
64+
python-version: "3.10"
6565
- name: Install dependencies
6666
run: |
6767
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)