Skip to content

Commit f3297cd

Browse files
authored
Merge pull request #350 from zopefoundation/config-with-c-code-template-2921ca42
Config with c code template 2921ca42
2 parents bfad043 + 972fffd commit f3297cd

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
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>`_)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from setuptools.command.build_ext import build_ext
3131

3232

33-
version = '8.2.dev0'
33+
version = '8.1.1.a1'
3434

3535

3636
class optional_build_ext(build_ext):

0 commit comments

Comments
 (0)