From 9186709da9fa82d9875ce0b59bd1f57166692ead Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Thu, 11 Jun 2026 11:50:29 +0530 Subject: [PATCH] fix(ci): ignore W009/W010 in check-wheel-contents MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit auditwheel bundles shared libs into taskito.libs/ for musllinux wheels — expected, not a packaging error. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 761e9279..22b327e7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -227,7 +227,7 @@ jobs: for whl in dist/*.whl; do unzip -qt "$whl" done - check-wheel-contents dist/*.whl + check-wheel-contents --ignore W009,W010 dist/*.whl - name: Check PyPI for existing version id: pypi-check