From: Bob Halley Date: Tue, 12 Mar 2024 19:51:28 +0000 (-0700) Subject: Require aioquic>=1.0.0 [#1032]. X-Git-Tag: v2.7.0rc1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6514e048c1fd609fbda1949cf483e76e7fbf5580;p=thirdparty%2Fdnspython.git Require aioquic>=1.0.0 [#1032]. --- diff --git a/dns/_features.py b/dns/_features.py index df61e300..e5137cbc 100644 --- a/dns/_features.py +++ b/dns/_features.py @@ -84,7 +84,7 @@ _requirements: Dict[str, List[str]] = { ### BEGIN generated requirements "dnssec": ["cryptography>=42"], "doh": ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"], - "doq": ["aioquic>=0.9.25"], + "doq": ["aioquic>=1.0.0"], "idna": ["idna>=3.6"], "trio": ["trio>=0.23"], "wmi": ["wmi>=1.5.1"], diff --git a/pyproject.toml b/pyproject.toml index 6f60295d..749f2a83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ dev = [ ] dnssec = ["cryptography>=42"] doh = ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"] -doq = ["aioquic>=0.9.25"] +doq = ["aioquic>=1.0.0"] idna = ["idna>=3.6"] trio = ["trio>=0.23"] wmi = ["wmi>=1.5.1"]