Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilip Lajszczak <filip.lajszczak@gmail.com>2020-02-06 18:14:17 +0300
committerFilip Lajszczak <filip.lajszczak@gmail.com>2020-02-06 18:14:17 +0300
commit2b051dd197804b5c93b6e38aae91c991278afdba (patch)
treee2872c7a8e89f03e0e4675e2d217c595d50a768c /tools/venv.py
parentb27e5804b9671e28f37a6da7e2f1f7fa9455d24a (diff)
parent7da5196206b33d5593bd15cd1dcce4d790db7e6d (diff)
Merge branch 'master' of https://github.com/certbot/certbot
Diffstat (limited to 'tools/venv.py')
-rwxr-xr-xtools/venv.py54
1 files changed, 25 insertions, 29 deletions
diff --git a/tools/venv.py b/tools/venv.py
index 93b012e76..f99386eff 100755
--- a/tools/venv.py
+++ b/tools/venv.py
@@ -1,41 +1,37 @@
#!/usr/bin/env python
# Developer virtualenv setup for Certbot client
import os
+import sys
import _venv_common
-REQUIREMENTS = [
- '-e acme[dev]',
- '-e .[dev,docs]',
- '-e certbot-apache',
- '-e certbot-dns-cloudflare',
- '-e certbot-dns-cloudxns',
- '-e certbot-dns-digitalocean',
- '-e certbot-dns-dnsimple',
- '-e certbot-dns-dnsmadeeasy',
- '-e certbot-dns-gehirn',
- '-e certbot-dns-google',
- '-e certbot-dns-linode',
- '-e certbot-dns-luadns',
- '-e certbot-dns-nsone',
- '-e certbot-dns-ovh',
- '-e certbot-dns-rfc2136',
- '-e certbot-dns-route53',
- '-e certbot-dns-sakuracloud',
- '-e certbot-nginx',
- '-e certbot-postfix',
- '-e letshelp-certbot',
- '-e certbot-compatibility-test',
-]
-
-
-def main():
+
+def create_venv(venv_path):
+ """Create a Python 2 virtual environment at venv_path.
+
+ :param str venv_path: path where the venv should be created
+
+ """
+ python2 = _venv_common.find_python_executable(2)
+ command = [sys.executable, '-m', 'virtualenv', '--python', python2, venv_path]
+
+ environ = os.environ.copy()
+ environ['VIRTUALENV_NO_DOWNLOAD'] = '1'
+ _venv_common.subprocess_with_print(command, environ)
+
+
+def main(pip_args=None):
if os.name == 'nt':
raise ValueError('Certbot for Windows is not supported on Python 2.x.')
- venv_args = '--python "{0}"'.format(_venv_common.find_python_executable(2))
- _venv_common.main('venv', venv_args, REQUIREMENTS)
+ venv_path = _venv_common.prepare_venv_path('venv')
+ create_venv(venv_path)
+
+ if not pip_args:
+ pip_args = _venv_common.REQUIREMENTS
+
+ _venv_common.install_packages(venv_path, pip_args)
if __name__ == '__main__':
- main()
+ main(sys.argv[1:])