summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-05-08 11:19:22 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-05-08 11:19:22 -0400
commit286dca777c142d8cb3bdf1a4b60f6d1442f9a140 (patch)
treef5a7528951f7bfcb6f5331a01a36b6078e7f7725
parentaccc865a9c806c998cfd1ec67cd643d7ca4aabd4 (diff)
downloadpython-coveragepy-git-286dca777c142d8cb3bdf1a4b60f6d1442f9a140.tar.gz
Need to clean before building, or 27m binaries go into the 27mu wheels.
-rwxr-xr-xci/manylinux.sh1
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 ~