From 6514e048c1fd609fbda1949cf483e76e7fbf5580 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Tue, 12 Mar 2024 12:51:28 -0700 Subject: [PATCH] Require aioquic>=1.0.0 [#1032]. --- dns/_features.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"] -- 2.47.3