Use macos-14 runner for release wheels (macos-13 retired)#71
Merged
Conversation
GitHub is retiring the Intel macos-13 runners, so the release workflow's macOS leg queued indefinitely and blocked publish-to-pypi (the Linux and Windows cp314t wheels built fine). macos-14 is Apple Silicon (arm64); cibuildwheel builds the arm64 wheels natively and cross-builds the x86_64 ones (x86_64 can't be tested on an arm64 runner). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Coverage Report for CI Build 27524170752Warning No base build found for commit Coverage: 94.387%Details
Uncovered ChangesNo uncovered changes found. Coverage RegressionsRequires a base build to compare against. How to fix this → Coverage Stats
💛 - Coveralls |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
GitHub is retiring the Intel macos-13 runners. The 0.3.0 release run
(workflow_dispatch on
develop) built the Linux + Windows wheels fine —including all
cp314tfree-threaded wheels — but the macOS leg satqueuedindefinitely waiting for a runner that no longer exists. Becausepublish-to-pypineeds everybuild_wheelsmatrix job, that stuck legblocked the PyPI publish entirely. The stuck run was cancelled.
Fix
Switch the release matrix
macos-13→macos-14(Apple Silicon / arm64).cibuildwheel builds the arm64 wheels natively and cross-builds the x86_64
ones (x86_64 wheels can't be tested on an arm64 runner, only built).
Validation
The released
cp314twheel itself is already proven good: pulled from thev0.3.0 GitHub release and tested in a free-threaded CPython 3.14.4 env
against a live
timeplusd3.3.1.246 FT server — import keeps the GIL off,stream create/insert/read works, and 16 threads × 25 concurrent queries all
succeed with the GIL staying disabled. This PR only unblocks the macOS build
🤖 Generated with Claude Code