From aad833dd81f6d88f561a2a9de8c2d91187d5d336 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Wed, 23 Sep 2026 15:31:15 -0400 Subject: [PATCH 1/3] chore(deps): update google-cloud-firestore requirement Update google-cloud-firestore requirement to >=2.28.0 for Python >=3.10 and keep >=2.27.0 for Python <3.10 because google-cloud-firestore 2.28.0 dropped support for Python 3.9. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7790c0c5..ddadbc2e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,8 @@ respx == 0.23.1 cachecontrol >= 0.14.3 google-api-core[grpc] >= 2.25.1, < 3.0.0dev; platform.python_implementation != 'PyPy' -google-cloud-firestore >= 2.27.0; platform.python_implementation != 'PyPy' +google-cloud-firestore >= 2.28.0; platform.python_implementation != 'PyPy' and python_version >= '3.10' +google-cloud-firestore >= 2.27.0; platform.python_implementation != 'PyPy' and python_version < '3.10' google-cloud-storage >= 3.1.1 pyjwt[crypto] >= 2.12.1 cryptography < 44.0.0; platform.python_implementation == 'PyPy' and python_version < '3.11' From 4479916e51c56c574e10434f7556c0cc606616cd Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Wed, 23 Sep 2026 15:34:21 -0400 Subject: [PATCH 2/3] chore(ci): trigger CI From 328242ee5e70507e72fc4338554a7122bb793ce1 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Wed, 23 Sep 2026 15:51:50 -0400 Subject: [PATCH 3/3] chore(deps): update python_version markers to != '3.9' and == '3.9' --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index ddadbc2e..55ce8f97 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,8 +9,8 @@ respx == 0.23.1 cachecontrol >= 0.14.3 google-api-core[grpc] >= 2.25.1, < 3.0.0dev; platform.python_implementation != 'PyPy' -google-cloud-firestore >= 2.28.0; platform.python_implementation != 'PyPy' and python_version >= '3.10' -google-cloud-firestore >= 2.27.0; platform.python_implementation != 'PyPy' and python_version < '3.10' +google-cloud-firestore >= 2.28.0; platform.python_implementation != 'PyPy' and python_version != '3.9' +google-cloud-firestore >= 2.27.0; platform.python_implementation != 'PyPy' and python_version == '3.9' google-cloud-storage >= 3.1.1 pyjwt[crypto] >= 2.12.1 cryptography < 44.0.0; platform.python_implementation == 'PyPy' and python_version < '3.11'