1
0

wine build: pin build dependencies

"pip install pyinstaller" was "silently" grabbing unpinned dependencies
This commit is contained in:
SomberNight
2019-08-09 19:05:32 +02:00
parent d4e16001bb
commit c8e2653690
5 changed files with 32 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ $PYTHON -m pip install --no-warn-script-location -r "$CONTRIB"/deterministic-bui
pushd $WINEPREFIX/drive_c/electrum
# see https://github.com/pypa/pip/issues/2195 -- pip makes a copy of the entire directory
info "Pip installing Electrum. This might take a long time if the project folder is large."
$PYTHON -m pip install --no-warn-script-location .
$PYTHON -m pip install --no-dependencies --no-warn-script-location .
popd