Skip to content

Commit fb067fd

Browse files
committed
Update PLAT variable in build-wheels.sh script to manylinux_2_24
1 parent a34583f commit fb067fd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/build-wheels.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e -u -x
33

44
ARCH=$(uname -m)
5-
export PLAT=manylinux_2_17_$ARCH
5+
export PLAT=manylinux_2_24_$ARCH
66

77
# Accurately check if Python version is 3.8 or greater
88
function is_python_version_ge_38 {
@@ -37,8 +37,7 @@ done
3737
for PYDIR in /opt/python/*; do
3838
if is_python_version_ge_38 "$PYDIR"; then
3939
PYBIN="$PYDIR/bin"
40-
"${PYBIN}/pip" install plotpy --no-index -f /io/wheelhouse
40+
"${PYBIN}/pip" install plotpy --no-index -f /io/wheelhouse
4141
(cd "$HOME"; INSTDIR=$("${PYBIN}/python" -c "import plotpy, os.path as osp; print(osp.dirname(plotpy.__file__))"); export QT_QPA_PLATFORM=offscreen; "${PYBIN}/pytest" "$INSTDIR")
4242
fi
4343
done
44-

0 commit comments

Comments
 (0)