From 35308d380990d517389f51632b07f1aa00d41e6f Mon Sep 17 00:00:00 2001 From: Liang Wu Date: Tue, 6 Jan 2026 17:00:45 -0800 Subject: [PATCH] chore: add min version of Google Auth to include fix Context: https://github.com/googleapis/python-genai/commit/930c7ca7d5b696d3388fe16fb724184eb88c6a65. The GenAI SDK relies on Google Auth for the fix, and adding this as a direct dependency in ADK will decouple the release of ADK and GenAI SDK. Co-authored-by: Liang Wu PiperOrigin-RevId: 852990837 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 19abaa3f..b17c29ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ dependencies = [ "click>=8.1.8, <9.0.0", # For CLI tools "fastapi>=0.115.0, <0.124.0", # FastAPI framework "google-api-python-client>=2.157.0, <3.0.0", # Google API client discovery + "google-auth>=2.47.0", # Google Auth library "google-cloud-aiplatform[agent_engines]>=1.132.0, <2.0.0", # For VertexAI integrations, e.g. example store. "google-cloud-bigquery-storage>=2.0.0", "google-cloud-bigquery>=2.2.0",