Make plugin compliant for certbot 2.x

This commit is contained in:
helgeerbe 2022-11-24 14:38:19 +01:00
parent ee3af96543
commit 43b053ef22
2 changed files with 8 additions and 2 deletions

View file

@ -135,6 +135,12 @@ chmod 700 /etc/letsencrypt/.secrets
Changelog Changelog
========= =========
- 2022.11.24
- remove zope to fix compatibility with Certbot 2.x (Fixes #19)
As a reminder, Certbot will default to issuing ECDSA certificates from release 2.0.0.
If you update from a prior certbot release, run the plugin once manually. You will be prompted
to update RSA key type to ECDSA.
- 2022.05.15 - 2022.05.15
- Added capability to handle multiple domain validations #16 - Added capability to handle multiple domain validations #16

View file

@ -1,11 +1,11 @@
from setuptools import setup from setuptools import setup
from setuptools import find_packages from setuptools import find_packages
version = "2022.05.15" version = "2022.11.24"
install_requires = [ install_requires = [
"acme>=1.8.0", "acme>=1.8.0",
"certbot>=0.31.0", "certbot>=2.0.0",
"setuptools", "setuptools",
"requests", "requests",
"mock", "mock",