From b2b1e651f738d5ed5f7e9d8306dc7342169c762d Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sat, 28 Feb 2026 19:33:39 -0800 Subject: [PATCH] Fix macOS wheel: use Python 3.13 via setup-python, switch to macos-15 The macos-14 runner ships Python 3.14 by default, producing wheels incompatible with Python 3.13 environments. Pin to 3.13 using actions/setup-python and switch to macos-15 for consistency. Made-with: Cursor --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8091b50fc..404728a59 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -107,7 +107,7 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} build-macos-wheel: - runs-on: macos-14 + runs-on: macos-15 name: Build macOS arm64 wheel steps: @@ -117,10 +117,14 @@ jobs: submodules: recursive ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} + - uses: actions/setup-python@v5 + with: + python-version: '3.13' + - name: Install dependencies run: | brew install bison flex gperf tcl-tk@8 readline libffi dwarfutils libelf ccache - pip3 install --break-system-packages pybind11 cxxheaderparser setuptools wheel + pip3 install pybind11 cxxheaderparser setuptools wheel - name: Build Verific tclmain run: |