From 45d3940cc8bd64782aabf15f5e5416ec39d80f3a Mon Sep 17 00:00:00 2001 From: Galen Reich <54807169+GalenReich@users.noreply.github.com> Date: Mon, 16 Jun 2025 17:16:40 +0100 Subject: [PATCH] pypi publish workflow fix Adds quotes around Python version to avoid building against Python 3.1 rather than 3.10 --- .github/workflows/pypi-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yaml b/.github/workflows/pypi-publish.yaml index 9cbc429..8adb75b 100644 --- a/.github/workflows/pypi-publish.yaml +++ b/.github/workflows/pypi-publish.yaml @@ -14,4 +14,4 @@ jobs: uses: JRubics/poetry-publish@v1.17 with: pypi_token: ${{ secrets.PYPI_TOKEN }} - python_version: 3.10 + python_version: "3.10"