ci: drop Intel macOS Python wheel build#1612
Merged
andygrove merged 1 commit intoapache:mainfrom Apr 28, 2026
Merged
Conversation
Closes apache#1608. The build-macos-x86_64 job ran on macos-latest, which has resolved to arm64 since GitHub's 2024 runner change, so it produced a duplicate arm64 wheel rather than an x86_64 wheel. Drop the job and remove its entry from merge-build-artifacts. The macOS arm64 wheel is still built by build-python-mac-win.
milenkovicm
reviewed
Apr 28, 2026
| name: dist-${{ matrix.os }} | ||
| path: python/target/wheels/* | ||
|
|
||
| build-macos-x86_64: |
Contributor
There was a problem hiding this comment.
Are you sure this is intel build ? it runs on macos-latest, which should be arm?
- this PR may be relevant maybe we should merge it?
Member
There was a problem hiding this comment.
@milenkovicm See the PR description, section Rationale for this change.
Member
Author
There was a problem hiding this comment.
Thanks @martin-g. Yes, @milenkovicm this is an arm build named x86_64 - the original intent was to build for Intel.
martin-g
approved these changes
Apr 28, 2026
milenkovicm
approved these changes
Apr 28, 2026
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.
Which issue does this PR close?
Closes #1608.
Rationale for this change
The
build-macos-x86_64job in.github/workflows/build.ymlruns onmacos-latest, which has resolved to arm64 since GitHub's 2024 runner change. As a result it has been producing a duplicate macOS arm64 wheel rather than an x86_64 wheel, and no Intel macOS wheel has been published. Rather than restoring an Intel macOS build (e.g. by pinning tomacos-13or cross-compiling), this PR drops Intel macOS as a published wheel target. Users on Intel Macs can still install via the source distribution.What changes are included in this PR?
build-macos-x86_64job from.github/workflows/build.yml.needslist ofmerge-build-artifacts.The macOS arm64 wheel continues to be produced by the macOS leg of
build-python-mac-win.Are there any user-facing changes?
Yes: starting with the next release, no prebuilt wheel will be published for Intel macOS (
macosx_*_x86_64). Intel macOS users will need to install from sdist, which requiresprotocand a Rust toolchain locally.