]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix minimal dnspython version test
authorPetr Špaček <pspacek@isc.org>
Wed, 30 Jul 2025 07:49:27 +0000 (09:49 +0200)
committerPetr Špaček <pspacek@isc.org>
Wed, 30 Jul 2025 14:35:32 +0000 (14:35 +0000)
Wrong version number was uncovered by Ubuntu 22.04 Jammy which actually
has dnspython 2.1.0.

bin/tests/system/isctest/name.py

index 255150e8372fc4ede168a532537ac75a04296cc6..7cf3e8d696c8c20c19f652b54e5be6884481adba 100644 (file)
@@ -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