From f5c3f95ca87f01b0922755583f2b9d5b1cb90491 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 13 Oct 2023 23:39:11 +0100 Subject: [PATCH] fix `list-pypi-files` CI task (#250) * fix list-pypi-files CI task * take 2 * take 3 --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13779b9..f4c3c3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -256,9 +256,10 @@ jobs: tree -a sdist-files - name: extract and list wheel file - run: | - ls dist/*cp37-abi3-manylinux*x86_64.whl | head -n 1 - python -m zipfile --list `ls dist/*cp37-abi3-manylinux*x86_64.whl | head -n 1` + run: ls dist/*cp312-manylinux_2_17_x86_64*.whl | head -n 1 + + - name: extract and list wheel file + run: python -m zipfile --list `ls dist/*cp312-manylinux_2_17_x86_64*.whl | head -n 1` - run: pip install twine - run: twine check dist/*