diff options
author | Andrej Shadura <andrew.shadura@collabora.co.uk> | 2019-01-16 09:44:22 +0100 |
---|---|---|
committer | Andrej Shadura <andrew.shadura@collabora.co.uk> | 2019-01-16 10:54:41 +0100 |
commit | 64cf6788d91dbd2a1a3b3613881e9c5609dc10af (patch) | |
tree | 23a78b33d005dff2c29f4eee61acd4d1766d4c54 /synapse | |
parent | Use msgpack instead of msgpack-python (diff) | |
download | synapse-64cf6788d91dbd2a1a3b3613881e9c5609dc10af.tar.xz |
Depend on pymacaroons >= 0.13.0 instead on pymacaroons-pynacl
Since 0.13.0, pymacaroons works correctly with pynacl, so there isn’t any more reason to depend on an outdated pynacl fork. Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
Diffstat (limited to 'synapse')
-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 c7dd4917d8..2fe790f95d 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -52,7 +52,7 @@ REQUIREMENTS = [ "pillow>=3.1.2", "sortedcontainers>=1.4.4", "psutil>=2.0.0", - "pymacaroons-pynacl>=0.9.3", + "pymacaroons>=0.13.0", "msgpack>=0.5.0", "phonenumbers>=8.2.0", "six>=1.10", |