Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions providers/google/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,7 @@ PIP package Version required
``google-auth`` ``>=2.29.0``
``google-auth-httplib2`` ``>=0.0.1``
``google-genai`` ``>=2.8.0``
``google-cloud-aiplatform`` ``>=1.155.0``
``tqdm`` ``>=4.23.0``
``scikit-learn`` ``>=1.6.0``
``jsonschema`` ``>=4.19.1``
``ruamel.yaml`` ``>=0.19.0``
``pyyaml`` ``>=6.0.3``
``litellm`` ``>=1.83.7,<1.86.0; python_version < "3.14"``
``litellm`` ``>=1.93.0; python_version >= "3.14"``
``google-cloud-aiplatform[evaluation]`` ``>=1.164.0``
``ray[default]`` ``>=2.42.0; python_version < "3.13"``
``ray[default]`` ``>=2.49.0; python_version >= "3.13" and python_version < "3.14"``
``ray[default]`` ``>=2.55.0; python_version >= "3.14" and python_version < "3.15"``
Expand Down
9 changes: 1 addition & 8 deletions providers/google/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,7 @@ PIP package Version required
``google-auth`` ``>=2.29.0``
``google-auth-httplib2`` ``>=0.0.1``
``google-genai`` ``>=2.8.0``
``google-cloud-aiplatform`` ``>=1.155.0``
``tqdm`` ``>=4.23.0``
``scikit-learn`` ``>=1.6.0``
``jsonschema`` ``>=4.19.1``
``ruamel.yaml`` ``>=0.19.0``
``pyyaml`` ``>=6.0.3``
``litellm`` ``>=1.83.7,<1.86.0; python_version < "3.14"``
``litellm`` ``>=1.93.0; python_version >= "3.14"``
``google-cloud-aiplatform[evaluation]`` ``>=1.164.0``
``ray[default]`` ``>=2.42.0; python_version < "3.13"``
``ray[default]`` ``>=2.49.0; python_version >= "3.13" and python_version < "3.14"``
``ray[default]`` ``>=2.55.0; python_version >= "3.14" and python_version < "3.15"``
Expand Down
17 changes: 4 additions & 13 deletions providers/google/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,10 @@ dependencies = [
# google-cloud-aiplatform doesn't install ray for python 3.12 (issue: https://github.com/googleapis/python-aiplatform/issues/5252).
# Temporarily lock in ray 2.42.0 which is compatible with python 3.12 until linked issue is solved.
# Remove the ray dependency as well as google-cloud-bigquery-storage once linked issue is fixed
"google-cloud-aiplatform>=1.155.0",
# The "evaluation" extra of google-cloud-aiplatform limits litellm to range that has security
# vulnerabilities when we want to get 3.14 support. Until this is fixed we need to bump litellm to
# higher version and remove the "evaluation" extra from google-cloud-aiplatform.
# Tracked in: https://github.com/googleapis/python-aiplatform/issues/7057
"tqdm>=4.23.0",
"scikit-learn>=1.6.0",
"jsonschema>=4.19.1",
"ruamel.yaml>=0.19.0",
"pyyaml>=6.0.3",
"litellm<1.86.0,>=1.83.7;python_version<'3.14'",
"litellm>=1.93.0;python_version>='3.14'",
# End of evolution extra workaround
# Floor raised to 1.164.0: earlier "evaluation" extras cap litellm below the version that
# carries the fixes for CVE-2026-35030 and its follow-on advisories on Python 3.14.
# - https://github.com/googleapis/python-aiplatform/issues/7057
"google-cloud-aiplatform[evaluation]>=1.164.0",
"ray[default]>=2.42.0;python_version<'3.13'",
"ray[default]>=2.49.0;python_version>='3.13' and python_version <'3.14'",
"ray[default]>=2.55.0;python_version>='3.14' and python_version <'3.15'",
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1571,6 +1571,12 @@ apache-airflow-task-sdk-integration-tests = false
# past that release so 1.2.0 resolves while any later release stays quarantined.
# Remove once the rolling window advances past 2026-07-15.
pydantic-ai-skills = "2026-07-16T00:00:00Z"
# Temporary: google-cloud-aiplatform 1.164.0 is the first release whose "evaluation" extra
# allows the litellm versions that carry the Python 3.14 security fixes, and it was published
# 2026-08-12, inside the "4 days" exclude-newer window. This pins the per-package cutoff just
# past that release so 1.164.0 resolves while any later release stays quarantined.
# Remove once the rolling window advances past 2026-08-12.
google-cloud-aiplatform = "2026-08-13T00:00:00Z"

[tool.uv.pip]
# Synchroonize with scripts/ci/prek/upgrade_important_versions.py
Expand Down Expand Up @@ -1719,6 +1725,8 @@ apache-airflow-task-sdk-integration-tests = false
# `[tool.uv.exclude-newer-package]` above for rationale.
# Temporary: see the pydantic-ai-skills note in `[tool.uv.exclude-newer-package]`.
pydantic-ai-skills = "2026-07-16T00:00:00Z"
# Temporary: see the google-cloud-aiplatform note in `[tool.uv.exclude-newer-package]`.
google-cloud-aiplatform = "2026-08-13T00:00:00Z"

[tool.uv.sources]
# These names must match the names as defined in the pyproject.toml of the workspace items,
Expand Down
Loading
Loading