Skip to content

Commit 0853dbf

Browse files
authored
remove py37 from test-wheels script (#41546)
Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 9620336 commit 0853dbf

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

ci/build/test-wheels.sh

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ function retry {
4848

4949
if [[ "$platform" == "linux" ]]; then
5050
# Install miniconda.
51-
PY_WHEEL_VERSIONS=("37" "38" "39")
52-
PY_MMS=("3.7.10" "3.8.10" "3.9.5")
51+
PY_WHEEL_VERSIONS=("38" "39")
52+
PY_MMS=("3.8.10" "3.9.5")
5353
wget --quiet "https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh" -O miniconda3.sh
5454
"${ROOT_DIR}"/../suppress_output bash miniconda3.sh -b -p "$HOME/miniconda3"
5555
export PATH="$HOME/miniconda3/bin:$PATH"
@@ -93,13 +93,8 @@ if [[ "$platform" == "linux" ]]; then
9393
elif [[ "$platform" == "macosx" ]]; then
9494
MACPYTHON_PY_PREFIX=/Library/Frameworks/Python.framework/Versions
9595

96-
if [ "$(uname -m)" = "arm64" ]; then
97-
PY_WHEEL_VERSIONS=("38" "39" "310")
98-
PY_MMS=("3.8" "3.9" "3.10")
99-
else
100-
PY_WHEEL_VERSIONS=("37" "38" "39" "310")
101-
PY_MMS=("3.7" "3.8" "3.9" "3.10")
102-
fi
96+
PY_WHEEL_VERSIONS=("38" "39" "310")
97+
PY_MMS=("3.8" "3.9" "3.10")
10398

10499
for ((i=0; i<${#PY_MMS[@]}; ++i)); do
105100
PY_MM="${PY_MMS[i]}"

0 commit comments

Comments
 (0)