1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-18 16:36:02 +02:00

Update scripts/build-manylinux-wheels.sh

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
bwoodsend 2020-05-08 14:14:40 +01:00 committed by GitHub
parent bb0f8eebfb
commit a6be591a0a
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ for PYBIN in /opt/python/cp3[5678]*/bin; do
# break
done
"$PYBIN/pip" install -q auditwheel
"$PYBIN/pip" install -q auditwheel
# Wheels aren't considered manylinux unless they have been through
# auditwheel. Audited wheels go in /io/dist/.
@ -34,4 +34,3 @@ mkdir -p /io/dist/
for whl in /io/temp-wheels/*.whl; do
auditwheel repair "$whl" --plat $PLAT -w /io/dist/
done