Skip to content

Commit fd80ebb

Browse files
committed
manylinux: Update excluded Python versions
cp34 in no longer necessary for support because of low usage. cpython-2.6.9-ucs2 cpython-2.6.9-ucs4 were recently added to the manylinux image -- exclude them.
1 parent 7753831 commit fd80ebb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source "${script_dir}/manylinux-build-common.sh"
1313

1414
# Compile wheels re-using standalone project and archive cache
1515
for PYBIN in "${PYBINARIES[@]}"; do
16-
if [[ ${PYBIN} == *"cp26"* || ${PYBIN} == *"cp33"* ]]; then
16+
if [[ ${PYBIN} == *"cp26"* || ${PYBIN} == *"cp33"* || ${PYBIN} == *"cp34"* || ${PYBIN} == *"cpython-2.6"* ]]; then
1717
echo "Skipping ${PYBIN}"
1818
continue
1919
fi

0 commit comments

Comments
 (0)