From a462e38cab02f2c732b776017f1fe78c1997e3ab Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sat, 11 Jul 2015 04:33:07 +0000 Subject: [PATCH] Update package references after subdirs rename. --- Vagrantfile | 2 +- docs/contributing.rst | 2 +- docs/using.rst | 2 +- tox.ini | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 0659e1ee2..d54e4ea23 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 diff --git a/docs/contributing.rst b/docs/contributing.rst index c2120f1e1..20a588674 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -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 diff --git a/docs/using.rst b/docs/using.rst index 0d9ffcc73..0812b86e7 100644 --- a/docs/using.rst +++ b/docs/using.rst @@ -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 diff --git a/tox.ini b/tox.ini index 031f3af4f..dc6fb567a 100644 --- a/tox.ini +++ b/tox.ini @@ -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