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-apache/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-apache/setup.py')
-rw-r--r--certbot-apache/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/certbot-apache/setup.py b/certbot-apache/setup.py
index 8d15e7971..ffaa6a863 100644
--- a/certbot-apache/setup.py
+++ b/certbot-apache/setup.py
@@ -7,8 +7,8 @@ version = '0.26.0.dev0'
# Remember to update local-oldest-requirements.txt when changing the minimum
# acme/certbot version.
install_requires = [
- 'acme>0.24.0',
- 'certbot>0.25.1',
+ 'acme>=0.25.0',
+ 'certbot>=0.26.0.dev0',
'mock',
'python-augeas',
'setuptools',