From bea946c4b762c44dad4c4d56dbd871ee6e965495 Mon Sep 17 00:00:00 2001 From: Diogenes Jesus Date: Mon, 10 May 2021 11:51:04 +0200 Subject: [PATCH 1/4] pin dns-lexicon version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 88c9777..8a05cd5 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ install_requires = [ 'acme>=0.31.0', 'certbot>=0.31.0', - 'dns-lexicon>=3.2.4', + 'dns-lexicon>=3.2.4,<=3.5.6', 'dnspython', 'mock', 'setuptools', From 7c53c85ac648ce9d043e1a254dd6cb92ec89b86d Mon Sep 17 00:00:00 2001 From: Diogenes Jesus Date: Mon, 10 May 2021 11:51:32 +0200 Subject: [PATCH 2/4] remove warning on mode for credential file --- test/pdns-credentials.ini | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 test/pdns-credentials.ini diff --git a/test/pdns-credentials.ini b/test/pdns-credentials.ini old mode 100755 new mode 100644 From 26e74bf441049b4af0290a645e4ec85cb2bb190f Mon Sep 17 00:00:00 2001 From: Diogenes Jesus Date: Mon, 10 May 2021 12:02:19 +0200 Subject: [PATCH 3/4] bump test python version --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c245c6..46e8c63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,9 +10,10 @@ env: # uses default POWERDNS_VERSION in docker-compose.yml python: # PyPy versions - - "3.5" + - "3.6" - "3.7" - - "pypy3.5" + - "3.8" + - "pypy3" install: - pip install python-coveralls From faec4807db919488f4b8c9da630aae8e6c18c430 Mon Sep 17 00:00:00 2001 From: Diogenes Jesus Date: Mon, 10 May 2021 12:19:01 +0200 Subject: [PATCH 4/4] bump module version to 0.2.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8a05cd5..c5737de 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup from setuptools import find_packages -version = "0.2.0" +version = "0.2.1" with open('README.md') as f: long_description = f.read()