From d514f872b23ecf10955b50ce54f9860d9be7e1bc Mon Sep 17 00:00:00 2001 From: Gavin Date: Tue, 2 Jun 2026 16:17:04 +0800 Subject: [PATCH] fix: widen cryptography upper bound to major version Patch-level pin (>=48.0.0,<48.1.0) causes dependency conflicts for any integrator that already has cryptography>=48.1.0. Widen to >=48.0.0,<49.0.0 following the standard pattern. Fixes #500 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9eb828b..9a872e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ license = "BSD-3-Clause" readme = "README.md" requires-python = ">=3.12,<4.0" dependencies = [ - "cryptography (>=48.0.0,<48.1.0)", + "cryptography (>=48.0.0,<49.0.0)", "pillow (>=12.0.0,<13.0.0)", "pydantic (>=2.12.4,<3.0.0)", "pyjwt (>=2.10.1,<3.0.0)",