This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch maint-15.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit ee7f54cd1b0681540ae7fe852de2d1ed4ad6535b Author: Raúl Cumplido <[email protected]> AuthorDate: Thu Jan 18 04:22:57 2024 +0100 GH-39656: [Release] Update platform tags for macOS wheels to macosx_10_15 (#39657) ### Rationale for this change Currently the binary verification for releases fails due to wrong macOS platform version. ### What changes are included in this PR? Update to the current generated platform tag. ### Are these changes tested? No, but I've validated this is the corrected generated platform tag for the wheels on the Release Candidate: https://apache.jfrog.io/ui/native/arrow/python-rc/15.0.0-rc1/ ### Are there any user-facing changes? Not because of this change but there was a minimum version of macOS as part of the PR that caused this issue. * Closes: #39656 Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]> --- dev/release/verify-release-candidate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index c5e27d0830..90f071c5b4 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -1136,7 +1136,7 @@ test_macos_wheels() { local check_flight=OFF else local python_versions="3.8 3.9 3.10 3.11 3.12" - local platform_tags="macosx_10_14_x86_64" + local platform_tags="macosx_10_15_x86_64" fi # verify arch-native wheels inside an arch-native conda environment
