forked from LBRYCommunity/lbry-sdk
Fix python and pip3 not available in xcode8
This commit is contained in:
parent
f7c7cb9535
commit
2693301ad0
1 changed files with 10 additions and 8 deletions
18
.travis.yml
18
.travis.yml
|
@ -90,17 +90,19 @@ jobs:
|
||||||
language: generic
|
language: generic
|
||||||
env: OS=mac
|
env: OS=mac
|
||||||
cache: false
|
cache: false
|
||||||
install:
|
before_install:
|
||||||
#- brew update
|
- brew update
|
||||||
- brew upgrade python
|
- brew upgrade python
|
||||||
- python --version
|
- brew postinstall python
|
||||||
- pip --version
|
install:
|
||||||
- pip install pyinstaller
|
- python3 --version
|
||||||
|
- pip3 --version
|
||||||
|
- pip3 install pyinstaller
|
||||||
- git clone https://github.com/lbryio/torba.git --depth 1
|
- git clone https://github.com/lbryio/torba.git --depth 1
|
||||||
- sed -i -e "s/'plyvel',//" torba/setup.py
|
- sed -i -e "s/'plyvel',//" torba/setup.py
|
||||||
- cd torba && pip install -e . && cd ..
|
- cd torba && pip3 install -e . && cd ..
|
||||||
- python scripts/set_build.py
|
- python3 scripts/set_build.py
|
||||||
- pip install -e .
|
- pip3 install -e .
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|
Loading…
Add table
Reference in a new issue