From 513d5f06e5545ad6f5b77a304395190bf55464b6 Mon Sep 17 00:00:00 2001 From: DjLegolas Date: Sat, 22 Jan 2022 13:50:15 +0200 Subject: [PATCH] [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. --- deluge/_libtorrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):