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:
authorThomas G <t_glaessle@gmx.de>2021-05-16 16:03:53 +0300
committerGitHub <noreply@github.com>2021-05-16 16:03:53 +0300
commitbc23e07ee5c144aa9b1d5cf9e0ba303d9e91a695 (patch)
tree8fea184e6f5da451a375b8a33f8131bdc451271c /certbot-dns-dnsmadeeasy
parent466e437a2065cb117a32bcaa9a875421718ef20d (diff)
Fix incompatibility with lexicon >= v3.6.0 (#8819)
Diffstat (limited to 'certbot-dns-dnsmadeeasy')
-rw-r--r--certbot-dns-dnsmadeeasy/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-dns-dnsmadeeasy/setup.py b/certbot-dns-dnsmadeeasy/setup.py
index 2feae0bd1..852eac606 100644
--- a/certbot-dns-dnsmadeeasy/setup.py
+++ b/certbot-dns-dnsmadeeasy/setup.py
@@ -9,7 +9,7 @@ version = '1.16.0.dev0'
# Remember to update local-oldest-requirements.txt when changing the minimum
# acme/certbot version.
install_requires = [
- 'dns-lexicon>=2.2.1', # Support for >1 TXT record per name
+ 'dns-lexicon>=3.1.0', # Changed `rtype` parameter name
'setuptools>=39.0.1',
'zope.interface',
]