From 5ff79d0ee52f78f11b8c8f219220c5f73795e278 Mon Sep 17 00:00:00 2001 From: Changhyun Kwon Date: Tue, 19 May 2026 17:14:59 +0900 Subject: [PATCH 1/2] Add Linux aarch64 wheel to buildpublish matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds ubuntu-24.04-arm to the cibuildwheel matrix so users on Linux aarch64 (AWS Graviton, Raspberry Pi 64-bit, NVIDIA Jetson, Ampere) get a prebuilt wheel instead of falling back to an sdist source build. Uses GitHub's free native arm64 Linux runner — no QEMU. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/buildpublish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildpublish.yml b/.github/workflows/buildpublish.yml index d73f5f2..766b4b8 100644 --- a/.github/workflows/buildpublish.yml +++ b/.github/workflows/buildpublish.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-13, macos-14] + os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14] steps: - uses: actions/checkout@v4 with: From a0a8d98943a0a2aacf61c22c03599696d4e277f3 Mon Sep 17 00:00:00 2001 From: Changhyun Kwon Date: Tue, 19 May 2026 19:24:31 +0900 Subject: [PATCH 2/2] Use macos-15-intel runner for Intel macOS wheel The macos-13 GitHub-hosted runner pool is starved (jobs queue indefinitely as of mid-May 2026). macos-15-intel is the supported successor and produces the same x86_64 macOS wheels with reliable runner availability. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/buildpublish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildpublish.yml b/.github/workflows/buildpublish.yml index 766b4b8..29903f6 100644 --- a/.github/workflows/buildpublish.yml +++ b/.github/workflows/buildpublish.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14] + os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-15-intel, macos-14] steps: - uses: actions/checkout@v4 with: