From f1a3bf4dda6c0bbe3e189e0fb38a7bf64b90bdfc Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 21 Apr 2026 10:58:22 +0200 Subject: [PATCH] Bump cryptography dependency to >= 45 The `group_order` attribute used in `fido2.arkg._BL.prf` was introduced in version 45. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8d3798b8..fdf34ccb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ "Topic :: Security :: Cryptography", "Topic :: Software Development :: Libraries :: Python Modules", ] -dependencies = ["cryptography (>=2.6, !=35, <49)"] +dependencies = ["cryptography (>=45, <49)"] [project.optional-dependencies] pcsc = ["pyscard (>=1.9, <3)"]