Skip to content

Commit 7b84771

Browse files
shawn-yang-googlecopybara-github
authored andcommitted
feat: Support Python 3.14 for reasoning engine.
PiperOrigin-RevId: 853820058
1 parent c8c0f0f commit 7b84771

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vertexai/agent_engines/_agent_engines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454

5555
_LOGGER = _utils.LOGGER
56-
_SUPPORTED_PYTHON_VERSIONS = ("3.9", "3.10", "3.11", "3.12", "3.13")
56+
_SUPPORTED_PYTHON_VERSIONS = ("3.9", "3.10", "3.11", "3.12", "3.13", "3.14")
5757
_DEFAULT_GCS_DIR_NAME = "agent_engine"
5858
_BLOB_FILENAME = "agent_engine.pkl"
5959
_REQUIREMENTS_FILE = "requirements.txt"

vertexai/reasoning_engines/_reasoning_engines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949

5050
_LOGGER = base.Logger(__name__)
51-
_SUPPORTED_PYTHON_VERSIONS = ("3.9", "3.10", "3.11", "3.12", "3.13")
51+
_SUPPORTED_PYTHON_VERSIONS = ("3.9", "3.10", "3.11", "3.12", "3.13", "3.14")
5252
_DEFAULT_GCS_DIR_NAME = "reasoning_engine"
5353
_BLOB_FILENAME = "reasoning_engine.pkl"
5454
_REQUIREMENTS_FILE = "requirements.txt"

0 commit comments

Comments
 (0)