summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDjLegolas <djlegolas@protonmail.com>2022-01-22 13:50:15 +0200
committerCalum Lind <calumlind+deluge@gmail.com>2022-02-13 11:32:30 +0000
commit513d5f06e5545ad6f5b77a304395190bf55464b6 (patch)
tree08c6e830ab92329a347277dcecae47866822991c
parenta1da2058bc830ff318c6cce6d453178c478bb20c (diff)
downloaddeluge-513d5f06e5545ad6f5b77a304395190bf55464b6.tar.gz
deluge-513d5f06e5545ad6f5b77a304395190bf55464b6.tar.bz2
deluge-513d5f06e5545ad6f5b77a304395190bf55464b6.zip
[lt] Upgraded libtorrent minimum version to 1.2
As part of the preparations for libtorrent 2.0, we should stop supporting lower versions of it.
-rw-r--r--deluge/_libtorrent.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/_libtorrent.py b/deluge/_libtorrent.py
index 7130d7efd..642855c52 100644
--- a/deluge/_libtorrent.py
+++ b/deluge/_libtorrent.py
@@ -26,7 +26,7 @@ except ImportError:
raise LibtorrentImportError('No libtorrent library found: %s' % (ex))
-REQUIRED_VERSION = '1.1.2.0'
+REQUIRED_VERSION = '1.2.0.0'
LT_VERSION = lt.__version__
if VersionSplit(LT_VERSION) < VersionSplit(REQUIRED_VERSION):