Skip to content
Closed
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
4 changes: 2 additions & 2 deletions deps/cpython/cpython.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "ht

constants_repo = use_repo_rule("//bazel/repo:constants_repo.bzl", "constants_repo")

PYTHON_VERSION = "3.13.14"
PYTHON_VERSION = "3.13.15"

PYTHON_MAJOR_MINOR = ".".join(PYTHON_VERSION.split(".")[:2])

Expand Down Expand Up @@ -32,7 +32,7 @@ http_archive(
"//deps/cpython:0004-Skip-bytecode-compilation-during-install.patch",
"//deps/cpython:0005-Honor-explicit-libffi-flags-on-Darwin.patch",
],
sha256 = "5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41",
sha256 = "c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9",
strip_prefix = "Python-{}".format(PYTHON_VERSION),
url = "https://python.org/ftp/python/{0}/Python-{0}.tgz".format(PYTHON_VERSION),
)
Expand Down
2 changes: 1 addition & 1 deletion omnibus/config/software/python3.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name "python3"

default_version "3.13.14"
default_version "3.13.15"

This comment was marked as outdated.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems right. You have to update the aix script.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think you need either of
default_version or relative_path.

I made #54744 to try it.

If that passes CI, you can do the same here.
Or do nothing in this PR and we'll merge mine to kill it.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good! If you're passes - we can just use it. Otherwise, I can continue.



relative_path "Python-#{version}"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
enhancements:
- |
The Agent's embedded Python has been upgraded from 3.13.14 to 3.13.15
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const (
ExpectedPythonVersion2 = "2.7.18"
// ExpectedPythonVersion3 is the expected python 3 version
// Bump this version when the version in omnibus/config/software/python3.rb changes
ExpectedPythonVersion3 = "3.13.14"
ExpectedPythonVersion3 = "3.13.15"
// ExpectedUnloadedPython is the status value for uninitialized lazy loaded python runtime
ExpectedUnloadedPython = "unused"
)
Expand Down
Loading