mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-10-02 16:20:33 +00:00
require torba 0.5.3
This commit is contained in:
parent
bb1f42057e
commit
7d8d9d1619
3 changed files with 13 additions and 8 deletions
13
.travis.yml
13
.travis.yml
|
@ -10,7 +10,7 @@ jobs:
|
||||||
name: "pylint lbrynet"
|
name: "pylint lbrynet"
|
||||||
install:
|
install:
|
||||||
- pip install astroid pylint
|
- pip install astroid pylint
|
||||||
- pip install git+https://github.com/lbryio/torba.git#egg=torba
|
- pip install git+https://github.com/lbryio/torba.git#2626a28
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
script: pylint lbrynet
|
script: pylint lbrynet
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ jobs:
|
||||||
name: "Unit Tests"
|
name: "Unit Tests"
|
||||||
install:
|
install:
|
||||||
- pip install coverage
|
- pip install coverage
|
||||||
- pip install git+https://github.com/lbryio/torba.git#egg=torba
|
- pip install git+https://github.com/lbryio/torba.git#2626a28
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
script:
|
script:
|
||||||
- HOME=/tmp coverage run -p --source=lbrynet -m unittest discover -vv tests.unit
|
- HOME=/tmp coverage run -p --source=lbrynet -m unittest discover -vv tests.unit
|
||||||
|
@ -29,7 +29,10 @@ jobs:
|
||||||
- name: "Integration Tests"
|
- name: "Integration Tests"
|
||||||
install:
|
install:
|
||||||
- pip install tox-travis coverage
|
- pip install tox-travis coverage
|
||||||
- pushd .. && git clone https://github.com/lbryio/torba.git && popd
|
- pushd ..
|
||||||
|
- git clone https://github.com/lbryio/torba.git
|
||||||
|
- git checkout 2626a28
|
||||||
|
- popd
|
||||||
script: tox
|
script: tox
|
||||||
after_success:
|
after_success:
|
||||||
- coverage combine tests/
|
- coverage combine tests/
|
||||||
|
@ -38,7 +41,7 @@ jobs:
|
||||||
- name: "Run Examples"
|
- name: "Run Examples"
|
||||||
install:
|
install:
|
||||||
- pip install coverage
|
- pip install coverage
|
||||||
- pip install git+https://github.com/lbryio/torba.git#egg=torba
|
- pip install git+https://github.com/lbryio/torba.git#2626a28
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
script:
|
script:
|
||||||
- HOME=/tmp coverage run -p --source=lbrynet scripts/generate_json_api.py
|
- HOME=/tmp coverage run -p --source=lbrynet scripts/generate_json_api.py
|
||||||
|
@ -79,7 +82,7 @@ jobs:
|
||||||
env: OS=linux
|
env: OS=linux
|
||||||
install:
|
install:
|
||||||
- pip3 install pyinstaller
|
- pip3 install pyinstaller
|
||||||
- pip3 install git+https://github.com/lbryio/torba.git
|
- pip3 install git+https://github.com/lbryio/torba.git#2626a28
|
||||||
- python3 scripts/set_build.py
|
- python3 scripts/set_build.py
|
||||||
- pip3 install -e .
|
- pip3 install -e .
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -6,8 +6,10 @@ apt-get -qq update
|
||||||
apt-get -qq install -y git
|
apt-get -qq install -y git
|
||||||
|
|
||||||
pip install setuptools_scm
|
pip install setuptools_scm
|
||||||
git clone https://github.com/lbryio/torba.git --depth 1
|
git clone https://github.com/lbryio/torba.git --depth 20
|
||||||
cd torba && pip install -e . && cd ..
|
cd torba
|
||||||
|
git checkout 2626a28e6
|
||||||
|
pip install -e . && cd ..
|
||||||
|
|
||||||
cd lbry
|
cd lbry
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -23,7 +23,7 @@ setup(
|
||||||
'console_scripts': 'lbrynet=lbrynet.extras.cli:main'
|
'console_scripts': 'lbrynet=lbrynet.extras.cli:main'
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'torba',
|
'torba==0.5.3',
|
||||||
'aiohttp==3.5.4',
|
'aiohttp==3.5.4',
|
||||||
'aioupnp',
|
'aioupnp',
|
||||||
'appdirs==1.4.3',
|
'appdirs==1.4.3',
|
||||||
|
|
Loading…
Add table
Reference in a new issue