From 7386f19e3d75a81f21a9ee366be6f753acc392c2 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 5 Nov 2021 21:21:57 -0400 Subject: [PATCH] build: cp39 musllinux wheels don't work in some places. #1268 --- .github/workflows/kit.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index 8cb61270c..aa581d855 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -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: