fix Certbot acme dep (#8279)

This commit is contained in:
Brad Warren 2020-09-10 00:37:10 -07:00 committed by GitHub
parent e79af1b1de
commit 3a615176c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -15,6 +15,10 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
### Fixed
* Fixed `server_name` case-sensitivity in the nginx plugin.
* The minimum version of the `acme` library required by Certbot was corrected.
In the previous release, Certbot said it required `acme>=1.6.0` when it
actually required `acme>=1.8.0` to properly support removing contact
information from an ACME account.
More details about these changes can be found on our GitHub repo.

View file

@ -1,2 +1,2 @@
# Remember to update setup.py to match the package versions below.
acme[dev]==1.6.0
acme[dev]==1.8.0

View file

@ -36,7 +36,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>=1.6.0',
'acme>=1.8.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.