summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-09-06 12:53:15 +0100
committerRichard van der Hoff <richard@matrix.org>2018-09-06 12:53:15 +0100
commit625542878de2049a7a0b8381a75a77d09c931a82 (patch)
tree331f78d7552884b62f975ade2abc2ee5bedcacd8
parentMerge pull request #3790 from matrix-org/rav/respect_event_format_in_filter (diff)
downloadsynapse-625542878de2049a7a0b8381a75a77d09c931a82.tar.xz
bump dep on pyopenssl to 16.x
-rw-r--r--synapse/python_dependencies.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py
index 6dd5179320..0d8de600cf 100644
--- a/synapse/python_dependencies.py
+++ b/synapse/python_dependencies.py
@@ -42,8 +42,8 @@ REQUIREMENTS = {
     "Twisted>=17.1.0": ["twisted>=17.1.0"],
     "treq>=15.1": ["treq>=15.1"],
 
-    # We use crypto.get_elliptic_curve which is only supported in >=0.15
-    "pyopenssl>=0.15": ["OpenSSL>=0.15"],
+    # Twisted has required pyopenssl 16.0 since about Twisted 16.6.
+    "pyopenssl>=16.0.0": ["OpenSSL>=16.0.0"],
 
     "pyyaml": ["yaml"],
     "pyasn1": ["pyasn1"],