summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-05 21:21:57 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-11-05 21:32:21 -0400
commitd538c5596b83fa3ae1a525154c19e3cb082492ad (patch)
tree9ecb5ad591581142d6b30be69fe3586da346c77b
parentfe0c4beea3728fff51343b257d070f72a0ddccd8 (diff)
downloadpython-coveragepy-git-d538c5596b83fa3ae1a525154c19e3cb082492ad.tar.gz
build: cp39 musllinux wheels don't work in some places. #1268
-rw-r--r--.github/workflows/kit.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index 8cb61270..81f33512 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -74,6 +74,13 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
ls -al wheelhouse/
+ - name: "Remove unwanted wheels"
+ if: matrix.os == 'ubuntu-latest' && matrix.cibw_build == 'cp39'
+ run: |
+ # Python 3.9 musllinux wheels don't work in some places, so delete them.
+ # https://github.com/nedbat/coveragepy/issues/1268
+ rm -f wheelhouse/*-cp39-musllinux*.whl
+
- name: "Upload wheels"
uses: actions/upload-artifact@v2
with: