Skip to content

Commit ccd26b4

Browse files
committed
Merge remote-tracking branch 'blaster-main/remove-python-3-5-linux'
2 parents d394dc7 + 510a2aa commit ccd26b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/internal/manylinux-build-common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ sudo cp ${script_dir}/Support.cmake /usr/share/cmake-3.17/Modules/FindPython/
99

1010
# Versions can be restricted by passing them in as arguments to the script
1111
# For example,
12-
# manylinux-build-wheels.sh cp35
12+
# manylinux-build-wheels.sh cp39
1313
if [[ $# -eq 0 ]]; then
1414
PYBIN=(/opt/python/*/bin)
1515
PYBINARIES=()
1616
for version in "${PYBIN[@]}"; do
17-
if [[ ${version} == *"cp35"* || ${version} == *"cp36"* || ${version} == *"cp37"* || ${version} == *"cp38"* || ${version} == *"cp39"* ]]; then
17+
if [[ ${version} == *"cp36"* || ${version} == *"cp37"* || ${version} == *"cp38"* || ${version} == *"cp39"* ]]; then
1818
PYBINARIES+=(${version})
1919
fi
2020
done

0 commit comments

Comments
 (0)