Browse Source
build: replace remaining "python setup.py install" with "pip install"
sqlite_db
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
2 changed files with
2 additions and
2 deletions
-
contrib/build-wine/build-electrum-git.sh
-
contrib/osx/make_osx
|
@ -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 |
|
|