This is an automated email from the ASF dual-hosted git repository. wenjin272 pushed a commit to branch release-0.3 in repository https://gitbox.apache.org/repos/asf/flink-agents.git
commit b952dc23952f9104b48d3da17d1f3c0427d43a61 Author: Wenjin Xie <[email protected]> AuthorDate: Wed Aug 26 12:55:39 2026 +0800 [python] Pin googleapis common protos below 1.72.1 (#1052) Avoid incompatibility between generated Google protobufs and the protobuf runtimes selected by supported PyFlink versions. Generated-by: Codex (GPT-5) Co-authored-by: Codex <[email protected]> --- python/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index 2d2d8d41..768a98d7 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -56,6 +56,9 @@ dependencies = [ "dashscope~=1.24.2", "openai>=1.66.3", "anthropic>=0.64.0", + # googleapis-common-protos 1.75.1+ requires protobuf 6.33.5+, which is + # incompatible with the protobuf runtimes selected by supported PyFlink releases. + "googleapis-common-protos<1.72.1", "chromadb==1.0.21", "mem0ai>=0.1.43,<2.0.0", "onnxruntime<1.24.1;python_version<'3.11'",
