We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe0c4be commit 7386f19Copy full SHA for 7386f19
.github/workflows/kit.yml
@@ -74,6 +74,14 @@ jobs:
74
python -m cibuildwheel --output-dir wheelhouse
75
ls -al wheelhouse/
76
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
+
85
- name: "Upload wheels"
86
uses: actions/upload-artifact@v2
87
with:
0 commit comments