From a1eae81215af4aec7635f5928a7e045605f02c54 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Thu, 11 May 2023 12:27:29 +0100 Subject: [PATCH 1/2] Allow `pip install` to use setuptools_rust 1.6.0 This was bumped by dependabot in #15512, but we didn't bump also raise the version guard here. I don't know how we can avoid this happening in the future. Closes #15461. Spotted in [1] by @landryb. [1]: https://github.com/matrix-org/synapse/issues/15461#issuecomment-1543513934 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 684f65b4a0db..3abf3fdf5841 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -368,7 +368,7 @@ furo = ">=2022.12.7,<2024.0.0" # system changes. # We are happy to raise these upper bounds upon request, # provided we check that it's safe to do so (i.e. that CI passes). -requires = ["poetry-core>=1.0.0,<=1.5.0", "setuptools_rust>=1.3,<=1.5.2"] +requires = ["poetry-core>=1.0.0,<=1.5.0", "setuptools_rust>=1.3,<=1.6.0"] build-backend = "poetry.core.masonry.api" From 9ab015b9022db2f3cdd723c594d8457621084aa3 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Thu, 11 May 2023 12:30:52 +0100 Subject: [PATCH 2/2] Changelog --- changelog.d/15570.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/15570.misc diff --git a/changelog.d/15570.misc b/changelog.d/15570.misc new file mode 100644 index 000000000000..ee045099816d --- /dev/null +++ b/changelog.d/15570.misc @@ -0,0 +1 @@ +Allow `pip install` to use setuptools_rust 1.6.0 when building Synapse.