diff --git a/deps/cpython/cpython.MODULE.bazel b/deps/cpython/cpython.MODULE.bazel index 91e4a4965829..16283525c803 100644 --- a/deps/cpython/cpython.MODULE.bazel +++ b/deps/cpython/cpython.MODULE.bazel @@ -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]) @@ -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), ) diff --git a/omnibus/config/software/python3.rb b/omnibus/config/software/python3.rb index fbfc7d226fcc..7fe67a5b6479 100644 --- a/omnibus/config/software/python3.rb +++ b/omnibus/config/software/python3.rb @@ -1,6 +1,6 @@ name "python3" -default_version "3.13.14" +default_version "3.13.15" relative_path "Python-#{version}" diff --git a/releasenotes/notes/Bump-embedded-Python-to-3.13.15-8e2c1fb460be861e.yaml b/releasenotes/notes/Bump-embedded-Python-to-3.13.15-8e2c1fb460be861e.yaml new file mode 100644 index 000000000000..7c4b1a47beb0 --- /dev/null +++ b/releasenotes/notes/Bump-embedded-Python-to-3.13.15-8e2c1fb460be861e.yaml @@ -0,0 +1,4 @@ +--- +enhancements: +- | + The Agent's embedded Python has been upgraded from 3.13.14 to 3.13.15 diff --git a/test/new-e2e/tests/agent-platform/common/agent_behaviour.go b/test/new-e2e/tests/agent-platform/common/agent_behaviour.go index b661dbf79679..a32e9d93b983 100644 --- a/test/new-e2e/tests/agent-platform/common/agent_behaviour.go +++ b/test/new-e2e/tests/agent-platform/common/agent_behaviour.go @@ -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" )