From 11a3e2756cc54adbed778ffc983685e3bfe2a801 Mon Sep 17 00:00:00 2001 From: danielhav Date: Mon, 2 Feb 2026 14:34:35 +0100 Subject: [PATCH 1/2] Allow cryptography 46.x version. This is also part of the latest "uv-version-updates" dependabot PR but I don't know what your plans are with those. We wouldn't be able to use the client-python without this version bump so I kindly ask you to update it for the next (or one of the next) beta releases. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c3dc593..1c49eb4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ dependencies = [ "pydantic>=2", "typing-extensions>=4.7.1", "authlib>=1.3.2,<2.0.0", - "cryptography>=44.0.1,<45.0.0", + "cryptography>=44.0.1,<47.0.0", "requests>=2.32.4,<3.0.0", ] From 79eb6bb2ec54ec3b6037134dcdb769d225eecdce Mon Sep 17 00:00:00 2001 From: danielhav Date: Mon, 2 Feb 2026 14:49:11 +0100 Subject: [PATCH 2/2] Move dependency which is only used in tests to the `dev` group. `cryptography` is only used in `test/auth/test_web_token_authenticator.py` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1c49eb4..a208493 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ dependencies = [ "pydantic>=2", "typing-extensions>=4.7.1", "authlib>=1.3.2,<2.0.0", - "cryptography>=44.0.1,<47.0.0", "requests>=2.32.4,<3.0.0", ] @@ -30,6 +29,7 @@ documentation = "https://github.com/zitadel/client-python" [dependency-groups] dev = [ + "cryptography>=44.0.1,<47.0.0", "pytest>=7.2.1", "pytest-cov>=2.8.1", "tox>=3.9.0",