Change libtorrent minimum dependency to 1.1.1

* Change PPA to develop for Travis to use libtorrent 1.1
This commit is contained in:
Calum Lind 2016-12-01 19:27:07 +00:00
parent 706d53ab4a
commit 3ca012ee63
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ cache: pip
before_install:
- lsb_release -a
- sudo add-apt-repository ppa:deluge-team/ppa -y
- sudo add-apt-repository ppa:deluge-team/develop -y
- sudo apt-get update
# command to install dependencies

View File

@ -1,5 +1,5 @@
=== Core ===
* libtorrent (rasterbar) >= 1.0.7
* libtorrent (rasterbar) >= 1.1.1
* python >= 2.6
* setuptools
* twisted >= 11.1

View File

@ -23,7 +23,7 @@ try:
except ImportError:
import libtorrent as lt
REQUIRED_VERSION = '1.0.7.0'
REQUIRED_VERSION = '1.1.1.0'
if VersionSplit(lt.__version__) < VersionSplit(REQUIRED_VERSION):
raise ImportError('Deluge %s requires libtorrent >= %s' % (get_version(), REQUIRED_VERSION))