Skip to content

Commit

Permalink
build: cp39 musllinux wheels don't work in some places. #1268
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Nov 6, 2021
1 parent fe0c4be commit 7386f19
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/kit.yml
Expand Up @@ -74,6 +74,14 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
ls -al wheelhouse/
- name: "Remove unwanted wheels"
if: matrix.os == 'ubuntu-latest' and 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:
Expand Down

0 comments on commit 7386f19

Please sign in to comment.