diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-05-08 11:19:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-05-08 11:19:22 -0400 |
commit | 286dca777c142d8cb3bdf1a4b60f6d1442f9a140 (patch) | |
tree | f5a7528951f7bfcb6f5331a01a36b6078e7f7725 | |
parent | accc865a9c806c998cfd1ec67cd643d7ca4aabd4 (diff) | |
download | python-coveragepy-git-286dca777c142d8cb3bdf1a4b60f6d1442f9a140.tar.gz |
Need to clean before building, or 27m binaries go into the 27mu wheels.
-rwxr-xr-x | ci/manylinux.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/manylinux.sh b/ci/manylinux.sh index 98dc874b..0cf6a5d3 100755 --- a/ci/manylinux.sh +++ b/ci/manylinux.sh @@ -16,6 +16,7 @@ if [[ $action == "build" ]]; then cd /io for PYBIN in /opt/python/*/bin; do "$PYBIN/pip" install -r requirements/wheel.pip + "$PYBIN/python" setup.py clean -a "$PYBIN/python" setup.py bdist_wheel -d ~/wheelhouse/ done cd ~ |