From: Petr Špaček Date: Wed, 30 Jul 2025 07:49:27 +0000 (+0200) Subject: Fix minimal dnspython version test X-Git-Tag: v9.21.11~18^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ae224fc9c7ed96f1e06ad8f929b20ea6ce32f25;p=thirdparty%2Fbind9.git Fix minimal dnspython version test Wrong version number was uncovered by Ubuntu 22.04 Jammy which actually has dnspython 2.1.0. --- diff --git a/bin/tests/system/isctest/name.py b/bin/tests/system/isctest/name.py index 255150e8372..7cf3e8d696c 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