mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
build: replace remaining "python setup.py install" with "pip install"
This commit is contained in:
parent
819c3b81e3
commit
add3b36f32
2 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ $PYTHON -m pip install -r ../../deterministic-build/requirements.txt
|
||||||
$PYTHON -m pip install -r ../../deterministic-build/requirements-hw.txt
|
$PYTHON -m pip install -r ../../deterministic-build/requirements-hw.txt
|
||||||
|
|
||||||
pushd $WINEPREFIX/drive_c/electrum
|
pushd $WINEPREFIX/drive_c/electrum
|
||||||
$PYTHON setup.py install
|
$PYTHON -m pip install .
|
||||||
popd
|
popd
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
|
@ -107,7 +107,7 @@ python3 -m pip install -Ir ./contrib/deterministic-build/requirements-hw.txt --u
|
||||||
fail "Could not install hardware wallet requirements"
|
fail "Could not install hardware wallet requirements"
|
||||||
|
|
||||||
info "Building $PACKAGE..."
|
info "Building $PACKAGE..."
|
||||||
python3 setup.py install --user > /dev/null || fail "Could not build $PACKAGE"
|
python3 -m pip install --user . > /dev/null || fail "Could not build $PACKAGE"
|
||||||
|
|
||||||
info "Faking timestamps..."
|
info "Faking timestamps..."
|
||||||
for d in ~/Library/Python/ ~/.pyenv .; do
|
for d in ~/Library/Python/ ~/.pyenv .; do
|
||||||
|
|
Loading…
Add table
Reference in a new issue