This is an automated email from the ASF dual-hosted git repository. kou pushed a commit to branch maint-10.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit d05dd5482dcb25a011f3fe01622c6b1ff4033f19 Author: David Li <[email protected]> AuthorDate: Sat Oct 22 16:57:27 2022 -0400 MINOR: [Release] Fix loop in universal2 wheel verification (#14479) Authored-by: David Li <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]> --- dev/release/verify-release-candidate.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index a9681af528..f874500c8f 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -1067,11 +1067,12 @@ test_macos_wheels() { # the interpreter should be installed from python.org: # https://www.python.org/ftp/python/3.9.6/python-3.9.6-macosx10.9.pkg if [ "$(uname -m)" = "arm64" ]; then - for pyver in "3.9 3.10"; do + for pyver in 3.9 3.10; do local python="/Library/Frameworks/Python.framework/Versions/${pyver}/bin/python${pyver}" # create and activate a virtualenv for testing as arm64 for arch in "arm64" "x86_64"; do + show_header "Testing Python ${pyver} universal2 wheel on ${arch}" VENV_ENV=wheel-${pyver}-universal2-${arch} PYTHON=${python} maybe_setup_virtualenv || continue # install pyarrow's universal2 wheel pip install pyarrow-${VERSION}-cp${pyver/.}-cp${pyver/.}-macosx_11_0_universal2.whl
