diff options
author | David Robertson <davidr@element.io> | 2023-05-12 11:21:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 11:21:11 +0100 |
commit | c96a1d2a27e3fe84b2648d375317cba38bc4654b (patch) | |
tree | c2b036cfc463e4df15be733451fcebcc12f84196 /pyproject.toml | |
parent | Add pkg-config package to Stage 0 (#15567) (diff) | |
download | synapse-c96a1d2a27e3fe84b2648d375317cba38bc4654b.tar.xz |
Relax poetry-core lower bound to 1.1.0 (#15571)
See https://github.com/matrix-org/synapse/pull/15566#issuecomment-1543844104 Also check you can `pip install` in the old-deps CI job
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 6bbc914af6..16b5d9bc3b 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.2.0,<=1.5.0", "setuptools_rust>=1.3,<=1.6.0"] +requires = ["poetry-core>=1.1.0,<=1.5.0", "setuptools_rust>=1.3,<=1.6.0"] build-backend = "poetry.core.masonry.api" |