From f2517c9b2356d6267522f0348ed00626f2106aeb Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 5 Apr 2017 13:51:12 -0400 Subject: Make manylinux wheels be always fast-building https://github.com/pypa/python-manylinux-demo/issues/13 for details --- ci/manylinux.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ci') diff --git a/ci/manylinux.sh b/ci/manylinux.sh index 06618111..98dc874b 100755 --- a/ci/manylinux.sh +++ b/ci/manylinux.sh @@ -13,10 +13,12 @@ action=$1 if [[ $action == "build" ]]; then # Compile wheels + cd /io for PYBIN in /opt/python/*/bin; do - "$PYBIN/pip" install -r /io/requirements/wheel.pip - "$PYBIN/pip" wheel /io/ -w wheelhouse/ + "$PYBIN/pip" install -r requirements/wheel.pip + "$PYBIN/python" setup.py bdist_wheel -d ~/wheelhouse/ done + cd ~ # Bundle external shared libraries into the wheels for whl in wheelhouse/*.whl; do -- cgit v1.2.1