From c935f41c647af29480035690fb283e8ebcc13d21 Mon Sep 17 00:00:00 2001 From: Avishai Weissberg Date: Mon, 4 May 2026 11:06:45 -0700 Subject: [PATCH] chore: macos-13 github actions builder no longer available https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ also: remove errant py39 config (harmless) Release-As: 7.4.4 --- .github/workflows/build-wheels.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index cc9b7db..48f0513 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -114,7 +114,7 @@ jobs: env: GK_BUILD_WHEELS: "1" CIBW_ARCHS_MACOS: x86_64 arm64 - CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*" + CIBW_BUILD: "cp310-* cp311-* cp312-*" - if: ${{ steps.restore_macos_wheels.outputs.cache-hit != 'true' }} name: cache macos wheels @@ -132,13 +132,13 @@ jobs: strategy: matrix: include: - # macos-14 == arm64, macos-13 == x86_64 + # macos-14 == arm64, macos-15-intel == x86_64 - {"os": "macos-14", "arch": "arm64", "pyver": "3.10", "pyvershort": "310"} - {"os": "macos-14", "arch": "arm64", "pyver": "3.11", "pyvershort": "311"} - {"os": "macos-14", "arch": "arm64", "pyver": "3.12", "pyvershort": "312"} - - {"os": "macos-13", "arch": "x86_64", "pyver": "3.10", "pyvershort": "310"} - - {"os": "macos-13", "arch": "x86_64", "pyver": "3.11", "pyvershort": "311"} - - {"os": "macos-13", "arch": "x86_64", "pyver": "3.12", "pyvershort": "312"} + - {"os": "macos-15-intel", "arch": "x86_64", "pyver": "3.10", "pyvershort": "310"} + - {"os": "macos-15-intel", "arch": "x86_64", "pyver": "3.11", "pyvershort": "311"} + - {"os": "macos-15-intel", "arch": "x86_64", "pyver": "3.12", "pyvershort": "312"} steps: - name: Set up Python