From c18d521d3b6cd9825db3b2b39914c53007bb83ab Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Tue, 23 Jul 2024 18:36:35 -0700 Subject: [PATCH] cryptography>=43 is now required to use cryptography --- 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 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"] -- 2.47.3