From 8da8d4b4f59a246d85a7623f227fc9a1fbbf65fe Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Fri, 14 Nov 2025 11:38:39 +0000 Subject: [PATCH] Remove explicit python 3.8/9 skips (#19177) Co-authored-by: Devon Hudson --- changelog.d/19177.misc | 1 + pyproject.toml | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 changelog.d/19177.misc diff --git a/changelog.d/19177.misc b/changelog.d/19177.misc new file mode 100644 index 000000000..d9e2785cc --- /dev/null +++ b/changelog.d/19177.misc @@ -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). \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c8c2cfc68..a0ef6f6fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 #