From cc7f1561159c9096bd116a475cf018281f2322de Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 15 Oct 2024 09:17:14 -0700 Subject: [PATCH 1/2] Bump required octodns >= 1.5, address pending deprecations --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 31d8182..e424989 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,5 @@ sections="FUTURE,STDLIB,THIRDPARTY,OCTODNS,FIRSTPARTY,LOCALFOLDER" [tool.pytest.ini_options] filterwarnings = [ 'error', - # TODO: remove once octodns 2.0 has been released - 'ignore:.*DEPRECATED.*2.0', ] pythonpath = "." From a42ff2e3d41048241c8781fbfcfffc04ac9140c1 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 23 Oct 2024 14:02:28 -0700 Subject: [PATCH 2/2] Bump octoDNS requirement to 1.5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 691d4fe..f95254e 100755 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def version(): ), 'test': tests_require, }, - install_requires=('dnspython>=2.2.1', 'octodns>=0.9.20'), + install_requires=('dnspython>=2.2.1', 'octodns>=1.5.0'), license='MIT', long_description=long_description, long_description_content_type='text/markdown',