Skip to content

Commit 8f26010

Browse files
committed
make libtorrent a normal dependency
1 parent 3021962 commit 8f26010

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
1919
restore-keys: ${{ runner.os }}-pip-
2020
- run: pip install --user --upgrade pip wheel
21-
- run: pip install -e .[torrent,lint]
21+
- run: pip install -e .[lint]
2222
- run: make lint
2323

2424
tests-unit:
@@ -50,7 +50,7 @@ jobs:
5050
string: ${{ runner.os }}
5151
- run: python -m pip install --user --upgrade pip wheel
5252
- if: startsWith(runner.os, 'linux')
53-
run: pip install -e .[torrent,test]
53+
run: pip install -e .[test]
5454
- if: startsWith(runner.os, 'linux')
5555
env:
5656
HOME: /tmp

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
'coincurve==15.0.0',
4747
'pbkdf2==1.3',
4848
'filetype==1.0.9',
49+
'libtorrent==2.0.6',
4950
],
5051
extras_require={
51-
'torrent': ['lbry-libtorrent'],
5252
'lint': [
5353
'pylint==2.10.0'
5454
],

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ deps =
55
extras =
66
test
77
hub
8-
torrent
98
changedir = {toxinidir}/tests
109
setenv =
1110
HOME=/tmp

0 commit comments

Comments
 (0)