mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
ConfigArgParse 0.10 from PyPI supports Python 2.6, so there's no more need to install a fixed version directly from a git branch.
13 lines
303 B
Bash
Executable File
13 lines
303 B
Bash
Executable File
#!/bin/sh -xe
|
|
# Developer virtualenv setup for Let's Encrypt client
|
|
|
|
export VENV_ARGS="--python python2"
|
|
|
|
./bootstrap/dev/_venv_common.sh \
|
|
-e acme[testing] \
|
|
-e .[dev,docs,testing] \
|
|
-e letsencrypt-apache \
|
|
-e letsencrypt-nginx \
|
|
-e letshelp-letsencrypt \
|
|
-e letsencrypt-compatibility-test
|