build: replace remaining "python setup.py install" with "pip install"
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user