summaryrefslogtreecommitdiff
path: root/ci/manylinux.sh
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
commit7c8c57dd41bb025fec783e6aed4b9d2dafd3f3f3 (patch)
tree5d3295dcceb60ce8e03b51038fe06527256d6cc2 /ci/manylinux.sh
parentbb05f0c3b750ac7e5e0a3bcdc49fd78aa00068e6 (diff)
downloadpython-coveragepy-7c8c57dd41bb025fec783e6aed4b9d2dafd3f3f3.tar.gz
Need to clean before building, or 27m binaries go into the 27mu wheels.
Diffstat (limited to 'ci/manylinux.sh')
-rwxr-xr-xci/manylinux.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/manylinux.sh b/ci/manylinux.sh
index 98dc874..0cf6a5d 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 ~