diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-15 19:34:57 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-30 16:18:02 -0400 |
commit | 8d1ff2f0e4ec1ce86051bbe7121dbb9e1ca00de7 (patch) | |
tree | 0e40ba5f99d42e821e4ecbdd914812d7817e43d1 /Makefile | |
parent | 38871c56726b32126c7838ff8e4dbf1222082a15 (diff) |
[docs] add ability to upgrade an existing virtualenv
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
@@ -8,24 +8,28 @@ dev-bootstrap: pkg/tools/bitmask-bootstrap.sh dev-mail: - pip install -e '.[mail]' + pip install -U -e '.[mail]' dev-gui: install_pixelated - pip install -e '.[gui]' -dev-backend: - pip install -e '.[backend]' + pip install -U -e '.[gui]' -dev-latest-backend: dev-backend - pip install -e 'git+https://0xacab.org/leap/leap_pycommon@master#egg=leap.common' - pip install -e 'git+https://0xacab.org/leap/soledad@master#egg=leap.soledad' +dev-backend: + pip install -U -e '.[backend]' dev-all: install_pixelated pip install -I --install-option="--bundled" pysqlcipher - pip install -e '.[all]' + pip install -U -e '.[all]' + +dev-latest-leap: + pip install -U -e 'git+https://0xacab.org/leap/leap_pycommon@master#egg=leap.common' + pip install -U -e 'git+https://0xacab.org/leap/soledad@master#egg=leap.soledad' + +dev-latest-backend: dev-backend dev-latest-leap + +dev-latest-all: dev-all dev-latest-leap -dev-latest-all: dev-all - pip install -e 'git+https://0xacab.org/leap/leap_pycommon@master#egg=leap.common' - pip install -e 'git+https://0xacab.org/leap/soledad@master#egg=leap.soledad' +upgrade-all: + python pkg/tools/upgrade_all.py uninstall: pip uninstall leap.bitmask @@ -38,7 +42,7 @@ test_e2e: tests/e2e/e2e-test-vpn.sh test_functional_setup: - pip install behave selenium + pip install -U behave selenium test_functional: xvfb-run --server-args="-screen 0 1280x1024x24" behave --tags ~@wip --tags @smoke tests/functional/features -k -D host=localhost |