andygrove opened a new pull request, #1612: URL: https://github.com/apache/datafusion-ballista/pull/1612
# Which issue does this PR close? Closes #1608. # Rationale for this change The `build-macos-x86_64` job in `.github/workflows/build.yml` runs on `macos-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 to `macos-13` or 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? - Remove the `build-macos-x86_64` job from `.github/workflows/build.yml`. - Remove its entry from the `needs` list of `merge-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 requires `protoc` and a Rust toolchain locally. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
