From e1da8084c75f132e5f341e6b5b09dc686c80d360 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Mon, 2 Dec 2024 15:31:17 +0000 Subject: [PATCH] disable twine for now --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 087fc9c..d50474b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -331,7 +331,9 @@ jobs: - run: | pip install -U twine - twine check --strict crates/jiter-python/dist/* + # FIXME: restore `twine` check when metadata version 2.4 (used by `maturin`) supported by `twine`, + # see https://github.com/pypa/twine/pull/1180 + # twine check --strict crates/jiter-python/dist/* - uses: actions/upload-artifact@v4 with: @@ -563,7 +565,9 @@ jobs: - run: pip install -U twine - run: ls -l dist/ - - run: twine check --strict dist/* + # FIXME: restore `twine` check when metadata version 2.4 (used by `maturin`) supported by `twine` + # see https://github.com/pypa/twine/pull/1180 + # - run: twine check --strict dist/* - name: upload to pypi uses: pypa/gh-action-pypi-publish@release/v1