From dd97dc2687a5fe0ee9849f780fc0bbb5196b55e7 Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Thu, 8 Jan 2026 13:12:43 -0800 Subject: [PATCH 1/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c3bf72..dd480c7 100644 --- a/setup.py +++ b/setup.py @@ -136,7 +136,7 @@ def run(self): "absl-py>=0.9,<3.0.0", 'googleapis-common-protos>=1.56.4,<2;python_version>="3.11"', 'protobuf>=4.25.2;python_version>="3.11"', - 'protobuf>=4.21.6,<4.22;python_version<"3.11"', + 'protobuf>=4.21.6,<=6.32;python_version<"3.11"' ], python_requires=">=3.9,<4", packages=find_packages(), From 1c09202b3f30dfdbc591ab86019f35c5932285c4 Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Thu, 8 Jan 2026 13:14:52 -0800 Subject: [PATCH 2/3] Update RELEASE.md --- RELEASE.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index cd66e8b..8ba0029 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -10,6 +10,24 @@ ## Deprecations +# Version 1.17.3 + +## Major Features and Improvements + +* N/A + +## Bug Fixes and Other Changes + +* Depends on `protobuf>=4.21.6,<6.32` for 3.9 and 3.10 + +## Breaking Changes + +* N/A + +## Deprecations + +* N/A + # Version 1.17.2 ## Major Features and Improvements From e2061f6e500d205428d127eaaee448fff0914bb9 Mon Sep 17 00:00:00 2001 From: Madhur Karampudi <142544288+vkarampudi@users.noreply.github.com> Date: Thu, 8 Jan 2026 14:10:07 -0800 Subject: [PATCH 3/3] syntax error --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dd480c7..f990f4e 100644 --- a/setup.py +++ b/setup.py @@ -136,7 +136,7 @@ def run(self): "absl-py>=0.9,<3.0.0", 'googleapis-common-protos>=1.56.4,<2;python_version>="3.11"', 'protobuf>=4.25.2;python_version>="3.11"', - 'protobuf>=4.21.6,<=6.32;python_version<"3.11"' + 'protobuf>=4.21.6,<=6.32;python_version<"3.11"', ], python_requires=">=3.9,<4", packages=find_packages(),