Skip to content

Commit

Permalink
remove py37 from test-wheels script (#41546)
Browse files Browse the repository at this point in the history
Signed-off-by: Lonnie Liu <[email protected]>
  • Loading branch information
aslonnie authored Dec 1, 2023
1 parent 9620336 commit 0853dbf
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions ci/build/test-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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]}"
Expand Down

0 comments on commit 0853dbf

Please sign in to comment.