From fd71407c49a7e08f5237d72b86fa62c7a70fdc63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pa=C4=8Dek?= Date: Wed, 30 Jul 2025 09:49:27 +0200 Subject: [PATCH] Fix minimal dnspython version test Wrong version number was uncovered by Ubuntu 22.04 Jammy which actually has dnspython 2.1.0. (cherry picked from commit 6ae224fc9c7ed96f1e06ad8f929b20ea6ce32f25) --- bin/tests/system/isctest/name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/isctest/name.py b/bin/tests/system/isctest/name.py index 255150e837..7cf3e8d696 100644 --- a/bin/tests/system/isctest/name.py +++ b/bin/tests/system/isctest/name.py @@ -13,7 +13,7 @@ from typing import Container, Iterable, FrozenSet import pytest -pytest.importorskip("dns", minversion="2.1.0") # NameRelation +pytest.importorskip("dns", minversion="2.3.0") # NameRelation from dns.name import Name, NameRelation import dns.zone import dns.rdatatype