mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 16:50:00 -04:00
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 6ae224fc9c)
This commit is contained in:
parent
a47f46612e
commit
fd71407c49
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue