We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34583f commit fb067fdCopy full SHA for fb067fd
scripts/build-wheels.sh
@@ -2,7 +2,7 @@
2
set -e -u -x
3
4
ARCH=$(uname -m)
5
-export PLAT=manylinux_2_17_$ARCH
+export PLAT=manylinux_2_24_$ARCH
6
7
# Accurately check if Python version is 3.8 or greater
8
function is_python_version_ge_38 {
@@ -37,8 +37,7 @@ done
37
for PYDIR in /opt/python/*; do
38
if is_python_version_ge_38 "$PYDIR"; then
39
PYBIN="$PYDIR/bin"
40
- "${PYBIN}/pip" install plotpy --no-index -f /io/wheelhouse
+ "${PYBIN}/pip" install plotpy --no-index -f /io/wheelhouse
41
(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")
42
fi
43
done
44
-
0 commit comments