diff --git a/travis/build-wheels.sh b/travis/build-wheels.sh deleted file mode 100755 index 5326968..0000000 --- a/travis/build-wheels.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -set -e -u -x - -function repair_wheel { - wheel="$1" - if ! auditwheel show "$wheel"; then - echo "Skipping non-platform wheel $wheel" - else - auditwheel repair "$wheel" --plat "$PLAT" -w /io/wheelhouse/ - fi -} - -# Compile wheels -for PYBIN in /opt/python/*/bin; do - "${PYBIN}/pip" wheel /io/ --no-deps -w wheelhouse/ -done - -# Bundle external shared libraries into the wheels -for whl in wheelhouse/*.whl; do - repair_wheel "$whl" -done -