Skip to content

Commit f2fd0e7

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

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/kit.yml

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

0 commit comments

Comments
 (0)