From 830f192b53245baa0107af35b14aca079968133d Mon Sep 17 00:00:00 2001 From: John Dumbell Date: Mon, 5 Aug 2024 12:43:28 +0100 Subject: [PATCH] Python version in deploy script needs to be a string If considered a decimal it slices off the zero, so 3.10 becomes 3.1. --- .github/workflows/deploy-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-wheels.yml b/.github/workflows/deploy-wheels.yml index 78fae93..85a9748 100644 --- a/.github/workflows/deploy-wheels.yml +++ b/.github/workflows/deploy-wheels.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Python 3.10 uses: actions/setup-python@v3 with: - python-version: 3.10 + python-version: "3.10" if: ${{ matrix.os != 'macos-14' && matrix.os != 'macos-latest' }} - name: Install LLVM uses: ./.github/actions/install-llvm