mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
Change libtorrent minimum dependency to 1.1.1
* Change PPA to develop for Travis to use libtorrent 1.1
This commit is contained in:
parent
706d53ab4a
commit
3ca012ee63
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
2
DEPENDS
2
DEPENDS
|
@ -1,5 +1,5 @@
|
|||
=== Core ===
|
||||
* libtorrent (rasterbar) >= 1.0.7
|
||||
* libtorrent (rasterbar) >= 1.1.1
|
||||
* python >= 2.6
|
||||
* setuptools
|
||||
* twisted >= 11.1
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue