Skip to content

Commit 33139db

Browse files
speedstorm1copybara-github
authored andcommitted
chore: bump google-auth lower bound to 2.47.0 in GenAI and Vertex SDKs
PiperOrigin-RevId: 853538240
1 parent a882dea commit 33139db

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

google/genai/live.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ async def connect(
10361036
if requests is None:
10371037
raise ValueError('The requests module is required to refresh google-auth credentials. Please install with `pip install google-auth[requests]`')
10381038
auth_req = requests.Request() # type: ignore
1039-
creds.refresh(auth_req)
1039+
creds.refresh(auth_req) # type: ignore[no-untyped-call]
10401040
bearer_token = creds.token
10411041

10421042
original_headers = self._api_client._http_options.headers

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
]
2727
dependencies = [
2828
"anyio>=4.8.0, <5.0.0",
29-
"google-auth[requests]>=2.46.0, <3.0.0",
29+
"google-auth[requests]>=2.47.0, <3.0.0",
3030
"httpx>=0.28.1, <1.0.0",
3131
"pydantic>=2.9.0, <3.0.0",
3232
"requests>=2.28.1, <3.0.0",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ charset-normalizer==3.4.0
77
coverage==7.6.9
88
distro==1.9.0
99
httpx==0.28.1
10-
google-auth==2.45.0
10+
google-auth==2.47.0
1111
idna==3.10
1212
iniconfig==2.0.0
1313
packaging==24.2

0 commit comments

Comments
 (0)