Skip to content

Commit 980db38

Browse files
committed
.github/workflows/release.yml: Fix release
When #294, I didn't notice that the python version was not inside quotes, leading to python version being parsed as 3.1 and not 3.10. Breaking the release workflow. Add missing quotes. Signed-off-by: Arnaud Patard <[email protected]>
1 parent 613b885 commit 980db38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Switch to using Python 3.10 by default
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: 3.10
25+
python-version: "3.10"
2626

2727
- name: Install tox
2828
run: >-

0 commit comments

Comments
 (0)