diff --git a/.manylinux-install.sh b/.manylinux-install.sh deleted file mode 100755 index 7c5b7a3..0000000 --- a/.manylinux-install.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash - -set -e -x - -# Compile wheels -for PYBIN in /opt/python/*/bin; do - if [[ "${PYBIN}" == *"cp27"* ]] || \ - [[ "${PYBIN}" == *"cp33"* ]] || \ - [[ "${PYBIN}" == *"cp34"* ]] || \ - [[ "${PYBIN}" == *"cp35"* ]] || \ - [[ "${PYBIN}" == *"cp36"* ]] || \ - [[ "${PYBIN}" == *"cp37"* ]]; then - "${PYBIN}/pip" install -e /io/ - "${PYBIN}/pip" wheel /io/ -w wheelhouse/ - rm -rf /io/build /io/*.egg-info - fi -done - -# Bundle external shared libraries into the wheels -for whl in wheelhouse/Levenshtein*.whl; do - auditwheel repair "$whl" -w /io/wheelhouse/ -done - diff --git a/.manylinux.sh b/.manylinux.sh deleted file mode 100644 index d9249db..0000000 --- a/.manylinux.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -set -e -x - -docker pull $DOCKER_IMAGE - -docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/.manylinux-install.sh - -pip install twine && twine upload -u mattandahalfew -p $PYPIPASSWORD wheelhouse/* --skip-existing