From dbd64207aebea8c5af19830a9a02d4c05d1d9469 Mon Sep 17 00:00:00 2001 From: "Wei Sun (Jack)" Date: Tue, 17 Feb 2026 13:46:57 -0800 Subject: [PATCH] fix(deps): Increase pydantic lower version to 2.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ``` ┌──────────────────────────────┬─────────────────┬───────────────────────────────────────────────┐ │ Feature │ First Available │ Used In │ ├──────────────────────────────┼─────────────────┼───────────────────────────────────────────────┤ │ SkipJsonSchema │ 2.1.0 │ evaluation/eval_metrics.py │ ├──────────────────────────────┼─────────────────┼───────────────────────────────────────────────┤ │ AliasChoices │ 2.1.0 │ models/gemma_llm.py │ ├──────────────────────────────┼─────────────────┼───────────────────────────────────────────────┤ │ SerializeAsAny │ 2.1.0 │ agents/workflow/workflow_graph.py │ ├──────────────────────────────┼─────────────────┼───────────────────────────────────────────────┤ │ Discriminator, Tag │ 2.5.0 │ agents/agent_config.py │ ├──────────────────────────────┼─────────────────┼───────────────────────────────────────────────┤ │ ser_json_bytes in ConfigDict │ 2.5.0 │ events/event.py, agents/live_request_queue.py │ ├──────────────────────────────┼─────────────────┼───────────────────────────────────────────────┤ │ Field(deprecated=True) │ 2.7.0 │ agents/run_config.py │ └──────────────────────────────┴─────────────────┴───────────────────────────────────────────────┘ ``` Co-authored-by: Wei Sun (Jack) PiperOrigin-RevId: 871478269 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b9787cef..9bec96cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ dependencies = [ "opentelemetry-resourcedetector-gcp>=1.9.0a0, <2.0.0", "opentelemetry-sdk>=1.36.0, <1.40.0", "pyarrow>=14.0.0", - "pydantic>=2.0, <3.0.0", # For data validation/models + "pydantic>=2.7.0, <3.0.0", # For data validation/models "python-dateutil>=2.9.0.post0, <3.0.0", # For Vertext AI Session Service "python-dotenv>=1.0.0, <2.0.0", # To manage environment variables "requests>=2.32.4, <3.0.0",