1
0
mirror of https://github.com/certbot/certbot.git synced 2025-08-09 15:02:48 +03:00

Bump the acme version needed for account reuse (#6250)

* Bump the acme version needed for account reuse.

Fixes https://github.com/certbot/certbot/issues/6155#issuecomment-407122742.

* Update nginx oldest requirements.

* bump min acme version

* update min acme version
This commit is contained in:
Brad Warren
2018-07-23 11:46:22 -07:00
committed by ohemorange
parent daee6e8eb3
commit c129ab2965
4 changed files with 4 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
acme[dev]==0.25.0 acme[dev]==0.26.0
-e .[dev] -e .[dev]

View File

@@ -7,7 +7,7 @@ version = '0.27.0.dev0'
# Remember to update local-oldest-requirements.txt when changing the minimum # Remember to update local-oldest-requirements.txt when changing the minimum
# acme/certbot version. # acme/certbot version.
install_requires = [ install_requires = [
'acme>=0.25.0', 'acme>=0.26.0',
'certbot>=0.22.0', 'certbot>=0.22.0',
'mock', 'mock',
'PyOpenSSL', 'PyOpenSSL',

View File

@@ -1 +1 @@
acme[dev]==0.25.0 acme[dev]==0.26.0

View File

@@ -32,7 +32,7 @@ version = meta['version']
# specified here to avoid masking the more specific request requirements in # specified here to avoid masking the more specific request requirements in
# acme. See https://github.com/pypa/pip/issues/988 for more info. # acme. See https://github.com/pypa/pip/issues/988 for more info.
install_requires = [ install_requires = [
'acme>=0.25.0', 'acme>=0.26.0',
# We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but # 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 # 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. # in which we added 2.6 support (see #2243), so we relax the requirement.