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
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.
-rw-r--r--certbot-apache/setup.py4
-rw-r--r--certbot-dns-route53/setup.py2
-rw-r--r--certbot-nginx/setup.py2
-rw-r--r--certbot-postfix/setup.py2
-rw-r--r--setup.py2
5 files changed, 6 insertions, 6 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',
diff --git a/certbot-dns-route53/setup.py b/certbot-dns-route53/setup.py
index 8e2821332..c8806e862 100644
--- a/certbot-dns-route53/setup.py
+++ b/certbot-dns-route53/setup.py
@@ -6,7 +6,7 @@ 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',
+ 'acme>=0.25.0',
'certbot>=0.21.1',
'boto3',
'mock',
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?
diff --git a/certbot-postfix/setup.py b/certbot-postfix/setup.py
index cde1ac7c2..4c53477d2 100644
--- a/certbot-postfix/setup.py
+++ b/certbot-postfix/setup.py
@@ -6,7 +6,7 @@ version = '0.26.0.dev0'
install_requires = [
'acme>=0.25.0',
- 'certbot>0.23.0',
+ 'certbot>=0.23.0',
'setuptools',
'six',
'zope.component',
diff --git a/setup.py b/setup.py
index 8176883ad..9ef9ec0d2 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ version = meta['version']
# specified here to avoid masking the more specific request requirements in
# acme. See https://github.com/pypa/pip/issues/988 for more info.
install_requires = [
- 'acme>0.24.0',
+ 'acme>=0.25.0',
# We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but
# saying so here causes a runtime error against our temporary fork of 0.9.3
# in which we added 2.6 support (see #2243), so we relax the requirement.