diff options
author | Erik Johnston <erik@matrix.org> | 2022-09-02 15:20:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 13:20:03 +0000 |
commit | 4fee4a339d3bb1a90487a86ccbcca50a36b0ea74 (patch) | |
tree | 45ed05cbab8df78f2400d5912e73b3bc93454141 /docs/development/dependencies.md | |
parent | Only run trial CI on all python versions on non-PRs (#13698) (diff) | |
download | synapse-4fee4a339d3bb1a90487a86ccbcca50a36b0ea74.tar.xz |
Update lock file for Poetry v1.2.0 (#13689)
Diffstat (limited to 'docs/development/dependencies.md')
-rw-r--r-- | docs/development/dependencies.md | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/docs/development/dependencies.md b/docs/development/dependencies.md index 236856a6b0..b356870f27 100644 --- a/docs/development/dependencies.md +++ b/docs/development/dependencies.md @@ -243,14 +243,11 @@ doesn't require poetry. (It's what we use in CI too). However, you could try ## Check the version of poetry with `poetry --version`. -At the time of writing, the 1.2 series is beta only. We have seen some examples -where the lockfiles generated by 1.2 prereleasese aren't interpreted correctly -by poetry 1.1.x. For now, use poetry 1.1.14, which includes a critical -[change](https://github.com/python-poetry/poetry/pull/5973) needed to remain -[compatible with PyPI](https://github.com/pypi/warehouse/pull/11775). +The minimum version of poetry supported by Synapse is 1.2. It can also be useful to check the version of `poetry-core` in use. If you've -installed `poetry` with `pipx`, try `pipx runpip poetry list | grep poetry-core`. +installed `poetry` with `pipx`, try `pipx runpip poetry list | grep +poetry-core`. ## Clear caches: `poetry cache clear --all pypi`. |