diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index a9681af5287..f874500c8ff 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