From 3a65f800f75e11bd9c3a7db167644f9ebec444c1 Mon Sep 17 00:00:00 2001 From: Dan Callaghan Date: Sun, 18 Jul 2021 13:18:10 +1000 Subject: [PATCH] relax cryptography dependency version requirement In Fedora, python-cryptography does not bundle OpenSSL, so it's always up to date. This strict version requirement is not necessary. See: https://bugzilla.redhat.com/show_bug.cgi?id=1978949 --- synapse/python_dependencies.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index d844fbb3b3..277bd043a9 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -84,9 +84,7 @@ REQUIREMENTS = [ "Jinja2>=2.9", "bleach>=1.4.3", "typing-extensions>=3.7.4", - # We enforce that we have a `cryptography` version that bundles an `openssl` - # with the latest security patches. - "cryptography>=3.4.7", + "cryptography>=3.4", "ijson>=3.1", "matrix-common==1.0.0", ] -- 2.34.1