Skip to content

Commit 510a2aa

Browse files
committed
linux: Do not build Python 3.5 Python packages
3.5 support removed in ITK 5.2.
1 parent c3f46e8 commit 510a2aa

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)