From 0853dbfe6397b870b05d040357bcbf876315a1e7 Mon Sep 17 00:00:00 2001 From: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> Date: Thu, 30 Nov 2023 16:06:54 -0800 Subject: [PATCH] remove py37 from test-wheels script (#41546) Signed-off-by: Lonnie Liu --- ci/build/test-wheels.sh | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/ci/build/test-wheels.sh b/ci/build/test-wheels.sh index b8d43bbd5996d..e6d5ffab7e1f1 100755 --- a/ci/build/test-wheels.sh +++ b/ci/build/test-wheels.sh @@ -48,8 +48,8 @@ function retry { if [[ "$platform" == "linux" ]]; then # Install miniconda. - PY_WHEEL_VERSIONS=("37" "38" "39") - PY_MMS=("3.7.10" "3.8.10" "3.9.5") + PY_WHEEL_VERSIONS=("38" "39") + PY_MMS=("3.8.10" "3.9.5") wget --quiet "https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh" -O miniconda3.sh "${ROOT_DIR}"/../suppress_output bash miniconda3.sh -b -p "$HOME/miniconda3" export PATH="$HOME/miniconda3/bin:$PATH" @@ -93,13 +93,8 @@ if [[ "$platform" == "linux" ]]; then elif [[ "$platform" == "macosx" ]]; then MACPYTHON_PY_PREFIX=/Library/Frameworks/Python.framework/Versions - if [ "$(uname -m)" = "arm64" ]; then - PY_WHEEL_VERSIONS=("38" "39" "310") - PY_MMS=("3.8" "3.9" "3.10") - else - PY_WHEEL_VERSIONS=("37" "38" "39" "310") - PY_MMS=("3.7" "3.8" "3.9" "3.10") - fi + PY_WHEEL_VERSIONS=("38" "39" "310") + PY_MMS=("3.8" "3.9" "3.10") for ((i=0; i<${#PY_MMS[@]}; ++i)); do PY_MM="${PY_MMS[i]}"