diff options
author | Kali Kaneko <kali@leap.se> | 2018-01-26 00:32:44 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-01-26 14:57:17 +0100 |
commit | 3888cc4a1a93b8756f21dd5de759a38ba8b53201 (patch) | |
tree | a8bb2db1e1bb823def5af6cf764c616831801386 | |
parent | 61de6e3caeec2569328e2242dee338984807e057 (diff) |
[pkg] use pyinstaller dev
-rwxr-xr-x | pkg/build_bundle_with_venv.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkg/build_bundle_with_venv.sh b/pkg/build_bundle_with_venv.sh index 3b6c55af..29479096 100755 --- a/pkg/build_bundle_with_venv.sh +++ b/pkg/build_bundle_with_venv.sh @@ -24,7 +24,9 @@ $VIRTUAL_ENV/bin/pip install appdirs packaging # qt-plugins instability in develop: see https://github.com/pyinstaller/pyinstaller/issues/1906 # $VIRTUAL_ENV/bin/pip install -U pyinstaller==3.2.1 # dev version -$VIRTUAL_ENV/bin/pip install -U git+https://github.com/pyinstaller/pyinstaller.git +# $VIRTUAL_ENV/bin/pip install -U git+https://github.com/pyinstaller/pyinstaller.git +# try bjones WIP Qt5 branch +$VIRTUAL_ENV/bin/pip install -U git+https://github.com/bjones1/pyinstaller.git@pyqt5_testing $VIRTUAL_ENV/bin/pip install zope.interface zope.proxy # fix for #8789 @@ -32,7 +34,7 @@ $VIRTUAL_ENV/bin/pip --no-cache-dir install pysqlcipher --install-option="--bund # FIXME pixelated needs some things but doesn't declare it $VIRTUAL_ENV/bin/pip install chardet # FIXME remove requests in pixelated fork, use treq instead -$VIRTUAL_ENV/bin/pip install requests==2.11.1 +#$VIRTUAL_ENV/bin/pip install requests==2.11.1 # Soledad version: for the Bitmask 0.10 bundles, let's pick published soledad. $VIRTUAL_ENV/bin/pip install -U leap.soledad |