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