mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 08:08:00 +02:00
Merge pull request #486 from kuba/requirements.txt
requirements.txt: no editable (-e) mode, no "." install.
This commit is contained in:
@@ -48,7 +48,7 @@ synced to ``/vagrant``, so you can get started with:
|
|||||||
|
|
||||||
vagrant ssh
|
vagrant ssh
|
||||||
cd /vagrant
|
cd /vagrant
|
||||||
./venv/bin/pip install -r requirements.txt
|
./venv/bin/pip install -r requirements.txt .[dev,docs,testing]
|
||||||
sudo ./venv/bin/letsencrypt
|
sudo ./venv/bin/letsencrypt
|
||||||
|
|
||||||
Support for other Linux distributions coming soon.
|
Support for other Linux distributions coming soon.
|
||||||
|
|||||||
+1
-1
@@ -104,7 +104,7 @@ Installation
|
|||||||
.. code-block:: shell
|
.. code-block:: shell
|
||||||
|
|
||||||
virtualenv --no-site-packages -p python2 venv
|
virtualenv --no-site-packages -p python2 venv
|
||||||
./venv/bin/pip install -r requirements.txt
|
./venv/bin/pip install -r requirements.txt .
|
||||||
|
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
|
|||||||
+1
-2
@@ -1,3 +1,2 @@
|
|||||||
# https://github.com/bw2/ConfigArgParse/issues/17
|
# https://github.com/bw2/ConfigArgParse/issues/17
|
||||||
-e git+https://github.com/kuba/ConfigArgParse.git@python2.6#egg=ConfigArgParse
|
git+https://github.com/kuba/ConfigArgParse.git@python2.6#egg=ConfigArgParse
|
||||||
-e .
|
|
||||||
|
|||||||
@@ -22,12 +22,12 @@ setenv =
|
|||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
commands =
|
commands =
|
||||||
pip install -e .[testing]
|
pip install -r requirements.txt -e .[testing]
|
||||||
./tox.cover.sh
|
./tox.cover.sh
|
||||||
|
|
||||||
[testenv:lint]
|
[testenv:lint]
|
||||||
# recent versions of pylint do not support Python 2.6 (#97, #187)
|
# recent versions of pylint do not support Python 2.6 (#97, #187)
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
commands =
|
commands =
|
||||||
pip install -e .[dev]
|
pip install -r requirements.txt -e .[dev]
|
||||||
pylint --rcfile=.pylintrc letsencrypt acme letsencrypt_apache letsencrypt_nginx
|
pylint --rcfile=.pylintrc letsencrypt acme letsencrypt_apache letsencrypt_nginx
|
||||||
|
|||||||
Reference in New Issue
Block a user