Skip to content

Commit a67972e

Browse files
committed
fix(crc32c): skip building wheels for Python 3.9
1 parent 2437196 commit a67972e

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/google-crc32c/scripts/manylinux/build_on_centos.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,7 @@ if [[ -z ${BUILD_PYTHON} ]]; then
4848
# Collect all target Python versions.
4949
for PYTHON_BIN in /opt/python/*/bin; do
5050
# H/T: https://stackoverflow.com/a/229606/1068170
51-
if [[ "${PYTHON_BIN}" == *"39"* ]]; then
52-
PYTHON_VERSIONS="${PYTHON_VERSIONS} ${PYTHON_BIN}"
53-
continue
54-
elif [[ "${PYTHON_BIN}" == *"310"* ]]; then
51+
if [[ "${PYTHON_BIN}" == *"310"* ]]; then
5552
PYTHON_VERSIONS="${PYTHON_VERSIONS} ${PYTHON_BIN}"
5653
continue
5754
elif [[ "${PYTHON_BIN}" == *"311"* ]]; then

0 commit comments

Comments
 (0)