Skip to content

Commit d1af05a

Browse files
committed
scripts: Do not build Python 2.7 on Linux
1 parent 7650498 commit d1af05a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scripts/dockcross-manylinux-build-module-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Versions can be restricted by passing them in as arguments to the script
77
# For example,
88
#
9-
# scripts/dockcross-manylinux-build-module-wheels.sh cp27mu cp35
9+
# scripts/dockcross-manylinux-build-module-wheels.sh cp35
1010

1111
# Pull dockcross manylinux images
1212
docker pull dockcross/manylinux-x64

scripts/dockcross-manylinux-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Versions can be restricted by passing them in as arguments to the script
66
# For example,
77
#
8-
# scripts/dockcross-manylinux-build-wheels.sh cp27mu cp35
8+
# scripts/dockcross-manylinux-build-wheels.sh cp35
99

1010
# Pull dockcross manylinux images
1111
docker pull dockcross/manylinux-x64

scripts/internal/manylinux-build-common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ set -e -x
55

66
# Versions can be restricted by passing them in as arguments to the script
77
# For example,
8-
# manylinux-build-wheels.sh cp27mu cp35
8+
# manylinux-build-wheels.sh cp35
99
if [[ $# -eq 0 ]]; then
1010
PYBIN=(/opt/python/*/bin)
1111
PYBINARIES=()
1212
for version in "${PYBIN[@]}"; do
13-
if [[ ${version} == *"cp27"* || ${version} == *"cp35"* || ${version} == *"cp36"* || ${version} == *"cp37"* ]]; then
13+
if [[ ${version} == *"cp35"* || ${version} == *"cp36"* || ${version} == *"cp37"* ]]; then
1414
PYBINARIES+=(${version})
1515
fi
1616
done

0 commit comments

Comments
 (0)