From 6f75873807e97b72abb2d62475555913eaef9503 Mon Sep 17 00:00:00 2001 From: Abimael Martell <1450169+abimaelmartell@users.noreply.github.com> Date: Tue, 14 Jul 2026 18:22:06 -0700 Subject: [PATCH] fix(ci): move x86_64 macOS wheel build to macos-15-intel (#146) macos-13 runners were retired by GitHub, so the x86_64-apple-darwin build job queued forever and the publish never ran. Co-authored-by: Claude Fable 5 --- .github/workflows/publish-pypi.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 2bbc273..b0ce67e 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -89,7 +89,9 @@ jobs: target: x86_64-unknown-linux-gnu - os: ubuntu-latest target: aarch64-unknown-linux-gnu - - os: macos-13 + # macos-13 was retired by GitHub; macos-15-intel is the remaining + # Intel runner label (available through 2027). + - os: macos-15-intel target: x86_64-apple-darwin - os: macos-14 target: aarch64-apple-darwin