Skip to content

Commit 9c67666

Browse files
committed
Merge branch 'master' of github.com:element-hq/synapse into develop
2 parents 03e873e + 8feb862 commit 9c67666

File tree

4 files changed

+40
-13
lines changed

4 files changed

+40
-13
lines changed

.github/workflows/release-artifacts.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,14 @@ jobs:
150150
- name: Build wheels
151151
run: python -m cibuildwheel --output-dir wheelhouse
152152
env:
153-
# Skip testing for platforms which various libraries don't have wheels
154-
# for, and so need extra build deps.
153+
# The platforms that we build for are determined by the
154+
# `tool.cibuildwheel.skip` option in `pyproject.toml`.
155+
156+
# We skip testing wheels for the following platforms in CI:
155157
#
156-
# cp39-*: Python 3.9 is EOL.
157-
# cp3??t-*: Free-threaded builds are not currently supported.
158-
CIBW_TEST_SKIP: pp3*-* cp39-* cp3??t-* *i686* *musl*
158+
# pp3*-* (PyPy wheels) broke in CI (TODO: investigate).
159+
# musl: (TODO: investigate).
160+
CIBW_TEST_SKIP: pp3*-* *musl*
159161

160162
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
161163
with:

CHANGES.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Synapse 1.142.0rc4 (2025-11-07)
1+
# Synapse 1.142.0 (2025-11-11)
22

33
## Dropped support for Python 3.9
44

@@ -29,6 +29,15 @@ of these wheels downstream, please reach out to us in
2929
[#synapse-dev:matrix.org](https://matrix.to/#/#synapse-dev:matrix.org). We'd
3030
love to hear from you!
3131

32+
## Internal Changes
33+
34+
- Properly stop building wheels for Python 3.9 and free-threaded CPython. ([\#19154](https://github.com/element-hq/synapse/issues/19154))
35+
36+
37+
38+
39+
# Synapse 1.142.0rc4 (2025-11-07)
40+
3241
## Bugfixes
3342

3443
- Fix a bug introduced in 1.142.0rc1 where any attempt to configure `matrix_authentication_service.secret_path` would prevent the homeserver from starting up. ([\#19144](https://github.com/element-hq/synapse/issues/19144))

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
matrix-synapse-py3 (1.142.0) stable; urgency=medium
2+
3+
* New Synapse release 1.142.0.
4+
5+
-- Synapse Packaging team <packages@matrix.org> Tue, 11 Nov 2025 09:45:51 +0000
6+
17
matrix-synapse-py3 (1.142.0~rc4) stable; urgency=medium
28

39
* New Synapse release 1.142.0rc4.

pyproject.toml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ module-name = "synapse.synapse_rust"
112112

113113
[tool.poetry]
114114
name = "matrix-synapse"
115-
version = "1.142.0rc4"
115+
version = "1.142.0"
116116
description = "Homeserver for the Matrix decentralised comms protocol"
117117
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
118118
license = "AGPL-3.0-or-later OR LicenseRef-Element-Commercial"
@@ -397,13 +397,23 @@ build-backend = "poetry.core.masonry.api"
397397

398398
[tool.cibuildwheel]
399399
# Skip unsupported platforms (by us or by Rust).
400-
# See https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip for the list of build targets.
400+
#
401+
# See https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip for the
402+
# list of supported build targets.
403+
#
404+
# Also see `.github/workflows/release-artifacts.yml` for the list of
405+
# architectures we build for (based on the runner OS types we use), as well as
406+
# the platforms we exclude from testing in CI.
407+
#
401408
# We skip:
402-
# - CPython 3.8: EOLed
403-
# - musllinux i686: excluded to reduce number of wheels we build.
404-
# c.f. https://github.com/matrix-org/synapse/pull/12595#discussion_r963107677
405-
skip = "cp38* *-musllinux_i686"
406-
# Enable non-default builds.
409+
# - free-threaded cpython builds: these are not currently supported.
410+
# - cp38: Python 3.8 is end-of-life.
411+
# - cp39: Python 3.9 is end-of-life.
412+
# - i686: We don't support 32-bit platforms.
413+
skip = "cp3??t-* cp38-* cp39-* *i686*"
414+
# Enable non-default builds. See the list of available options:
415+
# https://cibuildwheel.pypa.io/en/stable/options#enable
416+
#
407417
# "pypy" used to be included by default up until cibuildwheel 3.
408418
enable = "pypy"
409419

0 commit comments

Comments
 (0)