From 81bf237d45b2257dc965986c336f4c6e328cbf61 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Thu, 7 May 2026 14:58:04 -0400 Subject: [PATCH] chore: Pinned cryptography version for older PyPy interpreters --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 0bbfbe18..c97c3676 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,4 +12,5 @@ google-api-core[grpc] >= 2.25.1, < 3.0.0dev; platform.python_implementation != ' google-cloud-firestore >= 2.21.0; platform.python_implementation != 'PyPy' google-cloud-storage >= 3.1.1 pyjwt[crypto] >= 2.10.1 +cryptography < 44.0.0; platform.python_implementation == 'PyPy' and python_version < '3.11' httpx[http2] == 0.28.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 21e29332..8950a263 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ 'google-cloud-firestore>=2.21.0; platform.python_implementation != "PyPy"', 'google-cloud-storage>=3.1.1', 'pyjwt[crypto] >= 2.10.1', + 'cryptography < 44.0.0; platform.python_implementation == "PyPy" and python_version < "3.11"', 'httpx[http2] == 0.28.1', ]