From 8f32880d08d5967963ab9bb3103692e770bf6059 Mon Sep 17 00:00:00 2001 From: Pratyush Sharma <56130065+pratyush618@users.noreply.github.com> Date: Thu, 11 Jun 2026 09:49:41 +0530 Subject: [PATCH] fix(ci): drop twine check --strict for PEP 639 compat --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7b1ccff7..0b2c8183 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -263,11 +263,11 @@ jobs: - name: Validate wheels run: | - pip install twine + pip install "twine>=6.1" for whl in dist/*.whl; do unzip -qt "$whl" done - twine check --strict dist/* + twine check dist/* - name: Check PyPI for existing version id: pypi-check