Skip to content

Commit 953424e

Browse files
yifanyangcopybara-github
authored andcommitted
chore: Removing Python 3.9 support due to EOL
PiperOrigin-RevId: 907832466
1 parent 68f053e commit 953424e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

vertexai/_genai/types/common.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7608,7 +7608,7 @@ class ReasoningEngineSpecPackageSpec(_common.BaseModel):
76087608
)
76097609
python_version: Optional[str] = Field(
76107610
default=None,
7611-
description="""Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10.""",
7611+
description="""Optional. The Python version. Supported values are 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10.""",
76127612
)
76137613
requirements_gcs_uri: Optional[str] = Field(
76147614
default=None,
@@ -7626,7 +7626,7 @@ class ReasoningEngineSpecPackageSpecDict(TypedDict, total=False):
76267626
"""Optional. The Cloud Storage URI of the pickled python object."""
76277627

76287628
python_version: Optional[str]
7629-
"""Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10."""
7629+
"""Optional. The Python version. Supported values are 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10."""
76307630

76317631
requirements_gcs_uri: Optional[str]
76327632
"""Optional. The Cloud Storage URI of the `requirements.txt` file"""
@@ -7820,7 +7820,7 @@ class ReasoningEngineSpecSourceCodeSpecPythonSpec(_common.BaseModel):
78207820
)
78217821
version: Optional[str] = Field(
78227822
default=None,
7823-
description="""Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.""",
7823+
description="""Optional. The version of Python to use. Support version includes 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.""",
78247824
)
78257825

78267826

@@ -7837,7 +7837,7 @@ class ReasoningEngineSpecSourceCodeSpecPythonSpecDict(TypedDict, total=False):
78377837
"""Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt"."""
78387838

78397839
version: Optional[str]
7840-
"""Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10."""
7840+
"""Optional. The version of Python to use. Support version includes 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10."""
78417841

78427842

78437843
ReasoningEngineSpecSourceCodeSpecPythonSpecOrDict = Union[

0 commit comments

Comments
 (0)