Skip to content

Commit

Permalink
feat: Support Python 3.12 for reasoning engine.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 724006919
  • Loading branch information
shawn-yang-google authored and copybara-github committed Feb 6, 2025
1 parent aabb579 commit 1624a23
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vertexai/reasoning_engines/_reasoning_engines.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@


_LOGGER = base.Logger(__name__)
_SUPPORTED_PYTHON_VERSIONS = ("3.8", "3.9", "3.10", "3.11")
_SUPPORTED_PYTHON_VERSIONS = ("3.8", "3.9", "3.10", "3.11", "3.12")
_DEFAULT_GCS_DIR_NAME = "reasoning_engine"
_BLOB_FILENAME = "reasoning_engine.pkl"
_REQUIREMENTS_FILE = "requirements.txt"
Expand Down Expand Up @@ -224,8 +224,9 @@ def create(
use for staging the artifacts needed.
sys_version (str):
Optional. The Python system version used. Currently supports any
of "3.8", "3.9", "3.10", "3.11". If not specified, it defaults
to the "{major}.{minor}" attributes of sys.version_info.
of "3.8", "3.9", "3.10", "3.11", "3.12". If not specified,
it defaults to the "{major}.{minor}" attributes of
sys.version_info.
extra_packages (Sequence[str]):
Optional. The set of extra user-provided packages (if any).
Expand Down

0 comments on commit 1624a23

Please sign in to comment.