From eab000e7e65098f55f42c9bf33b50128d123c2f5 Mon Sep 17 00:00:00 2001 From: "Ilya (Marshal)" Date: Tue, 26 May 2026 18:20:40 +0200 Subject: [PATCH] Drop macos-13 PGO runner, cross-compile x86_64 mac wheels from arm64 --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 805f1dd..2d4d036 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,9 +37,7 @@ jobs: target: aarch64 interpreter: 3.11 3.12 3.13 3.14 - - os: macos - target: x86_64 - interpreter: pypy3.11 + # macos x86_64 has no entry: base combo cross-compiles from arm64 with the default interpreter list (non-PGO). - os: macos target: aarch64 # actions/setup-python@v6 does not support 3.8 and 3.9 on arm64 @@ -111,7 +109,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ] + os: [ ubuntu-latest, windows-latest, macos-14 ] interpreter: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] exclude: # actions/setup-python@v6 does not support 3.8 and 3.9 on arm64 @@ -131,7 +129,7 @@ jobs: - name: Checkout repository. uses: actions/checkout@v6 - - uses: actions/setup-python@v6 # required for macos-13 with Python 3.8-3.10... otherwise UV uses PyPy... + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.interpreter }}