Skip to content

Commit 71c878b

Browse files
committed
address review comments
1 parent b0f076b commit 71c878b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/manylinux/check.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ install_python_pyenv() {
3939

4040
SUPPORTED_PYTHON_VERSIONS=("3.9" "3.10" "3.11" "3.12")
4141

42+
PYTHON_VERSION_MIN=${SUPPORTED_PYTHON_VERSIONS[0]}
43+
PY_TAG="cp${PYTHON_VERSION_MIN//.}-abi3"
44+
4245
for PYTHON_VERSION in "${SUPPORTED_PYTHON_VERSIONS[@]}"; do
4346
PYTHON=python${PYTHON_VERSION}
4447
install_python_pyenv ${PYTHON_VERSION}
@@ -48,7 +51,7 @@ for PYTHON_VERSION in "${SUPPORTED_PYTHON_VERSIONS[@]}"; do
4851
${PYTHON} -m venv venv
4952

5053
# Install the wheel.
51-
WHEEL_FILE="wheels/google_crc32c-${PACKAGE_VERSION}-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
54+
WHEEL_FILE="wheels/google_crc32c-${PACKAGE_VERSION}-${PY_TAG}-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
5255
venv/bin/pip install ${WHEEL_FILE}
5356

5457
# Verify that the module is installed and peek at contents.

0 commit comments

Comments
 (0)