From: Bob Halley Date: Wed, 24 Jul 2024 01:36:35 +0000 (-0700) Subject: cryptography>=43 is now required to use cryptography X-Git-Tag: v2.7.0rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c18d521d3b6cd9825db3b2b39914c53007bb83ab;p=thirdparty%2Fdnspython.git cryptography>=43 is now required to use cryptography --- diff --git a/dns/_features.py b/dns/_features.py index e92beb94..68c991bd 100644 --- a/dns/_features.py +++ b/dns/_features.py @@ -85,7 +85,7 @@ def force(feature: str, enabled: bool) -> None: _requirements: Dict[str, List[str]] = { ### BEGIN generated requirements - "dnssec": ["cryptography>=42"], + "dnssec": ["cryptography>=43"], "doh": ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"], "doq": ["aioquic>=1.0.0"], "idna": ["idna>=3.6"], diff --git a/pyproject.toml b/pyproject.toml index 42827422..9c7ab988 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ dev = [ "twine>=4.0.0", "wheel>=0.42.0", ] -dnssec = ["cryptography>=42"] +dnssec = ["cryptography>=43"] doh = ["httpcore>=1.0.0", "httpx>=0.26.0", "h2>=4.1.0"] doq = ["aioquic>=1.0.0"] idna = ["idna>=3.7"]