Skip to content

Commit f5c3f95

Browse files
authored
fix list-pypi-files CI task (#250)
* fix list-pypi-files CI task * take 2 * take 3
1 parent 6ea19ca commit f5c3f95

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,10 @@ jobs:
256256
tree -a sdist-files
257257
258258
- name: extract and list wheel file
259-
run: |
260-
ls dist/*cp37-abi3-manylinux*x86_64.whl | head -n 1
261-
python -m zipfile --list `ls dist/*cp37-abi3-manylinux*x86_64.whl | head -n 1`
259+
run: ls dist/*cp312-manylinux_2_17_x86_64*.whl | head -n 1
260+
261+
- name: extract and list wheel file
262+
run: python -m zipfile --list `ls dist/*cp312-manylinux_2_17_x86_64*.whl | head -n 1`
262263

263264
- run: pip install twine
264265
- run: twine check dist/*

0 commit comments

Comments
 (0)