diff options
author | David Robertson <davidr@element.io> | 2022-10-18 13:59:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 13:59:04 +0100 |
commit | 8e50299d8b112364b011ca8f89bc19a97e9622ec (patch) | |
tree | 74d809ad8e60f308cbe169ac8e85c46d938ad6bf /changelog.d | |
parent | Deal with some GHA deprecation warnings (#14216) (diff) | |
download | synapse-8e50299d8b112364b011ca8f89bc19a97e9622ec.tar.xz |
Fix `track_memory_usage` on poetry-core 1.3.x installations (#14221)
* Fix `track_memory_usage` on poetry-core 1.3.x installations The same kind of problem as discussed in #14085: 1. we defined an extra with an underscore 2. we look it up at runtime with an underscore 3. but poetry-core 1.3.x. installs it with a dash, causing (2) to fail. Fix by using a dash everywhere. * Changelog
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/14221.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/14221.misc b/changelog.d/14221.misc new file mode 100644 index 0000000000..fe7afac245 --- /dev/null +++ b/changelog.d/14221.misc @@ -0,0 +1 @@ +Rename the `cache_memory` extra to `cache-memory`, for compatability with poetry-core 1.3.0 and [PEP 685](https://peps.python.org/pep-0685/). From-source installations using this extra will need to install using the new name. |