diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-12-29 02:38:29 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-12-29 02:38:29 +0100 |
commit | 986bf5d41e64a4d430f1f4a3280b5cf3a267d170 (patch) | |
tree | ab4fdc4aa5e7338f996b3a45e12e348d5be92ad1 | |
parent | 2587a7a682034df07c0953a46c2569c6263b418a (diff) |
[pkg] pin soledad 0.9.1 on bitmask bundles
-rwxr-xr-x | pkg/build_bundle_with_venv.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkg/build_bundle_with_venv.sh b/pkg/build_bundle_with_venv.sh index 7734885..eae4034 100755 --- a/pkg/build_bundle_with_venv.sh +++ b/pkg/build_bundle_with_venv.sh @@ -9,10 +9,14 @@ source venv/bin/activate $VIRTUAL_ENV/bin/pip install -U pyinstaller==3.1 packaging $VIRTUAL_ENV/bin/pip install zope.interface zope.proxy +# For the Bitmask 0.9.4 bundles. +$VIRTUAL_ENV/bin/pip install -U leap.soledad.common==0.9.1 +$VIRTUAL_ENV/bin/pip install -U leap.soledad.client==0.9.1 + # CHANGE THIS IF YOU WANT A DIFFERENT BRANCH CHECKED OUT FOR COMMON/SOLEDAD -------------------- # (this is tracking shyba/feature/streaming_encrypter for the moment) -$VIRTUAL_ENV/bin/pip install -U leap.soledad.common --find-links https://devpi.net/kali/dev -$VIRTUAL_ENV/bin/pip install -U leap.soledad.client --find-links https://devpi.net/kali/dev +# $VIRTUAL_ENV/bin/pip install -U leap.soledad.common --find-links https://devpi.net/kali/dev +# $VIRTUAL_ENV/bin/pip install -U leap.soledad.client --find-links https://devpi.net/kali/dev # ---------------------------------------------------------------------------------------------- # XXX hack for the namespace package not being properly handled by pyinstaller |