Remove cibuildwheel pp38* skip selector (#19085)

This commit is contained in:
Andrew Morgan 2025-10-24 11:39:29 +02:00 committed by GitHub
parent 72d0de9f30
commit 45a042ae88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

1
changelog.d/19085.misc Normal file
View File

@ -0,0 +1 @@
Remove `pp38*` skip selector from cibuildwheel to silence warning.

View File

@ -387,10 +387,10 @@ build-backend = "poetry.core.masonry.api"
# Skip unsupported platforms (by us or by Rust).
# See https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip for the list of build targets.
# We skip:
# - CPython and PyPy 3.8: EOLed
# - CPython 3.8: EOLed
# - musllinux i686: excluded to reduce number of wheels we build.
# c.f. https://github.com/matrix-org/synapse/pull/12595#discussion_r963107677
skip = "cp38* pp38* *-musllinux_i686"
skip = "cp38* *-musllinux_i686"
# Enable non-default builds.
# "pypy" used to be included by default up until cibuildwheel 3.
enable = "pypy"