diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2022-03-24 17:16:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 17:16:13 +0000 |
commit | 8810c93e828a9ed1dcb008d08be8aa9fcb4d28c3 (patch) | |
tree | 37b629af1cc68d95c94b3ed68e34ac8682d131f1 /synapse/python_dependencies.py | |
parent | Changelog: sso -> Single Sign-On (diff) | |
download | synapse-8810c93e828a9ed1dcb008d08be8aa9fcb4d28c3.tar.xz |
Replace instances of deprecated `Jinja2.Markup` with `markupsafe.Markup` (#12289)
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r-- | synapse/python_dependencies.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 1dd39f06cf..232f9a9595 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -75,6 +75,7 @@ REQUIREMENTS = [ "attrs>=19.2.0,!=21.1.0", "netaddr>=0.7.18", "Jinja2>=2.9", + "MarkupSafe>=2.0", "bleach>=1.4.3", # We use `ParamSpec`, which was added in `typing-extensions` 3.10.0.0. "typing-extensions>=3.10.0", |