diff options
author | David Robertson <davidr@element.io> | 2022-05-07 13:40:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-07 13:40:58 +0100 |
commit | 0ce2201932488e98cab8a7d81788e5bcf8f8dd5e (patch) | |
tree | 8f0e3a94138ba808eeceb933448406ed58095c52 /pyproject.toml | |
parent | Convert stringy power levels to integers on room upgrade (#12657) (diff) | |
download | synapse-0ce2201932488e98cab8a7d81788e5bcf8f8dd5e.tar.xz |
Move `pympler` back into the `all` extras (#12652)
* Move `pympler` back into the `all` extras Undoes a change I made in #12381. I can't fully remember my reasoning, but this changed the contents of the debian packages in a backwards incompatible way. We're not aware of anyone who's been bitten by this, but we still want to fix it. To the reviewer: please be convinced that the debian packages will still contain pympler after this change. * Debian changelog entry to keep the linter happy
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 877f19708d..7348230fba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -231,10 +231,11 @@ all = [ "jaeger-client", "opentracing", # jwt "pyjwt", - #redis - "txredisapi", "hiredis" + # redis + "txredisapi", "hiredis", + # cache_memory + "pympler", # omitted: - # - cache_memory: this is an experimental option # - test: it's useful to have this separate from dev deps in the olddeps job # - systemd: this is a system-based requirement ] |