diff options
author | David Robertson <davidr@element.io> | 2022-02-14 13:12:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 13:12:22 +0000 |
commit | 4ae956c8bb3d0f9a352934238b4d2a9c48307efb (patch) | |
tree | d568632d9adfd7b240aa745ebda824f070bd76ea /synapse/python_dependencies.py | |
parent | Notify users, rather than rooms, of device list updates (#11905) (diff) | |
download | synapse-4ae956c8bb3d0f9a352934238b4d2a9c48307efb.tar.xz |
Use version string helper from matrix-common (#11979)
* Require latest matrix-common * Use the common function
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r-- | synapse/python_dependencies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 22b4606ae0..4f99096df3 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -88,7 +88,7 @@ REQUIREMENTS = [ # with the latest security patches. "cryptography>=3.4.7", "ijson>=3.1", - "matrix-common==1.0.0", + "matrix-common~=1.1.0", ] CONDITIONAL_REQUIREMENTS = { |