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:
authorohemorange <ebportnoy@gmail.com>2019-11-09 03:19:21 +0300
committerBrad Warren <bmw@users.noreply.github.com>2019-11-09 03:19:21 +0300
commit96e02d614b5db0ecd30481323ee522e049ddb05c (patch)
tree928b4af931a069a30800dd7e744bf140b187089f /windows-installer
parent0a48d7bf7ee9f48dc9eef3dd162424ed8b69851c (diff)
Make uncomplicated modules private (#7528)
* Create _internal package for Certbot's non-public modules * Move account.py to _internal * Move auth_handler.py to _internal * Move cert_manager.py to _internal * Move client.py to _internal * Move error_handler.py to _internal * Move lock.py to _internal * Move main.py to _internal * Move notify.py to _internal * Move ocsp.py to _internal * Move renewal.py to _internal * Move reporter.py to _internal * Move storage.py to _internal * Move updater.py to _internal * update apache and nginx oldest requirements * Keep the lock file as certbot.lock * nginx oldest tests still need to rely on newer certbot * python doesn't have good dependency resolution, so specify the transitive dependency * update required minimum versions in nginx setup.py
Diffstat (limited to 'windows-installer')
-rw-r--r--windows-installer/construct.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows-installer/construct.py b/windows-installer/construct.py
index cdf309f13..089296439 100644
--- a/windows-installer/construct.py
+++ b/windows-installer/construct.py
@@ -147,7 +147,7 @@ files=run.bat
renew-down.ps1
[Command certbot]
-entry_point=certbot.main:main
+entry_point=certbot._internal.main:main
extra_preamble=pywin32_paths.py
'''.format(certbot_version=certbot_version,
installer_suffix='win_amd64' if PYTHON_BITNESS == 64 else 'win32',