summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2019-05-17 09:52:06 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2019-05-17 10:08:48 +0100
commitfd20addead83fce11c23a607011639c882f862b0 (patch)
tree2f425390a3ef0911b28f2f832db85c108ac02a06
parent535b13b5f1b7b7d3d104da14c4cb2a4a9502bfe0 (diff)
downloaddeluge-fd20addead83fce11c23a607011639c882f862b0.tar.gz
deluge-fd20addead83fce11c23a607011639c882f862b0.tar.bz2
deluge-fd20addead83fce11c23a607011639c882f862b0.zip
Raise Twisted minimum version to 17.1
The use of CertificateOptions with raiseMinimumTo requires this new minimum version so update requirements and documents.
-rw-r--r--DEPENDS.md2
-rw-r--r--requirements.txt2
-rwxr-xr-xsetup.py2
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',