From: Bob Halley Date: Thu, 15 Feb 2024 16:20:11 +0000 (-0800) Subject: Require cryptography >=41 instead of 42. X-Git-Tag: v2.6.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca63d95143e81975fc3fff4dff87b366dc661371;p=thirdparty%2Fdnspython.git Require cryptography >=41 instead of 42. --- diff --git a/dns/_features.py b/dns/_features.py index df61e300..03ccaa77 100644 --- a/dns/_features.py +++ b/dns/_features.py @@ -82,7 +82,7 @@ def force(feature: str, enabled: bool) -> None: _requirements: Dict[str, List[str]] = { ### BEGIN generated requirements - "dnssec": ["cryptography>=42"], + "dnssec": ["cryptography>=41"], "doh": ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"], "doq": ["aioquic>=0.9.25"], "idna": ["idna>=3.6"], diff --git a/pyproject.toml b/pyproject.toml index 3108d587..860666fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ dev = [ "twine>=4.0.0", "wheel>=0.42.0", ] -dnssec = ["cryptography>=42"] +dnssec = ["cryptography>=41"] doh = ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"] doq = ["aioquic>=0.9.25"] idna = ["idna>=3.6"]