Commits

Krisztián Szűcs authored 2dba298b1bc
ARROW-13450: [Python][Packaging] Set deployment target to 10.13 for universal2 wheels Despite that having native wheels for Intel architectures the universal2 wheel is being built with newer macOS version, so pip will prefer the universal wheel rather than the `x86_64` one. ``` pyarrow-5.0.0-cp39-cp39-macosx_10_13_x86_64.whl pyarrow-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl pyarrow-5.0.0-cp39-cp39-macosx_11_0_arm64.whl pyarrow-5.0.0-cp39-cp39-macosx_11_0_universal2.whl ``` This PR changes the universal wheel to have an older platform tag: ``` pyarrow-5.0.0-cp39-cp39-macosx_10_13_universal2.whl ``` Closes #10801 from kszucs/universal2-10-13 Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com> Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>