From 980db38a12043e1685dd0e91e9845f1ae684cab1 Mon Sep 17 00:00:00 2001 From: Arnaud Patard Date: Thu, 23 Jan 2025 11:01:27 +0100 Subject: [PATCH] .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 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2a45c0..f449f49 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: Switch to using Python 3.10 by default uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: "3.10" - name: Install tox run: >-