File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -612,15 +612,16 @@ jobs:
612612 echo "Total wheel files:"
613613 find dist/ -name "*.whl" | wc -l
614614
615- - name : Remove PyPy wheels (if any were downloaded)
615+ - name : Remove undesired wheels (if any were downloaded)
616616 run : |
617617 # PyPy wheels shouldn't be uploaded, remove them if present
618618 find dist/ -name "*pypy*" -type f -delete || true
619-
620- - name : Remove wheels for future Python (if any were downloaded)
621- run : |
619+ find dist/ -name "*none-any*" -type f -delete || true
622620 # Wheels for the no-yet-supported future Python version need to go
623621 find dist/ -name "*3.15*" -type f -delete || true
622+ find dist/ -name "*cp315*" -type f -delete || true
623+ # For Linux, we only want the manylinux wheels
624+ find dist/ -name "*linux_x86_64*" -type f -delete || true
624625
625626 - name : Publish to PyPI
626627 uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 22 Changes
33=========
44
5- 8.2 (unreleased)
6- ================
5+ 8.1.1 (unreleased)
6+ ==================
77
88- Fix the GitHub workflow for publishing wheels, which failed for Linux/arm64.
99 (`#348 <https://github.com/zopefoundation/zope.interface/issues/348 >`_)
Original file line number Diff line number Diff line change 3030from setuptools .command .build_ext import build_ext
3131
3232
33- version = '8.2.dev0 '
33+ version = '8.1.1.a1 '
3434
3535
3636class optional_build_ext (build_ext ):
You can’t perform that action at this time.
0 commit comments