Update package references after subdirs rename.

This commit is contained in:
Jakub Warmuz
2015-07-11 04:33:07 +00:00
parent 120a94f84f
commit a462e38cab
4 changed files with 8 additions and 8 deletions
Vendored
+1 -1
View File
@@ -10,7 +10,7 @@ cd /vagrant
sudo ./bootstrap/ubuntu.sh
if [ ! -d "venv" ]; then
virtualenv --no-site-packages -p python2 venv
./venv/bin/pip install -r requirements.txt -e acme -e .[dev,docs,testing] -e letsencrypt_apache -e letsencrypt_nginx
./venv/bin/pip install -r requirements.txt -e acme -e .[dev,docs,testing] -e letsencrypt-apache -e letsencrypt-nginx
fi
SETUP_SCRIPT
+1 -1
View File
@@ -26,7 +26,7 @@ Install the development packages:
.. code-block:: shell
pip install -r requirements.txt -e acme -e .[dev,docs,testing] -e letsencrypt_apache -e letsencrypt_nginx
pip install -r requirements.txt -e acme -e .[dev,docs,testing] -e letsencrypt-apache -e letsencrypt-nginx
.. note:: `-e` (short for `--editable`) turns on *editable mode* in
which any source code changes in the current working
+1 -1
View File
@@ -108,7 +108,7 @@ Installation
.. code-block:: shell
virtualenv --no-site-packages -p python2 venv
./venv/bin/pip install -r requirements.txt acme . letsencrypt_apache letsencrypt_nginx
./venv/bin/pip install -r requirements.txt acme . letsencrypt-apache letsencrypt-nginx
.. warning:: Please do **not** use ``python setup.py install``. Please
do **not** attempt the installation commands as
+5 -5
View File
@@ -14,7 +14,7 @@ envlist = py26,py27,cover,lint
# {toxinidir}/venv as it will destroy existing dev venv
envdir = {toxinidir}/tox.venv
commands =
pip install -r requirements.txt -e acme -e .[testing] -e letsencrypt_apache -e letsencrypt_nginx
pip install -r requirements.txt -e acme -e .[testing] -e letsencrypt-apache -e letsencrypt-nginx
# -q does not suppress errors
python setup.py test -q
python setup.py test -q -s acme
@@ -29,7 +29,7 @@ setenv =
[testenv:cover]
basepython = python2.7
commands =
pip install -r requirements.txt -e acme -e .[testing] -e letsencrypt_apache -e letsencrypt_nginx
pip install -r requirements.txt -e acme -e .[testing] -e letsencrypt-apache -e letsencrypt-nginx
./tox.cover.sh
[testenv:lint]
@@ -39,8 +39,8 @@ basepython = python2.7
# duplicate code checking; if one of the commands fails, others will
# continue, but tox return code will reflect previous error
commands =
pip install -r requirements.txt -e acme -e .[dev] -e letsencrypt_apache -e letsencrypt_nginx
pip install -r requirements.txt -e acme -e .[dev] -e letsencrypt-apache -e letsencrypt-nginx
pylint --rcfile=.pylintrc letsencrypt
pylint --rcfile=.pylintrc acme/acme
pylint --rcfile=.pylintrc letsencrypt_apache/letsencrypt_apache
pylint --rcfile=.pylintrc letsencrypt_nginx/letsencrypt_nginx
pylint --rcfile=.pylintrc letsencrypt-apache/letsencrypt_apache
pylint --rcfile=.pylintrc letsencrypt-nginx/letsencrypt_nginx