Skip to content

Commit

Permalink
ARROW-7774: [Packaging][Python] Update macos and windows wheel filenames
Browse files Browse the repository at this point in the history
- After unpinning wheel the macOS wheels have macosx_10_9 architecture tag, so update tasks.yml and the verification script.
- Remove "m" postfix from the py38 win wheel

Closes #6362 from kszucs/wheel-filenames and squashes the following commits:

1a573c1 <Krisztián Szűcs> update macos and windows wheel filenames

Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
  • Loading branch information
kszucs committed Feb 7, 2020
1 parent d03c49c commit 579ce66
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ test_macos_wheels() {
macos_suffix=macosx
case "${py_arch}" in
*m)
macos_suffix="${macos_suffix}_10_6_intel"
macos_suffix="${macos_suffix}_10_9_intel"
;;
*)
macos_suffix="${macos_suffix}_10_9_x86_64"
Expand Down
12 changes: 6 additions & 6 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ tasks:
params:
python_version: 2.7
artifacts:
- pyarrow-{no_rc_version}-cp27-cp27m-macosx_10_6_intel.whl
- pyarrow-{no_rc_version}-cp27-cp27m-macosx_10_9_intel.whl

wheel-osx-cp35m:
ci: travis
Expand All @@ -693,7 +693,7 @@ tasks:
params:
python_version: 3.5
artifacts:
- pyarrow-{no_rc_version}-cp35-cp35m-macosx_10_6_intel.whl
- pyarrow-{no_rc_version}-cp35-cp35m-macosx_10_9_intel.whl

wheel-osx-cp36m:
ci: travis
Expand All @@ -702,7 +702,7 @@ tasks:
params:
python_version: 3.6
artifacts:
- pyarrow-{no_rc_version}-cp36-cp36m-macosx_10_6_intel.whl
- pyarrow-{no_rc_version}-cp36-cp36m-macosx_10_9_intel.whl

wheel-osx-cp37m:
ci: travis
Expand All @@ -711,7 +711,7 @@ tasks:
params:
python_version: 3.7
artifacts:
- pyarrow-{no_rc_version}-cp37-cp37m-macosx_10_6_intel.whl
- pyarrow-{no_rc_version}-cp37-cp37m-macosx_10_9_intel.whl

wheel-osx-cp37m-azure:
ci: azure
Expand All @@ -720,7 +720,7 @@ tasks:
params:
python_version: 3.7
artifacts:
- pyarrow-{no_rc_version}-cp37-cp37m-macosx_10_6_intel.whl
- pyarrow-{no_rc_version}-cp37-cp37m-macosx_10_9_intel.whl

wheel-osx-cp38:
ci: travis
Expand Down Expand Up @@ -758,7 +758,7 @@ tasks:
params:
python_version: 3.8
artifacts:
- pyarrow-{no_rc_version}-cp38-cp38m-win_amd64.whl
- pyarrow-{no_rc_version}-cp38-cp38-win_amd64.whl

############################## Linux PKGS ####################################

Expand Down

0 comments on commit 579ce66

Please sign in to comment.