Remove explicit python 3.8/9 skips (#19177)

Co-authored-by: Devon Hudson <devon.dmytro@gmail.com>
This commit is contained in:
Andrew Morgan 2025-11-14 11:38:39 +00:00 committed by GitHub
parent 408a05ebbc
commit 8da8d4b4f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

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

@ -0,0 +1 @@
Remove explicit python version skips in `cibuildwheel` config as it's no longer required after [#19137](https://github.com/element-hq/synapse/pull/19137).

View File

@ -392,10 +392,8 @@ build-backend = "poetry.core.masonry.api"
#
# We skip:
# - free-threaded cpython builds: these are not currently supported.
# - cp38: Python 3.8 is end-of-life.
# - cp39: Python 3.9 is end-of-life.
# - i686: We don't support 32-bit platforms.
skip = "cp3??t-* cp38-* cp39-* *i686*"
skip = "cp3??t-* *i686*"
# Enable non-default builds. See the list of available options:
# https://cibuildwheel.pypa.io/en/stable/options#enable
#