Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Support Python 3.12 for reasoning engine. #4836

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
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
Loading