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:
authorBrad Warren <bmw@users.noreply.github.com>2018-06-28 20:55:21 +0300
committerGitHub <noreply@github.com>2018-06-28 20:55:21 +0300
commit64e06d4201a8695580533c3cb07370fac226ebea (patch)
treeb5b3b76b7f4557c4df3934d361a157f5b823ee31 /certbot-nginx/setup.py
parentd00a31622dd4f797a75b140b95320e99bcc4c953 (diff)
Use greater than or equal to in requirements. (#6117)
* Use greater than or equal to in requirements. This changes the existing requirements using strictly greater than to greater than or equal to so that they're more conventional. * Use >= for certbot-postfix. Despite it previously saying 'certbot>0.23.0', certbot-postfix/local-oldest-requirements.txt was pinned to 0.23.0 so let's just use certbot>=0.23.0.
Diffstat (limited to 'certbot-nginx/setup.py')
-rw-r--r--certbot-nginx/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-nginx/setup.py b/certbot-nginx/setup.py
index d9cb4a9c2..b486b2778 100644
--- a/certbot-nginx/setup.py
+++ b/certbot-nginx/setup.py
@@ -8,7 +8,7 @@ version = '0.26.0.dev0'
# acme/certbot version.
install_requires = [
'acme>=0.25.0',
- 'certbot>0.21.1',
+ 'certbot>=0.22.0',
'mock',
'PyOpenSSL',
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?