From fd20addead83fce11c23a607011639c882f862b0 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Fri, 17 May 2019 09:52:06 +0100 Subject: [PATCH] Raise Twisted minimum version to 17.1 The use of CertificateOptions with raiseMinimumTo requires this new minimum version so update requirements and documents. --- DEPENDS.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DEPENDS.md b/DEPENDS.md index 4b5e92a43..057f14f8e 100644 --- a/DEPENDS.md +++ b/DEPENDS.md @@ -17,7 +17,7 @@ All modules will require the [common](#common) section dependencies. ## Common -- [Twisted] _>= 16.6_ - Use `TLS` extras for `service_identity` and `idna`. +- [Twisted] _>= 17.1_ - Use `TLS` extras for `service_identity` and `idna`. - [OpenSSL] _>= 1.0.1_ - [pyOpenSSL] - [rencode] _>= 1.0.2_ - Encoding library. diff --git a/requirements.txt b/requirements.txt index dcbdfb869..aa52595f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -twisted[tls]>=16.6 +twisted[tls]>=17.1 rencode pyopenssl pyxdg diff --git a/setup.py b/setup.py index 8e2d08710..12b85f6f5 100755 --- a/setup.py +++ b/setup.py @@ -535,7 +535,7 @@ _package_data['deluge.ui.gtk3'] = ['glade/*.ui'] setup_requires = ['setuptools', 'wheel'] install_requires = [ - 'twisted[tls]>=16.6', + 'twisted[tls]>=17.1', # Add pyasn1 for setuptools workaround: # https://github.com/pypa/setuptools/issues/1510 'pyasn1',