From 5ce3289390b167d8c4b52c98fd8199937a010a2d Mon Sep 17 00:00:00 2001 From: helgeerbe Date: Sat, 9 Nov 2024 17:04:21 +0100 Subject: [PATCH] update dependency certbot >= 3.0.0 --- README.md | 2 ++ setup.py | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2f4f814..980869f 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,8 @@ The file 'domain.tld.ini' must be replaced with the version of the example 'cred ## Changelog +- 2024.11.09 + - Update for Certbot 3.0.0 - 2024.10.19 - Update for Certbot 2.11.0 - Update README.md, changed from README.rst diff --git a/setup.py b/setup.py index e9aed67..2a0545c 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,11 @@ from setuptools import setup from setuptools import find_packages -version = '2024.10.20' +version = '2024.11.09' install_requires = [ - "acme>=1.8.0", - "certbot>=2.11.0", + "acme>=3.0.0", + "certbot>=3.0.0", "setuptools", "requests", "mock",