Skip to content

Commit d538c55

Browse files
committed
build: cp39 musllinux wheels don't work in some places. #1268
1 parent fe0c4be commit d538c55

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/kit.yml

+7
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ jobs:
7474
python -m cibuildwheel --output-dir wheelhouse
7575
ls -al wheelhouse/
7676
77+
- name: "Remove unwanted wheels"
78+
if: matrix.os == 'ubuntu-latest' && matrix.cibw_build == 'cp39'
79+
run: |
80+
# Python 3.9 musllinux wheels don't work in some places, so delete them.
81+
# https://github.com/nedbat/coveragepy/issues/1268
82+
rm -f wheelhouse/*-cp39-musllinux*.whl
83+
7784
- name: "Upload wheels"
7885
uses: actions/upload-artifact@v2
7986
with:

0 commit comments

Comments
 (0)