diff options
author | Oliver Kurz <okurz@suse.de> | 2017-11-20 11:11:53 +0100 |
---|---|---|
committer | Oliver Kurz <okurz@suse.de> | 2017-11-20 11:14:39 +0100 |
commit | 83d8d4d8cd699d9596e25c6167dad130f3df9ac3 (patch) | |
tree | 997625a735646283f0bee02def8bff0b49f4234e /synapse/python_dependencies.py | |
parent | don't double-invite in sync_room_to_group.pl (diff) | |
download | synapse-83d8d4d8cd699d9596e25c6167dad130f3df9ac3.tar.xz |
Allow use of higher versions of saml2
The package was pinned to <4.0 with 07cf96eb because "from saml2 import config" did not work. This seems to have been fixed in the mean time in the saml2 package and therefore should not stop to use a more recent version. Signed-off-by: Oliver Kurz <okurz@suse.de>
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 7052333c19..97b631e60d 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -36,7 +36,7 @@ REQUIREMENTS = { "pydenticon": ["pydenticon"], "ujson": ["ujson"], "blist": ["blist"], - "pysaml2>=3.0.0,<4.0.0": ["saml2>=3.0.0,<4.0.0"], + "pysaml2>=3.0.0": ["saml2>=3.0.0"], "pymacaroons-pynacl": ["pymacaroons"], "msgpack-python>=0.3.0": ["msgpack"], "phonenumbers>=8.2.0": ["phonenumbers"], |