From 85e7778a66f3d759dfa04f42b445f38f16a8deea Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sun, 31 May 2026 08:00:26 +0000 Subject: [PATCH 01/53] feat(toolchains): support dynamic registration from remote manifest Currently, all supported Python runtime versions and their platform-specific metadata (URLs, SHA256s, strip_prefix) must be hardcoded in `python/versions.bzl`. This makes it slow and difficult to adopt new Python versions or custom builds without updating `rules_python` itself. This PR introduces the ability to dynamically fetch and register Python runtimes from a remote python-build-standalone (PBS) manifest file (e.g., `SHA256SUMS`). This is supported via two new attributes in `python.override`: - `add_runtime_manifest_urls`: A list of URLs pointing to manifest files to parse and register. - `runtime_manifest_sha`: The SHA256 hash of the manifest file. --- .bazelrc.deleted_packages | 1 + CHANGELOG.md | 3 + docs/toolchains.md | 61 +++++++ python/private/BUILD.bazel | 6 + python/private/pbs_manifest.bzl | 116 +++++++++++++ python/private/python.bzl | 103 +++++++++++- tests/integration/BUILD.bazel | 4 + tests/integration/runtime_manifests/.bazelrc | 4 + .../integration/runtime_manifests/BUILD.bazel | 7 + .../runtime_manifests/MODULE.bazel | 19 +++ tests/integration/runtime_manifests/WORKSPACE | 1 + .../runtime_manifests/basic_test.py | 27 +++ tests/python_bzlmod_ext/BUILD.bazel | 6 + .../parse_sha_manifest_tests.bzl | 155 ++++++++++++++++++ .../runtime_manifests_tests.bzl | 96 +++++++++++ tests/support/mocks/BUILD.bazel | 6 + tests/support/mocks/python_ext.bzl | 102 ++++++++++++ .../private/debug/print_defined_toolchains.sh | 14 ++ 18 files changed, 729 insertions(+), 2 deletions(-) create mode 100644 python/private/pbs_manifest.bzl create mode 100644 tests/integration/runtime_manifests/.bazelrc create mode 100644 tests/integration/runtime_manifests/BUILD.bazel create mode 100644 tests/integration/runtime_manifests/MODULE.bazel create mode 100644 tests/integration/runtime_manifests/WORKSPACE create mode 100644 tests/integration/runtime_manifests/basic_test.py create mode 100644 tests/python_bzlmod_ext/BUILD.bazel create mode 100644 tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl create mode 100644 tests/python_bzlmod_ext/runtime_manifests_tests.bzl create mode 100644 tests/support/mocks/python_ext.bzl create mode 100755 tools/private/debug/print_defined_toolchains.sh diff --git a/.bazelrc.deleted_packages b/.bazelrc.deleted_packages index f4ea8527f3..b84214a1c7 100644 --- a/.bazelrc.deleted_packages +++ b/.bazelrc.deleted_packages @@ -38,6 +38,7 @@ common --deleted_packages=tests/integration/pip_parse common --deleted_packages=tests/integration/pip_parse/empty common --deleted_packages=tests/integration/pip_parse_isolated common --deleted_packages=tests/integration/py_cc_toolchain_registered +common --deleted_packages=tests/integration/runtime_manifests common --deleted_packages=tests/integration/toolchain_target_settings common --deleted_packages=tests/modules/another_module common --deleted_packages=tests/modules/other diff --git a/CHANGELOG.md b/CHANGELOG.md index bf6fe3095c..e7c56543fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -104,6 +104,9 @@ END_UNRELEASED_TEMPLATE {#v0-0-0-added} ### Added +* (toolchains) Support dynamically fetching and registering Python runtimes + from a python-build-standalone manifest file using + `python.override(add_runtime_manifest_urls = ..., runtime_manifest_sha = ...)`. * (toolchain) Added {obj}`python.override.toolchain_target_settings` to allow adding `config_setting` labels to all registered toolchains. * (windows) Full venv support for Windows is available. Set diff --git a/docs/toolchains.md b/docs/toolchains.md index 09aaed412b..b048c74a1e 100644 --- a/docs/toolchains.md +++ b/docs/toolchains.md @@ -242,6 +242,8 @@ existing attributes: {attr}`python.single_version_platform_override.coverage_tool`. * Adding additional Python versions via {bzl:obj}`python.single_version_override` or {bzl:obj}`python.single_version_platform_override`. +* Adding additional Python versions dynamically from a remote manifest file + via {attr}`python.override.add_runtime_manifest_urls`. ### Registering custom runtimes @@ -310,6 +312,65 @@ Added support for custom platform names, `target_compatible_with`, and `target_settings` with `single_version_platform_override`. ::: +### Registering runtimes from a manifest + +If you want to register multiple custom runtimes or versions at once, you can +use a python-build-standalone manifest file. This is useful if you want to +adopt new versions that are not yet built into `rules_python` without having +to manually define each one using `single_version_platform_override`. + +To do this, specify the `add_runtime_manifest_urls` and `runtime_manifest_sha` +attributes in `python.override` in your `MODULE.bazel`. + +In the example below, we register all runtimes available in a specific PBS +release manifest: + +``` +# File: MODULE.bazel +python = use_extension("@rules_python//python/extensions:python.bzl", "python") +python.override( + add_runtime_manifest_urls = [ + "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/SHA256SUMS", + ], + runtime_manifest_sha = "ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f", +) +``` + +#### Manifest file format + +The manifest must be a plain text file where each line contains the SHA256 hash +and the location of a runtime archive, separated by whitespace: + +``` + +``` + +The `` can be either: +- A relative filename (e.g., + `cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.zst`). + In this case, the download URL is constructed by appending the filename to the + parent directory of each URL in `add_runtime_manifest_urls` (treating them as + mirrors). +- An absolute URL (e.g., + `https://example.com/downloads/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.zst`). + In this case, the URL is used directly to download the archive. + +In both cases, the filename or the last path segment of the URL must follow the +standard python-build-standalone naming convention. `rules_python` parses this +name to extract runtime metadata (such as Python version, target architecture, +operating system, and libc). + +Notes: +- `rules_python` will download the manifest, parse it, and automatically + register toolchains for all valid Python runtimes found in it that match + supported platforms. +- Only runtimes matching known platforms in `rules_python` will be registered. + +:::{versionadded} VERSION_NEXT_FEATURE +Added support for registering runtimes from a manifest using +`add_runtime_manifest_urls` and `runtime_manifest_sha` in `python.override`. +::: + ### Using defined toolchains from WORKSPACE It is possible to use toolchains defined in `MODULE.bazel` in `WORKSPACE`. For example, diff --git a/python/private/BUILD.bazel b/python/private/BUILD.bazel index 6ab3d546be..b54c198069 100644 --- a/python/private/BUILD.bazel +++ b/python/private/BUILD.bazel @@ -252,6 +252,11 @@ bzl_library( srcs = ["normalize_name.bzl"], ) +bzl_library( + name = "pbs_manifest_bzl", + srcs = ["pbs_manifest.bzl"], +) + bzl_library( name = "precompile_bzl", srcs = ["precompile.bzl"], @@ -274,6 +279,7 @@ bzl_library( srcs = ["python.bzl"], deps = [ ":full_version_bzl", + ":pbs_manifest_bzl", ":platform_info_bzl", ":python_register_toolchains_bzl", ":pythons_hub_bzl", diff --git a/python/private/pbs_manifest.bzl b/python/private/pbs_manifest.bzl new file mode 100644 index 0000000000..495e4af907 --- /dev/null +++ b/python/private/pbs_manifest.bzl @@ -0,0 +1,116 @@ +"""Helper functions to parse python-build-standalone manifests.""" + +def parse_filename(filename): + """Parses a python-build-standalone filename (or URL) into its components. + + Example: cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst + + Args: + filename: The filename or URL of the python-build-standalone release asset. + + Returns: + A dictionary of parsed components if parsed successfully, else None. + """ + basename = filename.rpartition("/")[-1] + if basename.endswith(".tar.zst"): + name = basename.removesuffix(".tar.zst") + elif basename.endswith(".tar.gz"): + name = basename.removesuffix(".tar.gz") + else: + return None + + if not name.startswith("cpython-"): + return None + name = name.removeprefix("cpython-") + + left, plus, tail = name.partition("+") + if plus: + python_version = left + build_version, sep, rest = tail.partition("-") + if not sep: + return None + else: + python_version, sep, rest = left.partition("-") + if not sep: + return None + build_version = "" + + arch, sep, rest = rest.partition("-") + if not sep: + return None + + microarch = "" + arch_base, sep_v, microarch_num = arch.partition("_v") + if sep_v: + arch = arch_base + microarch = "v" + microarch_num + + vendor, sep, rest = rest.partition("-") + if not sep: + return None + + os, sep, rest = rest.partition("-") + if not sep: + return None + + libc = "" + next_part, _, remaining = rest.partition("-") + if os == "linux" and next_part in ["gnu", "musl"]: + libc = next_part + flavor = remaining + elif os == "windows" and next_part == "msvc": + libc = next_part + flavor = remaining + else: + libc = "" + flavor = rest + + return { + "arch": arch, + "build_version": build_version, + "flavor": flavor, + "libc": libc, + "location": filename, + "microarch": microarch, + "os": os, + "python_version": python_version, + "vendor": vendor, + } + +def parse_sha_manifest(content): + """Parses the SHA256SUMS file content into a list of structs. + + Args: + content: The raw content of the manifest file. + + Returns: + A list of structs capturing the parsed components of each valid entry. + Each struct contains the following fields: + - arch: CPU architecture (e.g., "x86_64"). + - build_version: Standalone release date (e.g., "20260414"). + - location: Full package filename or URL (e.g., "cpython-3.11.15..." or "https://..."). + - flavor: Build configuration flavor (e.g., "install_only"). + - libc: C library type (e.g., "gnu", "musl", "msvc", or ""). + - microarch: Microarchitecture level (e.g., "v2", "v3", or ""). + - os: Operating system (e.g., "linux", "darwin", "windows"). + - python_version: Python semver version (e.g., "3.11.15"). + - sha256: SHA256 integrity hash of the release asset. + - vendor: Platform vendor (e.g., "unknown", "apple"). + """ + results = [] + for line in content.split("\n"): + line = line.strip() + if not line: + continue + parts = [p for p in line.split(" ") if p] + if len(parts) != 2: + continue + sha256, filename = parts + + parsed = parse_filename(filename) + if parsed: + results.append(struct( + sha256 = sha256, + **parsed + )) + return results diff --git a/python/private/python.bzl b/python/private/python.bzl index 6abc81e3d2..8f3b97a2c6 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -18,6 +18,7 @@ load("@bazel_features//:features.bzl", "bazel_features") load("//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", "PLATFORMS", "TOOL_VERSIONS") load(":auth.bzl", "AUTH_ATTRS") load(":full_version.bzl", "full_version") +load(":pbs_manifest.bzl", "parse_sha_manifest") load(":platform_info.bzl", "platform_info") load(":python_register_toolchains.bzl", "python_register_toolchains") load(":pythons_hub.bzl", "hub_repo") @@ -76,7 +77,7 @@ def parse_modules(*, module_ctx, logger = None, _fail = fail): # Map of string Major.Minor or Major.Minor.Patch to the toolchain_info struct global_toolchain_versions = {} - config = _get_toolchain_config(modules = module_ctx.modules, _fail = _fail) + config = _get_toolchain_config(mctx = module_ctx, modules = module_ctx.modules, _fail = _fail) default_python_version = _compute_default_python_version(module_ctx) @@ -741,10 +742,71 @@ def _override_defaults(*overrides, modules, _fail = fail, default): override.fn(tag = tag, _fail = _fail, default = default) -def _get_toolchain_config(*, modules, _fail = fail): +def _populate_from_pbs_manifest(*, mctx, add_runtime_manifest_urls, runtime_manifest_sha = "", available_versions, _fail): + manifest_path = mctx.path("runtime_manifest") + result = mctx.download( + url = add_runtime_manifest_urls, + output = manifest_path, + sha256 = runtime_manifest_sha, + ) + if not result.success: + _fail("Failed to download manifest from {}: {}".format(add_runtime_manifest_urls, result)) + return + + content = mctx.read(manifest_path) + base_download_urls = [url.rpartition("/")[0] for url in add_runtime_manifest_urls] + + parsed_entries = parse_sha_manifest(content) + + for entry in parsed_entries: + location = entry.location + sha256 = entry.sha256 + py_version = entry.python_version + + # Fallback to matching against PLATFORMS keys as before to ensure compatibility + # with rules_python expected platform keys. + matched_platform = None + for platform in PLATFORMS.keys(): + if platform in location: + matched_platform = platform + break + + if not matched_platform: + continue + + expects_full = matched_platform in [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "ppc64le-unknown-linux-gnu", + "riscv64-unknown-linux-gnu", + "s390x-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + ] + is_full = entry.flavor.endswith("-full") + if expects_full != is_full: + continue + + if "://" in location: + urls = [location] + else: + urls = ["{}/{}".format(base_url, location) for base_url in base_download_urls] + + v_dict = available_versions.setdefault(py_version, {}) + v_dict.setdefault("sha256", {})[matched_platform] = sha256 + v_dict.setdefault("url", {})[matched_platform] = urls + if is_full: + v_dict.setdefault("strip_prefix", {})[matched_platform] = "python/install" + else: + v_dict.setdefault("strip_prefix", {})[matched_platform] = "python" + +def _get_toolchain_config(*, mctx, modules, _fail = fail): """Computes the configs for toolchains. Args: + mctx: The module context. modules: The modules from module_ctx _fail: Function to call for failing; only used for testing. @@ -786,6 +848,19 @@ def _get_toolchain_config(*, modules, _fail = fail): else: available_versions[py_version]["url"] = dict(url) + # Check for add_runtime_manifest_urls in override tags in root module + root_module = modules[0] if modules else None + if root_module and root_module.is_root: + for tag in root_module.tags.override: + if tag.add_runtime_manifest_urls: + _populate_from_pbs_manifest( + mctx = mctx, + add_runtime_manifest_urls = tag.add_runtime_manifest_urls, + runtime_manifest_sha = tag.runtime_manifest_sha, + available_versions = available_versions, + _fail = _fail, + ) + default = { "base_url": DEFAULT_RELEASE_BASE_URL, "platforms": dict(PLATFORMS), # Copy so it's mutable. @@ -1111,6 +1186,21 @@ _override = tag_class( ::: """, attrs = { + "add_runtime_manifest_urls": attr.string_list( + mandatory = False, + doc = """ +URLs pointing to python-build-standalone manifest files (e.g., SHA256SUMS). + +Example: +`https://github.com/astral-sh/python-build-standalone/releases/download/20260414/SHA256SUMS` + +Note that `/latest/` can be used in place of a specific release date (e.g., `20260414`) to automatically use the latest release: +`https://github.com/astral-sh/python-build-standalone/releases/latest/download/SHA256SUMS` + +:::{versionadded} VERSION_NEXT_FEATURE +::: +""", + ), "add_target_settings": attr.string_list( mandatory = False, doc = """\ @@ -1180,6 +1270,15 @@ The values in this mapping override the default values and do not replace them. default = {}, ), "register_all_versions": attr.bool(default = False, doc = "Add all versions"), + "runtime_manifest_sha": attr.string( + mandatory = False, + doc = """ +SHA256 hash for the add_runtime_manifest_urls. + +:::{versionadded} VERSION_NEXT_FEATURE +::: +""", + ), } | AUTH_ATTRS, ) diff --git a/tests/integration/BUILD.bazel b/tests/integration/BUILD.bazel index 9295cbb22f..81d0d13ac6 100644 --- a/tests/integration/BUILD.bazel +++ b/tests/integration/BUILD.bazel @@ -101,6 +101,10 @@ rules_python_integration_test( workspace_path = "py_cc_toolchain_registered", ) +rules_python_integration_test( + name = "runtime_manifests_test", +) + rules_python_integration_test( name = "custom_commands_test", py_main = "custom_commands_test.py", diff --git a/tests/integration/runtime_manifests/.bazelrc b/tests/integration/runtime_manifests/.bazelrc new file mode 100644 index 0000000000..d4d45a5ea7 --- /dev/null +++ b/tests/integration/runtime_manifests/.bazelrc @@ -0,0 +1,4 @@ +# Copy of fast-tests config +common:fast-tests --build_tests_only=true +common:fast-tests --build_tag_filters=-large,-enormous,-integration-test +common:fast-tests --test_tag_filters=-large,-enormous,-integration-test diff --git a/tests/integration/runtime_manifests/BUILD.bazel b/tests/integration/runtime_manifests/BUILD.bazel new file mode 100644 index 0000000000..4746fd419b --- /dev/null +++ b/tests/integration/runtime_manifests/BUILD.bazel @@ -0,0 +1,7 @@ +load("@rules_python//python:py_test.bzl", "py_test") + +py_test( + name = "basic_test", + srcs = ["basic_test.py"], + python_version = "3.11", +) diff --git a/tests/integration/runtime_manifests/MODULE.bazel b/tests/integration/runtime_manifests/MODULE.bazel new file mode 100644 index 0000000000..6891b07818 --- /dev/null +++ b/tests/integration/runtime_manifests/MODULE.bazel @@ -0,0 +1,19 @@ +module(name = "runtime_manifests") + +bazel_dep(name = "rules_python", version = "0.0.0") +local_path_override( + module_name = "rules_python", + path = "../../..", +) + +python = use_extension("@rules_python//python/extensions:python.bzl", "python") +python.override( + add_runtime_manifest_urls = [ + "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/SHA256SUMS", + ], + register_all_versions = True, + runtime_manifest_sha = "ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f", +) +python.toolchain( + python_version = "3.11.15", +) diff --git a/tests/integration/runtime_manifests/WORKSPACE b/tests/integration/runtime_manifests/WORKSPACE new file mode 100644 index 0000000000..8277ec8090 --- /dev/null +++ b/tests/integration/runtime_manifests/WORKSPACE @@ -0,0 +1 @@ +# Workspace boundary file required by rules_bazel_integration_test diff --git a/tests/integration/runtime_manifests/basic_test.py b/tests/integration/runtime_manifests/basic_test.py new file mode 100644 index 0000000000..35f0e93b6e --- /dev/null +++ b/tests/integration/runtime_manifests/basic_test.py @@ -0,0 +1,27 @@ +import datetime +import platform +import sys +import unittest + + +class BasicTest(unittest.TestCase): + def test_basic(self): + print("Hello World from Python {}!".format(sys.version)) + print("Interpreter executable path: {}".format(sys.executable)) + + # Verify that the hermetic interpreter inside Bazel's output/sandbox tree is used + self.assertIn(".cache/bazel", sys.executable) + + # Verify that the exact custom version (3.11.15) parsed from the manifest is used + self.assertEqual(sys.version_info[:3], (3, 11, 15)) + + # Verify that the exact build version (20260414) parsed from the manifest is used + buildno, builddate = platform.python_build() + date_str = " ".join(builddate.split()[:3]) + dt = datetime.datetime.strptime(date_str, "%b %d %Y") + formatted_date = dt.strftime("%Y%m%d") + self.assertEqual(formatted_date, "20260414") + + +if __name__ == "__main__": + unittest.main() diff --git a/tests/python_bzlmod_ext/BUILD.bazel b/tests/python_bzlmod_ext/BUILD.bazel new file mode 100644 index 0000000000..73bc7e0a65 --- /dev/null +++ b/tests/python_bzlmod_ext/BUILD.bazel @@ -0,0 +1,6 @@ +load(":parse_sha_manifest_tests.bzl", "parse_sha_manifest_test_suite") +load(":runtime_manifests_tests.bzl", "runtime_manifests_test_suite") + +parse_sha_manifest_test_suite(name = "parse_sha_manifest_tests") + +runtime_manifests_test_suite(name = "runtime_manifests_tests") diff --git a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl b/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl new file mode 100644 index 0000000000..27cabab25a --- /dev/null +++ b/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl @@ -0,0 +1,155 @@ +"""Tests for manifest parsing Starlark functions.""" + +load("@bazel_skylib//lib:structs.bzl", "structs") +load("@rules_testing//lib:analysis_test.bzl", "analysis_test") +load("@rules_testing//lib:test_suite.bzl", "test_suite") +load("@rules_testing//lib:util.bzl", rt_util = "util") +load("//python/private:pbs_manifest.bzl", "parse_filename", "parse_sha_manifest") # buildifier: disable=bzl-visibility + +_tests = [] + +def _test_parse_filename_baseline(name): + """Sets up the baseline filename parsing test. + + Args: + name: The name of the test. + """ + rt_util.helper_target( + native.filegroup, + name = name + "_subject", + ) + analysis_test( + name = name, + target = name + "_subject", + impl = _test_parse_filename_baseline_impl, + ) + +def _test_parse_filename_baseline_impl(env, target): + _ = target # @unused + + # 1. Baseline + parsed1 = parse_filename("cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz") + env.expect.that_dict(parsed1).contains_exactly({ + "arch": "x86_64", + "build_version": "20260414", + "flavor": "install_only", + "libc": "gnu", + "location": "cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", + "microarch": "", + "os": "linux", + "python_version": "3.11.15", + "vendor": "unknown", + }) + + # 2. Microarch + parsed2 = parse_filename("cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst") + env.expect.that_dict(parsed2).contains_exactly({ + "arch": "x86_64", + "build_version": "20260414", + "flavor": "lto-full", + "libc": "musl", + "location": "cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", + "microarch": "v2", + "os": "linux", + "python_version": "3.10.20", + "vendor": "unknown", + }) + + # 3. Freethreaded + parsed3 = parse_filename("cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst") + env.expect.that_dict(parsed3).contains_exactly({ + "arch": "aarch64", + "build_version": "20260414", + "flavor": "freethreaded+pgo+lto-full", + "libc": "", + "location": "cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst", + "microarch": "", + "os": "darwin", + "python_version": "3.13.13", + "vendor": "apple", + }) + + # 4. Invalid + parsed4 = parse_filename("invalid-filename.tar.gz") + env.expect.that_bool(parsed4 == None).equals(True) + + # 5. Full URL (should return the original URL as location) + parsed5 = parse_filename("https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz") + env.expect.that_dict(parsed5).contains_exactly({ + "arch": "x86_64", + "build_version": "20260414", + "flavor": "install_only", + "libc": "gnu", + "location": "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", + "microarch": "", + "os": "linux", + "python_version": "3.11.15", + "vendor": "unknown", + }) + +_tests.append(_test_parse_filename_baseline) + +def _test_parse_sha_manifest(name): + """Sets up the manifest file parsing test. + + Args: + name: The name of the test. + """ + rt_util.helper_target( + native.filegroup, + name = name + "_subject", + ) + analysis_test( + name = name, + target = name + "_subject", + impl = _test_parse_sha_manifest_impl, + ) + +def _test_parse_sha_manifest_impl(env, target): + _ = target # @unused + content = """ +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://example.com/cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst +""" + parsed = parse_sha_manifest(content) + env.expect.that_collection(parsed).has_size(3) + + env.expect.that_dict(structs.to_dict(parsed[0])).contains_exactly({ + "arch": "x86_64", + "build_version": "20260414", + "flavor": "install_only", + "libc": "gnu", + "location": "cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", + "microarch": "", + "os": "linux", + "python_version": "3.11.15", + "sha256": "8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc", + "vendor": "unknown", + }) + + env.expect.that_dict(structs.to_dict(parsed[2])).contains_exactly({ + "arch": "x86_64", + "build_version": "20260414", + "flavor": "lto-full", + "libc": "musl", + "location": "https://example.com/cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", + "microarch": "v2", + "os": "linux", + "python_version": "3.10.20", + "sha256": "ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f", + "vendor": "unknown", + }) + +_tests.append(_test_parse_sha_manifest) + +def parse_sha_manifest_test_suite(name): + """Defines the test suite for manifest parsing. + + Args: + name: The name of the test suite. + """ + test_suite( + name = name, + tests = _tests, + ) diff --git a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl new file mode 100644 index 0000000000..45c7406375 --- /dev/null +++ b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl @@ -0,0 +1,96 @@ +"""Starlark unit tests for dynamic toolchain registration via manifests.""" + +load("@rules_testing//lib:analysis_test.bzl", "analysis_test") +load("@rules_testing//lib:test_suite.bzl", "test_suite") +load("@rules_testing//lib:util.bzl", rt_util = "util") +load("//python/private:python.bzl", "parse_modules") # buildifier: disable=bzl-visibility +load("//python/private:repo_utils.bzl", "repo_utils") # buildifier: disable=bzl-visibility +load("//tests/support/mocks:mocks.bzl", "mocks") # buildifier: disable=bzl-visibility +load("//tests/support/mocks:python_ext.bzl", "python_ext") # buildifier: disable=bzl-visibility + +_tests = [] + +_mock_logger = repo_utils.logger( + name = "mock", + verbosity_level = "ERROR", +) + +def _test_dynamic_manifest_toolchains(name): + rt_util.helper_target( + native.filegroup, + name = name + "_subject", + ) + analysis_test( + name = name, + target = name + "_subject", + impl = _test_dynamic_manifest_toolchains_impl, + ) + +def _test_dynamic_manifest_toolchains_impl(env, target): + _ = target # @unused + + # Construct Bzlmod mock module locally inside the test execution block. + # We test using virtual patch version "3.11.99" (not present in TOOL_VERSIONS) + # so that the populated config contains ONLY our dynamically parsed manifest keys + # without any pre-populated multi-platform templates, allowing exact dictionary match! + root_module = python_ext.module( + name = "runtime_manifests", + override = [ + python_ext.override( + add_runtime_manifest_urls = [ + "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/SHA256SUMS", + ], + runtime_manifest_sha = "ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f", + register_all_versions = True, + ), + ], + defaults = [ + python_ext.defaults( + python_version = "3.11.99", + ), + ], + ) + + # Pre-populate mock_files directly to bypass download output struct key mismatch in mock read lookups. + mock_mctx = mocks.mctx( + modules = [root_module], + mock_files = { + "runtime_manifest": """ +01e607cf764b97d4d5d6f69fd1ff3d8a9a162513dde5c39e98260fce40fe220a cpython-3.11.99+20260414-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc cpython-3.11.99+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +""", + }, + ) + + res = parse_modules( + module_ctx = mock_mctx, + logger = _mock_logger, + ) + + tool_versions = res.config.default["tool_versions"] + env.expect.that_bool("3.11.99" in tool_versions).equals(True) + + version_info = tool_versions["3.11.99"] + + # Assert on the entire dictionary at once! + env.expect.that_dict(version_info).contains_exactly({ + "sha256": { + "x86_64-unknown-linux-gnu": "01e607cf764b97d4d5d6f69fd1ff3d8a9a162513dde5c39e98260fce40fe220a", + }, + "strip_prefix": { + "x86_64-unknown-linux-gnu": "python/install", + }, + "url": { + "x86_64-unknown-linux-gnu": [ + "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.99+20260414-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + ], + }, + }) + +_tests.append(_test_dynamic_manifest_toolchains) + +def runtime_manifests_test_suite(name): + test_suite( + name = name, + tests = _tests, + ) diff --git a/tests/support/mocks/BUILD.bazel b/tests/support/mocks/BUILD.bazel index 45949fc578..07bdb2bffc 100644 --- a/tests/support/mocks/BUILD.bazel +++ b/tests/support/mocks/BUILD.bazel @@ -10,4 +10,10 @@ bzl_library( srcs = ["mocks.bzl"], ) +bzl_library( + name = "python_ext_bzl", + srcs = ["python_ext.bzl"], + deps = [":mocks_bzl"], +) + mocks_test_suite(name = "mocks_tests") diff --git a/tests/support/mocks/python_ext.bzl b/tests/support/mocks/python_ext.bzl new file mode 100644 index 0000000000..6f76ec785b --- /dev/null +++ b/tests/support/mocks/python_ext.bzl @@ -0,0 +1,102 @@ +"""Helper for defining a mock module for the python bzlmod extension.""" + +load("//tests/support/mocks:mocks.bzl", "mocks") # buildifier: disable=bzl-visibility + +def _module(name = "rules_python", is_root = True, **tags): + """Creates a mock Bzlmod module struct with defaulted tag lists. + + Args: + name: The module name. + is_root: Whether this is the root module. + **tags: Lists of tag objects. + + Returns: + A mock module struct. + """ + defaulted_tags = { + "defaults": [], + "override": [], + "single_version_override": [], + "single_version_platform_override": [], + "toolchain": [], + } + defaulted_tags.update(tags) + return mocks.module(name = name, is_root = is_root, **defaulted_tags) + +def _override(**kwargs): + """Creates a mock python.override tag with default values.""" + attrs = { + "add_runtime_manifest_urls": [], + "add_target_settings": [], + "available_python_versions": [], + "base_url": "https://github.com/astral-sh/python-build-standalone/releases/download", + "ignore_root_user_error": True, + "minor_mapping": {}, + "register_all_versions": False, + "runtime_manifest_sha": "", + } + attrs.update(kwargs) + return mocks.tag(**attrs) + +def _defaults(**kwargs): + """Creates a mock python.defaults tag with default values.""" + attrs = { + "python_version": "", + "python_version_env": "", + } + attrs.update(kwargs) + return mocks.tag(**attrs) + +def _single_version_override(**kwargs): + """Creates a mock python.single_version_override tag with default values.""" + attrs = { + "distutils": None, + "distutils_content": "", + "patch_strip": 0, + "patches": [], + "python_version": "", + "sha256": {}, + "strip_prefix": "python", + "urls": [], + } + attrs.update(kwargs) + return mocks.tag(**attrs) + +def _single_version_platform_override(**kwargs): + """Creates a mock python.single_version_platform_override tag with default values.""" + attrs = { + "arch": "", + "coverage_tool": None, + "os_name": "", + "patch_strip": 0, + "patches": [], + "platform": "", + "python_version": "", + "sha256": "", + "strip_prefix": "python", + "target_compatible_with": [], + "target_settings": [], + "urls": [], + } + attrs.update(kwargs) + return mocks.tag(**attrs) + +def _toolchain(**kwargs): + """Creates a mock python.toolchain tag with default values.""" + attrs = { + "configure_coverage_tool": False, + "ignore_root_user_error": True, + "is_default": False, + "python_version": "", + } + attrs.update(kwargs) + return mocks.tag(**attrs) + +python_ext = struct( + defaults = _defaults, + module = _module, + override = _override, + single_version_override = _single_version_override, + single_version_platform_override = _single_version_platform_override, + toolchain = _toolchain, +) diff --git a/tools/private/debug/print_defined_toolchains.sh b/tools/private/debug/print_defined_toolchains.sh new file mode 100755 index 0000000000..1694dc975c --- /dev/null +++ b/tools/private/debug/print_defined_toolchains.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +set -euo pipefail + +# Programmatically probe which repository target name is resolved successfully inside this workspace +if bazel query @pythons_hub//... >/dev/null 2>&1; then + HUB_REPO="@pythons_hub" +elif bazel query @@rules_python++python+pythons_hub//... >/dev/null 2>&1; then + HUB_REPO="@@rules_python++python+pythons_hub" +else + HUB_REPO="@@+python+pythons_hub" +fi + +# Query standard toolchains inside the resolved hub repository, excluding CC and Exec Tools toolchains. +bazel query "kind('toolchain', ${HUB_REPO}//...) - filter('_py_cc_toolchain$', ${HUB_REPO}//...) - filter('_py_exec_tools_toolchain$', ${HUB_REPO}//...)" "$@" From 7533be344aada763617b982e9780829076095b10 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sun, 31 May 2026 21:58:00 +0000 Subject: [PATCH 02/53] test(python): bypass bzlmod extension unit tests under legacy workspace mode Workspace builds running under older Bazel versions do not support Bzlmod module extensions. This commit introduces Starlark helper macros to conditionally gate and register Bzlmod-specific unit tests, resolving test suite loading crashes in workspace CI jobs. --- tests/python/BUILD.bazel | 4 +- tests/python/python_tests.bzl | 6 ++- tests/python/test_helpers.bzl | 32 ++++++++++++++++ tests/python_bzlmod_ext/BUILD.bazel | 11 +++--- tests/python_bzlmod_ext/test_helpers.bzl | 48 ++++++++++++++++++++++++ 5 files changed, 93 insertions(+), 8 deletions(-) create mode 100644 tests/python/test_helpers.bzl create mode 100644 tests/python_bzlmod_ext/test_helpers.bzl diff --git a/tests/python/BUILD.bazel b/tests/python/BUILD.bazel index 2553536b63..92970d4a9c 100644 --- a/tests/python/BUILD.bazel +++ b/tests/python/BUILD.bazel @@ -12,6 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -load(":python_tests.bzl", "python_test_suite") +load(":test_helpers.bzl", "register_python_tests") -python_test_suite(name = "python_tests") +register_python_tests(name = "python_tests") diff --git a/tests/python/python_tests.bzl b/tests/python/python_tests.bzl index 60e7311c00..e753c1787b 100644 --- a/tests/python/python_tests.bzl +++ b/tests/python/python_tests.bzl @@ -54,7 +54,9 @@ def _override( minor_mapping = {}, netrc = "", register_all_versions = False, - add_target_settings = []): + add_target_settings = [], + add_runtime_manifest_urls = [], + runtime_manifest_sha = None): return struct( auth_patterns = auth_patterns, available_python_versions = available_python_versions, @@ -63,6 +65,8 @@ def _override( netrc = netrc, register_all_versions = register_all_versions, add_target_settings = add_target_settings, + add_runtime_manifest_urls = add_runtime_manifest_urls, + runtime_manifest_sha = runtime_manifest_sha, ) def _rules_python_module(is_root = False): diff --git a/tests/python/test_helpers.bzl b/tests/python/test_helpers.bzl new file mode 100644 index 0000000000..58059ce212 --- /dev/null +++ b/tests/python/test_helpers.bzl @@ -0,0 +1,32 @@ +# Copyright 2026 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers to conditionally register tests depending on Bzlmod enablement.""" + +load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility +load(":python_tests.bzl", "python_test_suite") + +def register_python_tests(name): + """Registers the python tests if Bzlmod is enabled, otherwise defines an empty test_suite. + + Args: + name: The name of the test target. + """ + if BZLMOD_ENABLED: + python_test_suite(name = name) + else: + native.test_suite( + name = name, + tests = [], + ) diff --git a/tests/python_bzlmod_ext/BUILD.bazel b/tests/python_bzlmod_ext/BUILD.bazel index 73bc7e0a65..0add4e7690 100644 --- a/tests/python_bzlmod_ext/BUILD.bazel +++ b/tests/python_bzlmod_ext/BUILD.bazel @@ -1,6 +1,7 @@ -load(":parse_sha_manifest_tests.bzl", "parse_sha_manifest_test_suite") -load(":runtime_manifests_tests.bzl", "runtime_manifests_test_suite") +load(":test_helpers.bzl", "register_python_bzlmod_ext_tests") -parse_sha_manifest_test_suite(name = "parse_sha_manifest_tests") - -runtime_manifests_test_suite(name = "runtime_manifests_tests") +register_python_bzlmod_ext_tests( + name = "python_bzlmod_ext_tests", + parse_sha_manifest_name = "parse_sha_manifest_tests", + runtime_manifests_name = "runtime_manifests_tests", +) diff --git a/tests/python_bzlmod_ext/test_helpers.bzl b/tests/python_bzlmod_ext/test_helpers.bzl new file mode 100644 index 0000000000..f6c177650a --- /dev/null +++ b/tests/python_bzlmod_ext/test_helpers.bzl @@ -0,0 +1,48 @@ +# Copyright 2026 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Helpers to conditionally register tests depending on Bzlmod enablement.""" + +load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility +load(":parse_sha_manifest_tests.bzl", "parse_sha_manifest_test_suite") +load(":runtime_manifests_tests.bzl", "runtime_manifests_test_suite") + +def register_python_bzlmod_ext_tests(name, parse_sha_manifest_name, runtime_manifests_name): + """Registers the Bzlmod extension tests if Bzlmod is enabled, otherwise defines empty test_suites. + + Args: + name: The name of the master test_suite target. + parse_sha_manifest_name: The name of the parse_sha_manifest test target. + runtime_manifests_name: The name of the runtime_manifests test target. + """ + if BZLMOD_ENABLED: + parse_sha_manifest_test_suite(name = parse_sha_manifest_name) + runtime_manifests_test_suite(name = runtime_manifests_name) + else: + native.test_suite( + name = parse_sha_manifest_name, + tests = [], + ) + native.test_suite( + name = runtime_manifests_name, + tests = [], + ) + + native.test_suite( + name = name, + tests = [ + parse_sha_manifest_name, + runtime_manifests_name, + ], + ) From 4cbfe5e911927fe4b330b247769ba35f70070112 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sun, 31 May 2026 21:58:22 +0000 Subject: [PATCH 03/53] refactor(test): inline python test helpers into python_tests.bzl Removes the external test_helpers.bzl under tests/python/ and inlines the register_python_tests macro directly inside python_tests.bzl. This simplifies the test suite layout while keeping legacy workspace gating completely intact. --- tests/python/BUILD.bazel | 2 +- tests/python/python_tests.bzl | 15 +++++++++++++++ tests/python/test_helpers.bzl | 32 -------------------------------- 3 files changed, 16 insertions(+), 33 deletions(-) delete mode 100644 tests/python/test_helpers.bzl diff --git a/tests/python/BUILD.bazel b/tests/python/BUILD.bazel index 92970d4a9c..887fe969b5 100644 --- a/tests/python/BUILD.bazel +++ b/tests/python/BUILD.bazel @@ -12,6 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -load(":test_helpers.bzl", "register_python_tests") +load(":python_tests.bzl", "register_python_tests") register_python_tests(name = "python_tests") diff --git a/tests/python/python_tests.bzl b/tests/python/python_tests.bzl index e753c1787b..c2a32400db 100644 --- a/tests/python/python_tests.bzl +++ b/tests/python/python_tests.bzl @@ -16,6 +16,7 @@ load("@pythons_hub//:versions.bzl", "MINOR_MAPPING") load("@rules_testing//lib:test_suite.bzl", "test_suite") +load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility load("//python/private:python.bzl", "parse_modules") # buildifier: disable=bzl-visibility load("//python/private:repo_utils.bzl", "repo_utils") # buildifier: disable=bzl-visibility load("//tests/support/mocks:mocks.bzl", "mocks") @@ -893,3 +894,17 @@ def python_test_suite(name): name: the name of the test suite """ test_suite(name = name, basic_tests = _tests) + +def register_python_tests(name): + """Registers the python tests if Bzlmod is enabled, otherwise defines an empty test_suite. + + Args: + name: The name of the test target. + """ + if BZLMOD_ENABLED: + python_test_suite(name = name) + else: + native.test_suite( + name = name, + tests = [], + ) diff --git a/tests/python/test_helpers.bzl b/tests/python/test_helpers.bzl deleted file mode 100644 index 58059ce212..0000000000 --- a/tests/python/test_helpers.bzl +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2026 The Bazel Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Helpers to conditionally register tests depending on Bzlmod enablement.""" - -load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility -load(":python_tests.bzl", "python_test_suite") - -def register_python_tests(name): - """Registers the python tests if Bzlmod is enabled, otherwise defines an empty test_suite. - - Args: - name: The name of the test target. - """ - if BZLMOD_ENABLED: - python_test_suite(name = name) - else: - native.test_suite( - name = name, - tests = [], - ) From 2f37ffc488f0186e15d77bbcaef4f047fc4d1232 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 6 Jun 2026 15:50:42 +0000 Subject: [PATCH 04/53] Add add_runtime_manifest_files to python.override Enables local PBS manifest file resolution in Bzlmod mode. Implemented attr.label_list attribute on python.override and updated _populate_from_pbs_manifest to read local files via module_ctx.read. --- python/private/python.bzl | 145 +++++++++++------- tests/python/python_tests.bzl | 2 + .../runtime_manifests_tests.bzl | 67 ++++++++ tests/support/mocks/python_ext.bzl | 1 + 4 files changed, 160 insertions(+), 55 deletions(-) diff --git a/python/private/python.bzl b/python/private/python.bzl index 8f3b97a2c6..a27af67ba6 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -742,65 +742,85 @@ def _override_defaults(*overrides, modules, _fail = fail, default): override.fn(tag = tag, _fail = _fail, default = default) -def _populate_from_pbs_manifest(*, mctx, add_runtime_manifest_urls, runtime_manifest_sha = "", available_versions, _fail): - manifest_path = mctx.path("runtime_manifest") - result = mctx.download( - url = add_runtime_manifest_urls, - output = manifest_path, - sha256 = runtime_manifest_sha, - ) - if not result.success: - _fail("Failed to download manifest from {}: {}".format(add_runtime_manifest_urls, result)) - return - - content = mctx.read(manifest_path) - base_download_urls = [url.rpartition("/")[0] for url in add_runtime_manifest_urls] - - parsed_entries = parse_sha_manifest(content) +def _populate_from_pbs_manifest( + *, + mctx, + add_runtime_manifest_urls = [], + add_runtime_manifest_files = [], + runtime_manifest_sha = "", + base_url = "", + available_versions, + _fail): + manifest_contents = [] + + if add_runtime_manifest_urls: + manifest_path = mctx.path("runtime_manifest") + result = mctx.download( + url = add_runtime_manifest_urls, + output = manifest_path, + sha256 = runtime_manifest_sha, + ) + if not result.success: + _fail("Failed to download manifest from {}: {}".format(add_runtime_manifest_urls, result)) + return + manifest_contents.append(mctx.read(manifest_path)) - for entry in parsed_entries: - location = entry.location - sha256 = entry.sha256 - py_version = entry.python_version + for manifest_file in add_runtime_manifest_files: + manifest_contents.append(mctx.read(manifest_file, watch = "yes")) - # Fallback to matching against PLATFORMS keys as before to ensure compatibility - # with rules_python expected platform keys. - matched_platform = None - for platform in PLATFORMS.keys(): - if platform in location: - matched_platform = platform - break + if not manifest_contents: + return - if not matched_platform: - continue + base_download_urls = [url.rpartition("/")[0] for url in add_runtime_manifest_urls] + if not base_download_urls and base_url: + base_download_urls = [base_url] + + for content in manifest_contents: + parsed_entries = parse_sha_manifest(content) + + for entry in parsed_entries: + location = entry.location + sha256 = entry.sha256 + py_version = entry.python_version + + # Fallback to matching against PLATFORMS keys as before to ensure compatibility + # with rules_python expected platform keys. + matched_platform = None + for platform in PLATFORMS.keys(): + if platform in location: + matched_platform = platform + break + + if not matched_platform: + continue - expects_full = matched_platform in [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "ppc64le-unknown-linux-gnu", - "riscv64-unknown-linux-gnu", - "s390x-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-musl", - ] - is_full = entry.flavor.endswith("-full") - if expects_full != is_full: - continue + expects_full = matched_platform in [ + "aarch64-apple-darwin", + "aarch64-unknown-linux-gnu", + "ppc64le-unknown-linux-gnu", + "riscv64-unknown-linux-gnu", + "s390x-unknown-linux-gnu", + "x86_64-apple-darwin", + "x86_64-pc-windows-msvc", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-linux-musl", + ] + is_full = entry.flavor.endswith("-full") + if expects_full != is_full: + continue - if "://" in location: - urls = [location] - else: - urls = ["{}/{}".format(base_url, location) for base_url in base_download_urls] + if "://" in location: + urls = [location] + else: + urls = ["{}/{}".format(b_url, location) for b_url in base_download_urls] - v_dict = available_versions.setdefault(py_version, {}) - v_dict.setdefault("sha256", {})[matched_platform] = sha256 - v_dict.setdefault("url", {})[matched_platform] = urls - if is_full: - v_dict.setdefault("strip_prefix", {})[matched_platform] = "python/install" - else: - v_dict.setdefault("strip_prefix", {})[matched_platform] = "python" + v_dict = available_versions.setdefault(py_version, {}) + v_dict.setdefault("sha256", {})[matched_platform] = sha256 + v_dict.setdefault("url", {})[matched_platform] = urls + if is_full: + v_dict.setdefault("strip_prefix", {})[matched_platform] = "python/install" + else: + v_dict.setdefault("strip_prefix", {})[matched_platform] = "python" def _get_toolchain_config(*, mctx, modules, _fail = fail): """Computes the configs for toolchains. @@ -848,15 +868,17 @@ def _get_toolchain_config(*, mctx, modules, _fail = fail): else: available_versions[py_version]["url"] = dict(url) - # Check for add_runtime_manifest_urls in override tags in root module + # Check for add_runtime_manifest_urls or add_runtime_manifest_files in override tags in root module root_module = modules[0] if modules else None if root_module and root_module.is_root: for tag in root_module.tags.override: - if tag.add_runtime_manifest_urls: + if tag.add_runtime_manifest_urls or tag.add_runtime_manifest_files: _populate_from_pbs_manifest( mctx = mctx, add_runtime_manifest_urls = tag.add_runtime_manifest_urls, + add_runtime_manifest_files = tag.add_runtime_manifest_files, runtime_manifest_sha = tag.runtime_manifest_sha, + base_url = tag.base_url, available_versions = available_versions, _fail = _fail, ) @@ -1186,6 +1208,19 @@ _override = tag_class( ::: """, attrs = { + "add_runtime_manifest_files": attr.label_list( + mandatory = False, + allow_files = True, + doc = """ +Labels pointing to local python-build-standalone manifest files (e.g., `SHA256SUMS`). + +Example: +`//my/custom/manifest:SHA256SUMS` + +:::{versionadded} VERSION_NEXT_FEATURE +::: +""", + ), "add_runtime_manifest_urls": attr.string_list( mandatory = False, doc = """ diff --git a/tests/python/python_tests.bzl b/tests/python/python_tests.bzl index c2a32400db..4826faa23d 100644 --- a/tests/python/python_tests.bzl +++ b/tests/python/python_tests.bzl @@ -57,6 +57,7 @@ def _override( register_all_versions = False, add_target_settings = [], add_runtime_manifest_urls = [], + add_runtime_manifest_files = [], runtime_manifest_sha = None): return struct( auth_patterns = auth_patterns, @@ -67,6 +68,7 @@ def _override( register_all_versions = register_all_versions, add_target_settings = add_target_settings, add_runtime_manifest_urls = add_runtime_manifest_urls, + add_runtime_manifest_files = add_runtime_manifest_files, runtime_manifest_sha = runtime_manifest_sha, ) diff --git a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl index 45c7406375..d5a3574e99 100644 --- a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl +++ b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl @@ -89,6 +89,73 @@ def _test_dynamic_manifest_toolchains_impl(env, target): _tests.append(_test_dynamic_manifest_toolchains) +def _test_dynamic_manifest_files(name): + rt_util.helper_target( + native.filegroup, + name = name + "_subject", + ) + analysis_test( + name = name, + target = name + "_subject", + impl = _test_dynamic_manifest_files_impl, + ) + +def _test_dynamic_manifest_files_impl(env, target): + _ = target # @unused + + root_module = python_ext.module( + name = "runtime_manifests", + override = [ + python_ext.override( + add_runtime_manifest_files = [ + Label("//:SHA256SUMS"), + ], + base_url = "https://example.com/dl", + register_all_versions = True, + ), + ], + defaults = [ + python_ext.defaults( + python_version = "3.12.99", + ), + ], + ) + + mock_mctx = mocks.mctx( + modules = [root_module], + mock_files = { + str(Label("//:SHA256SUMS")): """ +01e607cf764b97d4d5d6f69fd1ff3d8a9a162513dde5c39e98260fce40fe220a cpython-3.12.99+20260414-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst +""", + }, + ) + + res = parse_modules( + module_ctx = mock_mctx, + logger = _mock_logger, + ) + + tool_versions = res.config.default["tool_versions"] + env.expect.that_bool("3.12.99" in tool_versions).equals(True) + + version_info = tool_versions["3.12.99"] + + env.expect.that_dict(version_info).contains_exactly({ + "sha256": { + "x86_64-unknown-linux-gnu": "01e607cf764b97d4d5d6f69fd1ff3d8a9a162513dde5c39e98260fce40fe220a", + }, + "strip_prefix": { + "x86_64-unknown-linux-gnu": "python/install", + }, + "url": { + "x86_64-unknown-linux-gnu": [ + "https://example.com/dl/cpython-3.12.99+20260414-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + ], + }, + }) + +_tests.append(_test_dynamic_manifest_files) + def runtime_manifests_test_suite(name): test_suite( name = name, diff --git a/tests/support/mocks/python_ext.bzl b/tests/support/mocks/python_ext.bzl index 6f76ec785b..b82870ce44 100644 --- a/tests/support/mocks/python_ext.bzl +++ b/tests/support/mocks/python_ext.bzl @@ -26,6 +26,7 @@ def _module(name = "rules_python", is_root = True, **tags): def _override(**kwargs): """Creates a mock python.override tag with default values.""" attrs = { + "add_runtime_manifest_files": [], "add_runtime_manifest_urls": [], "add_target_settings": [], "available_python_versions": [], From 1cad32506c5107d35e2cf1d4b75b0f7bc9c11d6e Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 6 Jun 2026 16:10:51 +0000 Subject: [PATCH 05/53] Expose freethreaded and archive_flavor in PBS manifest parsing Separates free-threading and archive type from the build flavor string in parse_filename. Also includes canonical documentation citation in the docstring and updates manifest parsing assertions. --- python/private/pbs_manifest.bzl | 37 ++++++++++++++++ python/private/python.bzl | 2 +- .../parse_sha_manifest_tests.bzl | 42 +++++++++++++++---- 3 files changed, 73 insertions(+), 8 deletions(-) diff --git a/python/private/pbs_manifest.bzl b/python/private/pbs_manifest.bzl index 495e4af907..e343a802b3 100644 --- a/python/private/pbs_manifest.bzl +++ b/python/private/pbs_manifest.bzl @@ -3,6 +3,8 @@ def parse_filename(filename): """Parses a python-build-standalone filename (or URL) into its components. + See https://gregoryszorc.com/docs/python-build-standalone/main/running.html + Example: cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst Args: @@ -65,10 +67,43 @@ def parse_filename(filename): libc = "" flavor = rest + freethreaded = False + if flavor.startswith("freethreaded+"): + freethreaded = True + flavor = flavor.removeprefix("freethreaded+") + elif flavor.startswith("freethreaded-"): + freethreaded = True + flavor = flavor.removeprefix("freethreaded-") + elif flavor == "freethreaded": + freethreaded = True + flavor = "" + + archive_flavor = "" + if flavor.endswith("-full"): + archive_flavor = "full" + flavor = flavor.removesuffix("-full") + elif flavor == "full": + archive_flavor = "full" + flavor = "" + elif flavor.endswith("-install_only_stripped"): + archive_flavor = "install_only_stripped" + flavor = flavor.removesuffix("-install_only_stripped") + elif flavor == "install_only_stripped": + archive_flavor = "install_only_stripped" + flavor = "" + elif flavor.endswith("-install_only"): + archive_flavor = "install_only" + flavor = flavor.removesuffix("-install_only") + elif flavor == "install_only": + archive_flavor = "install_only" + flavor = "" + return { "arch": arch, + "archive_flavor": archive_flavor, "build_version": build_version, "flavor": flavor, + "freethreaded": freethreaded, "libc": libc, "location": filename, "microarch": microarch, @@ -87,9 +122,11 @@ def parse_sha_manifest(content): A list of structs capturing the parsed components of each valid entry. Each struct contains the following fields: - arch: CPU architecture (e.g., "x86_64"). + - archive_flavor: Release asset archive type (e.g., "full", "install_only"). - build_version: Standalone release date (e.g., "20260414"). - location: Full package filename or URL (e.g., "cpython-3.11.15..." or "https://..."). - flavor: Build configuration flavor (e.g., "install_only"). + - freethreaded: Whether the build is free-threaded (boolean). - libc: C library type (e.g., "gnu", "musl", "msvc", or ""). - microarch: Microarchitecture level (e.g., "v2", "v3", or ""). - os: Operating system (e.g., "linux", "darwin", "windows"). diff --git a/python/private/python.bzl b/python/private/python.bzl index a27af67ba6..5567f26df0 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -805,7 +805,7 @@ def _populate_from_pbs_manifest( "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", ] - is_full = entry.flavor.endswith("-full") + is_full = entry.archive_flavor == "full" if expects_full != is_full: continue diff --git a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl b/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl index 27cabab25a..4ddcdcc46e 100644 --- a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl +++ b/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl @@ -31,8 +31,10 @@ def _test_parse_filename_baseline_impl(env, target): parsed1 = parse_filename("cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz") env.expect.that_dict(parsed1).contains_exactly({ "arch": "x86_64", + "archive_flavor": "install_only", "build_version": "20260414", - "flavor": "install_only", + "flavor": "", + "freethreaded": False, "libc": "gnu", "location": "cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", "microarch": "", @@ -45,8 +47,10 @@ def _test_parse_filename_baseline_impl(env, target): parsed2 = parse_filename("cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst") env.expect.that_dict(parsed2).contains_exactly({ "arch": "x86_64", + "archive_flavor": "full", "build_version": "20260414", - "flavor": "lto-full", + "flavor": "lto", + "freethreaded": False, "libc": "musl", "location": "cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", "microarch": "v2", @@ -59,8 +63,10 @@ def _test_parse_filename_baseline_impl(env, target): parsed3 = parse_filename("cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst") env.expect.that_dict(parsed3).contains_exactly({ "arch": "aarch64", + "archive_flavor": "full", "build_version": "20260414", - "flavor": "freethreaded+pgo+lto-full", + "flavor": "pgo+lto", + "freethreaded": True, "libc": "", "location": "cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst", "microarch": "", @@ -77,8 +83,10 @@ def _test_parse_filename_baseline_impl(env, target): parsed5 = parse_filename("https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz") env.expect.that_dict(parsed5).contains_exactly({ "arch": "x86_64", + "archive_flavor": "install_only", "build_version": "20260414", - "flavor": "install_only", + "flavor": "", + "freethreaded": False, "libc": "gnu", "location": "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", "microarch": "", @@ -111,14 +119,17 @@ def _test_parse_sha_manifest_impl(env, target): 8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://example.com/cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst +1111111111111111111111111111111111111111111111111111111111111111 cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst """ parsed = parse_sha_manifest(content) - env.expect.that_collection(parsed).has_size(3) + env.expect.that_collection(parsed).has_size(4) env.expect.that_dict(structs.to_dict(parsed[0])).contains_exactly({ "arch": "x86_64", + "archive_flavor": "install_only", "build_version": "20260414", - "flavor": "install_only", + "flavor": "", + "freethreaded": False, "libc": "gnu", "location": "cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", "microarch": "", @@ -130,8 +141,10 @@ ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://exampl env.expect.that_dict(structs.to_dict(parsed[2])).contains_exactly({ "arch": "x86_64", + "archive_flavor": "full", "build_version": "20260414", - "flavor": "lto-full", + "flavor": "lto", + "freethreaded": False, "libc": "musl", "location": "https://example.com/cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", "microarch": "v2", @@ -141,6 +154,21 @@ ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://exampl "vendor": "unknown", }) + env.expect.that_dict(structs.to_dict(parsed[3])).contains_exactly({ + "arch": "aarch64", + "archive_flavor": "full", + "build_version": "20260414", + "flavor": "pgo+lto", + "freethreaded": True, + "libc": "", + "location": "cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst", + "microarch": "", + "os": "darwin", + "python_version": "3.13.13", + "sha256": "1111111111111111111111111111111111111111111111111111111111111111", + "vendor": "apple", + }) + _tests.append(_test_parse_sha_manifest) def parse_sha_manifest_test_suite(name): From 738d9957f785f24c00759bc31165786620526225 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 6 Jun 2026 16:33:16 +0000 Subject: [PATCH 06/53] Update docs/toolchains.md for add_runtime_manifest_files Documents local manifest file loading alongside remote manifest URLs. Includes unified Starlark example using @// label prefix. --- docs/toolchains.md | 45 +++++++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/docs/toolchains.md b/docs/toolchains.md index b048c74a1e..80884baedf 100644 --- a/docs/toolchains.md +++ b/docs/toolchains.md @@ -242,8 +242,9 @@ existing attributes: {attr}`python.single_version_platform_override.coverage_tool`. * Adding additional Python versions via {bzl:obj}`python.single_version_override` or {bzl:obj}`python.single_version_platform_override`. -* Adding additional Python versions dynamically from a remote manifest file - via {attr}`python.override.add_runtime_manifest_urls`. +* Adding additional Python versions dynamically from a manifest file or URL + via {attr}`python.override.add_runtime_manifest_files` or + {attr}`python.override.add_runtime_manifest_urls`. ### Registering custom runtimes @@ -319,19 +320,24 @@ use a python-build-standalone manifest file. This is useful if you want to adopt new versions that are not yet built into `rules_python` without having to manually define each one using `single_version_platform_override`. -To do this, specify the `add_runtime_manifest_urls` and `runtime_manifest_sha` -attributes in `python.override` in your `MODULE.bazel`. +To do this, specify the `add_runtime_manifest_files` or +`add_runtime_manifest_urls` (and `runtime_manifest_sha`) attributes in +`python.override` in your `MODULE.bazel`. -In the example below, we register all runtimes available in a specific PBS -release manifest: +In the example below, we register all runtimes available in a specific local +or remote PBS release manifest: -``` +```starlark # File: MODULE.bazel python = use_extension("@rules_python//python/extensions:python.bzl", "python") python.override( + add_runtime_manifest_files = [ + "@//:SHA256SUMS", + ], add_runtime_manifest_urls = [ "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/SHA256SUMS", ], + base_url = "https://example.com/downloads", runtime_manifest_sha = "ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f", ) ``` @@ -348,29 +354,32 @@ and the location of a runtime archive, separated by whitespace: The `` can be either: - A relative filename (e.g., `cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.zst`). - In this case, the download URL is constructed by appending the filename to the - parent directory of each URL in `add_runtime_manifest_urls` (treating them as - mirrors). + In this case, the download URL is constructed by appending the filename to + the `base_url` attribute (if using `add_runtime_manifest_files`) or to the + parent directory of each URL in `add_runtime_manifest_urls` (treating them + as mirrors). - An absolute URL (e.g., `https://example.com/downloads/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.zst`). In this case, the URL is used directly to download the archive. -In both cases, the filename or the last path segment of the URL must follow the -standard python-build-standalone naming convention. `rules_python` parses this -name to extract runtime metadata (such as Python version, target architecture, -operating system, and libc). +In both cases, the filename or the last path segment of the URL must follow +the standard python-build-standalone naming convention. `rules_python` parses +this name to extract runtime metadata (such as Python version, target +architecture, operating system, and libc). Notes: -- `rules_python` will download the manifest, parse it, and automatically - register toolchains for all valid Python runtimes found in it that match - supported platforms. +- `rules_python` will read or download the manifest, parse it, and + automatically register toolchains for all valid Python runtimes found in it + that match supported platforms. - Only runtimes matching known platforms in `rules_python` will be registered. :::{versionadded} VERSION_NEXT_FEATURE Added support for registering runtimes from a manifest using -`add_runtime_manifest_urls` and `runtime_manifest_sha` in `python.override`. +`add_runtime_manifest_files`, `add_runtime_manifest_urls`, and +`runtime_manifest_sha` in `python.override`. ::: + ### Using defined toolchains from WORKSPACE It is possible to use toolchains defined in `MODULE.bazel` in `WORKSPACE`. For example, From fd22fc724ab3902e778b59f3e98cbedac679b213 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 6 Jun 2026 17:04:41 +0000 Subject: [PATCH 07/53] Prefer install_only archive flavors in PBS manifest resolution Flattens parsed manifest entries into a single list and sorts by archive flavor (install_only > install_only_stripped > full) so smaller standalone archives take precedence. --- python/private/python.bzl | 79 +++++++++---------- .../runtime_manifests_tests.bzl | 6 +- 2 files changed, 40 insertions(+), 45 deletions(-) diff --git a/python/private/python.bzl b/python/private/python.bzl index 5567f26df0..f0c7f59e6f 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -775,52 +775,47 @@ def _populate_from_pbs_manifest( if not base_download_urls and base_url: base_download_urls = [base_url] + entries = [] for content in manifest_contents: - parsed_entries = parse_sha_manifest(content) - - for entry in parsed_entries: - location = entry.location - sha256 = entry.sha256 - py_version = entry.python_version - - # Fallback to matching against PLATFORMS keys as before to ensure compatibility - # with rules_python expected platform keys. - matched_platform = None - for platform in PLATFORMS.keys(): - if platform in location: - matched_platform = platform - break - - if not matched_platform: - continue + entries.extend(parse_sha_manifest(content)) - expects_full = matched_platform in [ - "aarch64-apple-darwin", - "aarch64-unknown-linux-gnu", - "ppc64le-unknown-linux-gnu", - "riscv64-unknown-linux-gnu", - "s390x-unknown-linux-gnu", - "x86_64-apple-darwin", - "x86_64-pc-windows-msvc", - "x86_64-unknown-linux-gnu", - "x86_64-unknown-linux-musl", - ] - is_full = entry.archive_flavor == "full" - if expects_full != is_full: - continue + # We don't model archive_flavor via flags yet, so have to pick one. + # Preference is given to install_only because its smaller + entries = sorted( + entries, + key = lambda e: {"full": 3, "install_only": 1, "install_only_stripped": 2}.get(e.archive_flavor, 4), + ) - if "://" in location: - urls = [location] - else: - urls = ["{}/{}".format(b_url, location) for b_url in base_download_urls] + for entry in entries: + location = entry.location + sha256 = entry.sha256 + py_version = entry.python_version - v_dict = available_versions.setdefault(py_version, {}) - v_dict.setdefault("sha256", {})[matched_platform] = sha256 - v_dict.setdefault("url", {})[matched_platform] = urls - if is_full: - v_dict.setdefault("strip_prefix", {})[matched_platform] = "python/install" - else: - v_dict.setdefault("strip_prefix", {})[matched_platform] = "python" + # Fallback to matching against PLATFORMS keys as before to ensure compatibility + # with rules_python expected platform keys. + matched_platform = None + for platform in PLATFORMS.keys(): + if platform in location: + matched_platform = platform + break + + if not matched_platform: + continue + + v_dict = available_versions.setdefault(py_version, {}) + if matched_platform in v_dict.get("sha256", {}): + continue + + if "://" in location: + urls = [location] + else: + urls = ["{}/{}".format(b_url, location) for b_url in base_download_urls] + + strip_prefix = "python/install" if entry.archive_flavor == "full" else "python" + + v_dict.setdefault("sha256", {})[matched_platform] = sha256 + v_dict.setdefault("url", {})[matched_platform] = urls + v_dict.setdefault("strip_prefix", {})[matched_platform] = strip_prefix def _get_toolchain_config(*, mctx, modules, _fail = fail): """Computes the configs for toolchains. diff --git a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl index d5a3574e99..c46cab1958 100644 --- a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl +++ b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl @@ -75,14 +75,14 @@ def _test_dynamic_manifest_toolchains_impl(env, target): # Assert on the entire dictionary at once! env.expect.that_dict(version_info).contains_exactly({ "sha256": { - "x86_64-unknown-linux-gnu": "01e607cf764b97d4d5d6f69fd1ff3d8a9a162513dde5c39e98260fce40fe220a", + "x86_64-unknown-linux-gnu": "8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc", }, "strip_prefix": { - "x86_64-unknown-linux-gnu": "python/install", + "x86_64-unknown-linux-gnu": "python", }, "url": { "x86_64-unknown-linux-gnu": [ - "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.99+20260414-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst", + "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.99+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", ], }, }) From 8eb3ff29385a20a4ace8ed63817028d51d21de9f Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 6 Jun 2026 17:08:52 +0000 Subject: [PATCH 08/53] Ignore unrecognized archive flavors in PBS manifest resolution Restores explicit whitelist validation on entry.archive_flavor to prevent unsupported standalone release asset formats from polluting available toolchain mappings. --- python/private/python.bzl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/private/python.bzl b/python/private/python.bzl index f0c7f59e6f..73b2d19839 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -802,6 +802,9 @@ def _populate_from_pbs_manifest( if not matched_platform: continue + if entry.archive_flavor not in ["install_only", "install_only_stripped", "full"]: + continue + v_dict = available_versions.setdefault(py_version, {}) if matched_platform in v_dict.get("sha256", {}): continue From 80a6ac402e2a42f96a91b0b80e0388f4d3e287d9 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 6 Jun 2026 17:42:59 +0000 Subject: [PATCH 09/53] Register builtin runtimes via centralized runtime manifest Centralizes standalone Python runtime asset registration into python/runtimes_manifest.txt and parses it dynamically via _populate_from_pbs_manifest, replacing the static TOOL_VERSIONS table. --- python/BUILD.bazel | 1 + python/private/python.bzl | 30 +- python/runtimes_manifest.txt | 616 +++++++++ python/versions.bzl | 1203 +---------------- tests/support/mocks/mocks.bzl | 21 + .../transitions/transitions_tests.bzl | 3 +- 6 files changed, 648 insertions(+), 1226 deletions(-) create mode 100755 python/runtimes_manifest.txt diff --git a/python/BUILD.bazel b/python/BUILD.bazel index 90b2225ab5..d5fc260789 100644 --- a/python/BUILD.bazel +++ b/python/BUILD.bazel @@ -252,6 +252,7 @@ filegroup( exports_files([ "defs.bzl", "python.bzl", # Deprecated, please use defs.bzl + "runtimes_manifest.txt", ]) # This target can be used to inspect the current Python major version. To use, diff --git a/python/private/python.bzl b/python/private/python.bzl index 73b2d19839..bc5b7134fc 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -15,7 +15,7 @@ "Python toolchain module extensions for use with bzlmod." load("@bazel_features//:features.bzl", "bazel_features") -load("//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", "PLATFORMS", "TOOL_VERSIONS") +load("//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", "PLATFORMS") load(":auth.bzl", "AUTH_ATTRS") load(":full_version.bzl", "full_version") load(":pbs_manifest.bzl", "parse_sha_manifest") @@ -844,27 +844,13 @@ def _get_toolchain_config(*, mctx, modules, _fail = fail): # Items that can be overridden available_versions = {} - for py_version, item in TOOL_VERSIONS.items(): - available_versions[py_version] = {} - available_versions[py_version]["sha256"] = dict(item["sha256"]) - platforms = item["sha256"].keys() - - strip_prefix = item["strip_prefix"] - if type(strip_prefix) == type(""): - available_versions[py_version]["strip_prefix"] = { - platform: strip_prefix - for platform in platforms - } - else: - available_versions[py_version]["strip_prefix"] = dict(strip_prefix) - url = item["url"] - if type(url) == type(""): - available_versions[py_version]["url"] = { - platform: url - for platform in platforms - } - else: - available_versions[py_version]["url"] = dict(url) + _populate_from_pbs_manifest( + mctx = mctx, + add_runtime_manifest_files = [Label("//python:runtimes_manifest.txt")], + base_url = DEFAULT_RELEASE_BASE_URL, + available_versions = available_versions, + _fail = _fail, + ) # Check for add_runtime_manifest_urls or add_runtime_manifest_files in override tags in root module root_module = modules[0] if modules else None diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt new file mode 100755 index 0000000000..ec3d02500c --- /dev/null +++ b/python/runtimes_manifest.txt @@ -0,0 +1,616 @@ +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz +4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz +8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz +a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz +2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz +f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz +bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz +efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz +81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz +7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz +91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz +55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz +d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz +33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz +525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz +f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz +6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz +2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz +59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz +9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz +fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz +c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz +39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz +eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz +e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz +76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz +c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz +ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz +a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz +f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz +cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz +64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz +edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz +24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz +2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz +878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz +bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz +14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz +fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz +4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz +916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz +3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz +b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz +389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz +b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz +f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz +803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz +647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz +bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz +ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz +5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz +8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz +bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz +facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz +236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz +fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz +e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz +1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz +ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz +c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz +872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz +c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz +f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz +74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz +bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz +f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz +ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz +b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz +3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz +00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz +d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz +4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz +81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz +355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz +c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz +e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz +b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz +fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz +27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz +7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz +08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz +9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz +3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz +b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz +d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz +29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz +44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz +a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz +278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz +11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz +0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz +874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz +c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz +8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz +ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz +87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz +128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz +39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz +5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz +cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz +869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz +0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz +d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz +5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz \ No newline at end of file diff --git a/python/versions.bzl b/python/versions.bzl index ed819e6b34..416549c3ac 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -57,1208 +57,7 @@ _ASTRAL_PREFIX = "https://releases.astral.sh/github/python-build-standalone/rele # It is possible to provide lists in "url". It is also possible to provide patches or patch_strip. # # buildifier: disable=unsorted-dict-items -TOOL_VERSIONS = { - "3.9.25": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a", - "aarch64-unknown-linux-gnu": "6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0", - "ppc64le-unknown-linux-gnu": "828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f", - "riscv64-unknown-linux-gnu": "17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27", - "s390x-unknown-linux-gnu": "3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d", - "x86_64-apple-darwin": "ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503", - "x86_64-pc-windows-msvc": "4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a", - "x86_64-unknown-linux-gnu": "42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08", - "x86_64-unknown-linux-musl": "76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93", - }, - "strip_prefix": "python", - }, - "3.10.2": { - "url": "20220227/cpython-{python_version}+20220227-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef", - "aarch64-unknown-linux-gnu": "8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703", - "x86_64-apple-darwin": "8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a", - "x86_64-pc-windows-msvc": "a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd", - "x86_64-unknown-linux-gnu": "9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd", - }, - "strip_prefix": "python", - }, - "3.10.4": { - "url": "20220502/cpython-{python_version}+20220502-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2", - "aarch64-unknown-linux-gnu": "d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e", - "x86_64-apple-darwin": "f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05", - "x86_64-pc-windows-msvc": "bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d", - "x86_64-unknown-linux-gnu": "f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9", - }, - "strip_prefix": "python", - }, - "3.10.6": { - "url": "20220802/cpython-{python_version}+20220802-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7", - "aarch64-unknown-linux-gnu": "81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435", - "x86_64-apple-darwin": "7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c", - "x86_64-pc-windows-msvc": "91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa", - "x86_64-unknown-linux-gnu": "55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111", - }, - "strip_prefix": "python", - }, - "3.10.8": { - "url": "20221106/cpython-{python_version}+20221106-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a", - "aarch64-unknown-linux-gnu": "33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132", - "x86_64-apple-darwin": "525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5", - "x86_64-pc-windows-msvc": "f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe", - "x86_64-unknown-linux-gnu": "6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7", - }, - "strip_prefix": "python", - }, - "3.10.9": { - "url": "20230116/cpython-{python_version}+20230116-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff", - "aarch64-unknown-linux-gnu": "2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1", - "x86_64-apple-darwin": "0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6", - "x86_64-pc-windows-msvc": "59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035", - "x86_64-unknown-linux-gnu": "d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf", - }, - "strip_prefix": "python", - }, - "3.10.11": { - "url": "20230507/cpython-{python_version}+20230507-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f", - "aarch64-unknown-linux-gnu": "c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35", - "ppc64le-unknown-linux-gnu": "73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee", - "x86_64-apple-darwin": "bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad", - "x86_64-pc-windows-msvc": "9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68", - "x86_64-unknown-linux-gnu": "c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79", - }, - "strip_prefix": "python", - }, - "3.10.12": { - "url": "20230726/cpython-{python_version}+20230726-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6", - "aarch64-unknown-linux-gnu": "fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4", - "ppc64le-unknown-linux-gnu": "bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c", - "s390x-unknown-linux-gnu": "8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df", - "x86_64-apple-darwin": "8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04", - "x86_64-pc-windows-msvc": "c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685", - "x86_64-unknown-linux-gnu": "a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3", - }, - "strip_prefix": "python", - }, - "3.10.13": { - "url": "20240224/cpython-{python_version}+20240224-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a", - "aarch64-unknown-linux-gnu": "a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9", - "ppc64le-unknown-linux-gnu": "c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42", - "s390x-unknown-linux-gnu": "09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e", - "x86_64-apple-darwin": "6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a", - "x86_64-pc-windows-msvc": "086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e", - "x86_64-unknown-linux-gnu": "d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195", - }, - "strip_prefix": "python", - }, - "3.10.14": { - "url": "20240726/cpython-{python_version}+20240726-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607", - "aarch64-unknown-linux-gnu": "39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29", - "ppc64le-unknown-linux-gnu": "549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1", - "s390x-unknown-linux-gnu": "de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec", - "x86_64-apple-darwin": "1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d", - "x86_64-pc-windows-msvc": "7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3", - "x86_64-unknown-linux-gnu": "32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e", - }, - "strip_prefix": "python", - }, - "3.10.15": { - "url": "20241016/cpython-{python_version}+20241016-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c", - "aarch64-unknown-linux-gnu": "eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc", - "ppc64le-unknown-linux-gnu": "0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4", - "s390x-unknown-linux-gnu": "de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c", - "x86_64-apple-darwin": "90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b", - "x86_64-pc-windows-msvc": "e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e", - "x86_64-unknown-linux-gnu": "3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de", - "x86_64-unknown-linux-musl": "ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c", - }, - "strip_prefix": "python", - }, - "3.10.16": { - "url": "20250317/cpython-{python_version}+20250317-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f", - "aarch64-unknown-linux-gnu": "76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d", - "ppc64le-unknown-linux-gnu": "39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603", - "riscv64-unknown-linux-gnu": "ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d", - "s390x-unknown-linux-gnu": "9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857", - "x86_64-apple-darwin": "e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca", - "x86_64-pc-windows-msvc": "c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08", - "x86_64-unknown-linux-gnu": "b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643", - "x86_64-unknown-linux-musl": "6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4", - }, - "strip_prefix": "python", - }, - "3.10.18": { - "url": "20250808/cpython-{python_version}+20250808-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e", - "aarch64-unknown-linux-gnu": "ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701", - "ppc64le-unknown-linux-gnu": "f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e", - "riscv64-unknown-linux-gnu": "0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669", - "s390x-unknown-linux-gnu": "d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef", - "x86_64-apple-darwin": "da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4", - "x86_64-pc-windows-msvc": "a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a", - "x86_64-unknown-linux-gnu": "0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789", - "x86_64-unknown-linux-musl": "9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee", - }, - "strip_prefix": "python", - }, - "3.10.19": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012", - "aarch64-unknown-linux-gnu": "f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef", - "ppc64le-unknown-linux-gnu": "1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860", - "riscv64-unknown-linux-gnu": "21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d", - "s390x-unknown-linux-gnu": "df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc", - "x86_64-apple-darwin": "76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55", - "x86_64-pc-windows-msvc": "cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3", - "x86_64-unknown-linux-gnu": "fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f", - "x86_64-unknown-linux-musl": "ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4", - }, - "strip_prefix": "python", - }, - "3.10.20": { - "url": "20260414/cpython-{python_version}+20260414-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8", - "aarch64-unknown-linux-gnu": "64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4", - "ppc64le-unknown-linux-gnu": "76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e", - "riscv64-unknown-linux-gnu": "76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5", - "s390x-unknown-linux-gnu": "2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85", - "x86_64-apple-darwin": "95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09", - "x86_64-pc-windows-msvc": "0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788", - "x86_64-unknown-linux-gnu": "303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af", - "x86_64-unknown-linux-musl": "84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f", - }, - "strip_prefix": "python", - }, - "3.11.1": { - "url": "20230116/cpython-{python_version}+20230116-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80", - "aarch64-unknown-linux-gnu": "debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4", - "x86_64-apple-darwin": "20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733", - "x86_64-pc-windows-msvc": "edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf", - "x86_64-unknown-linux-gnu": "02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423", - }, - "strip_prefix": "python", - }, - "3.11.3": { - "url": "20230507/cpython-{python_version}+20230507-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86", - "aarch64-unknown-linux-gnu": "8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab", - "ppc64le-unknown-linux-gnu": "767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c", - "x86_64-apple-darwin": "f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310", - "x86_64-pc-windows-msvc": "24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af", - "x86_64-unknown-linux-gnu": "da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5", - }, - "strip_prefix": "python", - }, - "3.11.4": { - "url": "20230726/cpython-{python_version}+20230726-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4", - "aarch64-unknown-linux-gnu": "2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb", - "ppc64le-unknown-linux-gnu": "df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25", - "s390x-unknown-linux-gnu": "e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4", - "x86_64-apple-darwin": "47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00", - "x86_64-pc-windows-msvc": "878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1", - "x86_64-unknown-linux-gnu": "e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05", - }, - "strip_prefix": "python", - }, - "3.11.5": { - "url": "20230826/cpython-{python_version}+20230826-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b", - "aarch64-unknown-linux-gnu": "bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80", - "ppc64le-unknown-linux-gnu": "14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d", - "s390x-unknown-linux-gnu": "fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d", - "x86_64-apple-darwin": "4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc", - "x86_64-pc-windows-msvc": "00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97", - "x86_64-unknown-linux-gnu": "fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1", - }, - "strip_prefix": "python", - }, - "3.11.6": { - "url": "20231002/cpython-{python_version}+20231002-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990", - "aarch64-unknown-linux-gnu": "3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec", - "ppc64le-unknown-linux-gnu": "7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf", - "s390x-unknown-linux-gnu": "f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c", - "x86_64-apple-darwin": "178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371", - "x86_64-pc-windows-msvc": "3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea", - "x86_64-unknown-linux-gnu": "ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8", - }, - "strip_prefix": "python", - }, - "3.11.7": { - "url": "20240107/cpython-{python_version}+20240107-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883", - "aarch64-unknown-linux-gnu": "b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13", - "ppc64le-unknown-linux-gnu": "b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7", - "s390x-unknown-linux-gnu": "49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22", - "x86_64-apple-darwin": "a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4", - "x86_64-pc-windows-msvc": "67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e", - "x86_64-unknown-linux-gnu": "4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140", - }, - "strip_prefix": "python", - }, - "3.11.8": { - "url": "20240224/cpython-{python_version}+20240224-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e", - "aarch64-unknown-linux-gnu": "389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a", - "ppc64le-unknown-linux-gnu": "eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946", - "s390x-unknown-linux-gnu": "844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9", - "x86_64-apple-darwin": "097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e", - "x86_64-pc-windows-msvc": "b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4", - "x86_64-unknown-linux-gnu": "94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987", - }, - "strip_prefix": "python", - }, - "3.11.9": { - "url": "20240726/cpython-{python_version}+20240726-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3", - "aarch64-unknown-linux-gnu": "4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3", - "ppc64le-unknown-linux-gnu": "fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21", - "s390x-unknown-linux-gnu": "e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56", - "x86_64-apple-darwin": "dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611", - "x86_64-pc-windows-msvc": "f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8", - "x86_64-unknown-linux-gnu": "f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d", - }, - "strip_prefix": "python", - }, - "3.11.10": { - "url": "20241016/cpython-{python_version}+20241016-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620", - "aarch64-unknown-linux-gnu": "803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f", - "ppc64le-unknown-linux-gnu": "92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34", - "s390x-unknown-linux-gnu": "6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde", - "x86_64-apple-darwin": "1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674", - "x86_64-pc-windows-msvc": "647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55", - "x86_64-unknown-linux-gnu": "8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9", - "x86_64-unknown-linux-musl": "d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f", - }, - "strip_prefix": "python", - }, - "3.11.13": { - "url": "20250808/cpython-{python_version}+20250808-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6", - "aarch64-unknown-linux-gnu": "bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710", - "ppc64le-unknown-linux-gnu": "16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de", - "riscv64-unknown-linux-gnu": "d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8", - "s390x-unknown-linux-gnu": "4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241", - "x86_64-apple-darwin": "d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981", - "x86_64-pc-windows-msvc": "ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5", - "aarch64-pc-windows-msvc": "a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f", - "x86_64-unknown-linux-gnu": "3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9", - "x86_64-unknown-linux-musl": "3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100", - }, - "strip_prefix": "python", - }, - "3.11.14": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713", - "aarch64-unknown-linux-gnu": "510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894", - "ppc64le-unknown-linux-gnu": "4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35", - "riscv64-unknown-linux-gnu": "16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f", - "s390x-unknown-linux-gnu": "5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080", - "x86_64-apple-darwin": "4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6", - "x86_64-pc-windows-msvc": "5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6", - "aarch64-pc-windows-msvc": "38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337", - "x86_64-unknown-linux-gnu": "60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477", - "x86_64-unknown-linux-musl": "25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87", - }, - "strip_prefix": "python", - }, - "3.11.15": { - "url": "20260414/cpython-{python_version}+20260414-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb", - "aarch64-unknown-linux-gnu": "77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39", - "ppc64le-unknown-linux-gnu": "30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062", - "riscv64-unknown-linux-gnu": "373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f", - "s390x-unknown-linux-gnu": "7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62", - "x86_64-apple-darwin": "317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681", - "x86_64-pc-windows-msvc": "8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23", - "aarch64-pc-windows-msvc": "a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45", - "x86_64-unknown-linux-gnu": "8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc", - "x86_64-unknown-linux-musl": "ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796", - }, - "strip_prefix": "python", - }, - "3.12.0": { - "url": "20231002/cpython-{python_version}+20231002-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02", - "aarch64-unknown-linux-gnu": "bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88", - "ppc64le-unknown-linux-gnu": "b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2", - "s390x-unknown-linux-gnu": "5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e", - "x86_64-apple-darwin": "5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf", - "x86_64-pc-windows-msvc": "facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d", - "x86_64-unknown-linux-gnu": "e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9", - }, - "strip_prefix": "python", - }, - "3.12.1": { - "url": "20240107/cpython-{python_version}+20240107-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af", - "aarch64-unknown-linux-gnu": "236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b", - "ppc64le-unknown-linux-gnu": "78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267", - "s390x-unknown-linux-gnu": "60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2", - "x86_64-apple-darwin": "eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8", - "x86_64-pc-windows-msvc": "fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a", - "x86_64-unknown-linux-gnu": "74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472", - }, - "strip_prefix": "python", - }, - "3.12.2": { - "url": "20240224/cpython-{python_version}+20240224-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6", - "aarch64-unknown-linux-gnu": "e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709", - "ppc64le-unknown-linux-gnu": "74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251", - "s390x-unknown-linux-gnu": "ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825", - "x86_64-apple-darwin": "a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094", - "x86_64-pc-windows-msvc": "1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b", - "x86_64-unknown-linux-gnu": "57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab", - }, - "strip_prefix": "python", - }, - "3.12.3": { - "url": "20240415/cpython-{python_version}+20240415-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e", - "aarch64-unknown-linux-gnu": "ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d", - "ppc64le-unknown-linux-gnu": "c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572", - "s390x-unknown-linux-gnu": "872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86", - "x86_64-apple-darwin": "c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8", - "x86_64-pc-windows-msvc": "f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279", - "x86_64-unknown-linux-gnu": "a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6", - }, - "strip_prefix": "python", - }, - "3.12.4": { - "url": "20240726/cpython-{python_version}+20240726-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15", - "aarch64-unknown-linux-gnu": "a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7", - "ppc64le-unknown-linux-gnu": "04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb", - "s390x-unknown-linux-gnu": "8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c", - "x86_64-apple-darwin": "4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed", - "x86_64-pc-windows-msvc": "74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450", - "x86_64-unknown-linux-gnu": "e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac", - }, - "strip_prefix": "python", - }, - "3.12.7": { - "url": "20241016/cpython-{python_version}+20241016-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508", - "aarch64-unknown-linux-gnu": "bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a", - "ppc64le-unknown-linux-gnu": "0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6", - "s390x-unknown-linux-gnu": "935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17", - "x86_64-apple-darwin": "60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a", - "x86_64-pc-windows-msvc": "f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a", - "x86_64-unknown-linux-gnu": "43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064", - "x86_64-unknown-linux-musl": "5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5", - }, - "strip_prefix": "python", - }, - "3.12.8": { - "url": "20241206/cpython-{python_version}+20241206-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3", - "aarch64-unknown-linux-gnu": "ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e", - "ppc64le-unknown-linux-gnu": "b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c", - "s390x-unknown-linux-gnu": "73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5", - "x86_64-apple-darwin": "3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10", - "x86_64-pc-windows-msvc": "767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6", - "x86_64-unknown-linux-gnu": "b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba", - "x86_64-unknown-linux-musl": "6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf", - }, - "strip_prefix": "python", - }, - "3.12.9": { - "url": "20250317/cpython-{python_version}+20250317-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381", - "aarch64-unknown-linux-gnu": "00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80", - "ppc64le-unknown-linux-gnu": "25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1", - "riscv64-unknown-linux-gnu": "e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e", - "s390x-unknown-linux-gnu": "7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e", - "x86_64-apple-darwin": "1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc", - "x86_64-pc-windows-msvc": "d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d", - "x86_64-unknown-linux-gnu": "ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226", - "x86_64-unknown-linux-musl": "94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d", - }, - "strip_prefix": "python", - }, - "3.12.11": { - "url": "20250808/cpython-{python_version}+20250808-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661", - "aarch64-unknown-linux-gnu": "4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb", - "aarch64-pc-windows-msvc": "00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464", - "ppc64le-unknown-linux-gnu": "2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090", - "riscv64-unknown-linux-gnu": "0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81", - "s390x-unknown-linux-gnu": "99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8", - "x86_64-apple-darwin": "e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f", - "x86_64-pc-windows-msvc": "81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c", - "x86_64-unknown-linux-gnu": "63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb", - "x86_64-unknown-linux-musl": "d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b", - }, - "strip_prefix": "python", - }, - "3.12.12": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.tar.gz", - "sha256": { - "aarch64-apple-darwin": "5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63", - "aarch64-unknown-linux-gnu": "81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac", - "aarch64-pc-windows-msvc": "b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780", - "ppc64le-unknown-linux-gnu": "024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052", - "riscv64-unknown-linux-gnu": "b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb", - "s390x-unknown-linux-gnu": "2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400", - "x86_64-apple-darwin": "687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f", - "x86_64-pc-windows-msvc": "cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1", - "x86_64-unknown-linux-gnu": "80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253", - "x86_64-unknown-linux-musl": "0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14", - }, - "strip_prefix": "python", - }, - "3.12.13": { - "url": "20260414/cpython-{python_version}+20260414-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9", - "aarch64-unknown-linux-gnu": "355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9", - "ppc64le-unknown-linux-gnu": "4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49", - "riscv64-unknown-linux-gnu": "c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db", - "s390x-unknown-linux-gnu": "e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606", - "x86_64-apple-darwin": "801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297", - "x86_64-pc-windows-msvc": "c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46", - "aarch64-pc-windows-msvc": "f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5", - "x86_64-unknown-linux-gnu": "cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0", - "x86_64-unknown-linux-musl": "d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f", - }, - "strip_prefix": "python", - }, - "3.13.0": { - "url": "20241016/cpython-{python_version}+20241016-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556", - "aarch64-unknown-linux-gnu": "e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b", - "ppc64le-unknown-linux-gnu": "fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53", - "s390x-unknown-linux-gnu": "66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467", - "x86_64-apple-darwin": "cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77", - "x86_64-pc-windows-msvc": "b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0", - "x86_64-unknown-linux-gnu": "2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4", - "x86_64-unknown-linux-musl": "2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4", - "aarch64-apple-darwin-freethreaded": "efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b", - "aarch64-unknown-linux-gnu-freethreaded": "59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd", - "ppc64le-unknown-linux-gnu-freethreaded": "1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e", - "s390x-unknown-linux-gnu-freethreaded": "6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c", - "x86_64-apple-darwin-freethreaded": "2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb", - "x86_64-pc-windows-msvc-freethreaded": "bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310", - "x86_64-unknown-linux-gnu-freethreaded": "a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.1": { - "url": "20241205/cpython-{python_version}+20241205-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f", - "aarch64-unknown-linux-gnu": "fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e", - "ppc64le-unknown-linux-gnu": "27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3", - "s390x-unknown-linux-gnu": "7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f", - "x86_64-apple-darwin": "47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6", - "x86_64-pc-windows-msvc": "f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe", - "x86_64-unknown-linux-gnu": "242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a", - "x86_64-unknown-linux-musl": "76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5", - "aarch64-apple-darwin-freethreaded": "08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5", - "aarch64-unknown-linux-gnu-freethreaded": "9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35", - "ppc64le-unknown-linux-gnu-freethreaded": "15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634", - "s390x-unknown-linux-gnu-freethreaded": "ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317", - "x86_64-apple-darwin-freethreaded": "dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8", - "x86_64-pc-windows-msvc-freethreaded": "7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3", - "x86_64-unknown-linux-gnu-freethreaded": "9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.2": { - "url": "20250317/cpython-{python_version}+20250317-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94", - "aarch64-unknown-linux-gnu": "9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36", - "ppc64le-unknown-linux-gnu": "345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147", - "riscv64-unknown-linux-gnu": "172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85", - "s390x-unknown-linux-gnu": "ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b", - "x86_64-apple-darwin": "ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f", - "x86_64-pc-windows-msvc": "84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e", - "x86_64-unknown-linux-gnu": "db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512", - "x86_64-unknown-linux-musl": "00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296", - "aarch64-apple-darwin-freethreaded": "c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2", - "aarch64-unknown-linux-gnu-freethreaded": "b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19", - "ppc64le-unknown-linux-gnu-freethreaded": "6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def", - "riscv64-unknown-linux-gnu-freethreaded": "2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a", - "s390x-unknown-linux-gnu-freethreaded": "c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f", - "x86_64-apple-darwin-freethreaded": "0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f", - "x86_64-pc-windows-msvc-freethreaded": "c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea", - "x86_64-unknown-linux-gnu-freethreaded": "1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.4": { - "url": "20250610/cpython-{python_version}+20250610-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f", - "aarch64-unknown-linux-gnu": "3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53", - "ppc64le-unknown-linux-gnu": "b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b", - "riscv64-unknown-linux-gnu": "d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053", - "s390x-unknown-linux-gnu": "d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8", - "x86_64-apple-darwin": "79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b", - "x86_64-pc-windows-msvc": "29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057", - "x86_64-unknown-linux-gnu": "44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32", - "x86_64-unknown-linux-musl": "a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2", - "aarch64-apple-darwin-freethreaded": "278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02", - "aarch64-unknown-linux-gnu-freethreaded": "b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf", - "ppc64le-unknown-linux-gnu-freethreaded": "ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae", - "riscv64-unknown-linux-gnu-freethreaded": "913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016", - "s390x-unknown-linux-gnu-freethreaded": "7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db", - "x86_64-apple-darwin-freethreaded": "64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d", - "x86_64-pc-windows-msvc-freethreaded": "9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3", - "x86_64-unknown-linux-gnu-freethreaded": "864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.6": { - "url": "20250808/cpython-{python_version}+20250808-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488", - "aarch64-unknown-linux-gnu": "11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388", - "ppc64le-unknown-linux-gnu": "8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c", - "riscv64-unknown-linux-gnu": "f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39", - "s390x-unknown-linux-gnu": "7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8", - "x86_64-apple-darwin": "27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379", - "x86_64-pc-windows-msvc": "af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953", - "aarch64-pc-windows-msvc": "8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827", - "aarch64-pc-windows-msvc-freethreaded": "552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067", - "x86_64-unknown-linux-gnu": "f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64", - "x86_64-unknown-linux-musl": "70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b", - "aarch64-apple-darwin-freethreaded": "f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207", - "aarch64-unknown-linux-gnu-freethreaded": "d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22", - "ppc64le-unknown-linux-gnu-freethreaded": "e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37", - "riscv64-unknown-linux-gnu-freethreaded": "24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9", - "s390x-unknown-linux-gnu-freethreaded": "1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d", - "x86_64-apple-darwin-freethreaded": "4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a", - "x86_64-pc-windows-msvc-freethreaded": "4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c", - "x86_64-unknown-linux-gnu-freethreaded": "e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.9": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef", - "aarch64-unknown-linux-gnu": "0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e", - "ppc64le-unknown-linux-gnu": "99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448", - "riscv64-unknown-linux-gnu": "b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06", - "s390x-unknown-linux-gnu": "f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e", - "x86_64-apple-darwin": "48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0", - "x86_64-pc-windows-msvc": "874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787", - "aarch64-pc-windows-msvc": "20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c", - "aarch64-pc-windows-msvc-freethreaded": "743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7", - "x86_64-unknown-linux-gnu": "6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6", - "x86_64-unknown-linux-musl": "ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c", - "aarch64-apple-darwin-freethreaded": "eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc", - "aarch64-unknown-linux-gnu-freethreaded": "a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee", - "ppc64le-unknown-linux-gnu-freethreaded": "0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda", - "riscv64-unknown-linux-gnu-freethreaded": "584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220", - "s390x-unknown-linux-gnu-freethreaded": "7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2", - "x86_64-apple-darwin-freethreaded": "e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da", - "x86_64-pc-windows-msvc-freethreaded": "318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386", - "x86_64-unknown-linux-gnu-freethreaded": "dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.10": { - "url": "20251202/cpython-{python_version}+20251202-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048", - "aarch64-unknown-linux-gnu": "c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e", - "ppc64le-unknown-linux-gnu": "1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b", - "riscv64-unknown-linux-gnu": "70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08", - "s390x-unknown-linux-gnu": "c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f", - "x86_64-apple-darwin": "a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4", - "x86_64-pc-windows-msvc": "8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d", - "aarch64-pc-windows-msvc": "9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463", - "aarch64-pc-windows-msvc-freethreaded": "cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57", - "x86_64-unknown-linux-gnu": "0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a", - "x86_64-unknown-linux-musl": "04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041", - "aarch64-apple-darwin-freethreaded": "3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb", - "aarch64-unknown-linux-gnu-freethreaded": "6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648", - "ppc64le-unknown-linux-gnu-freethreaded": "d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885", - "riscv64-unknown-linux-gnu-freethreaded": "ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0", - "s390x-unknown-linux-gnu-freethreaded": "4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c", - "x86_64-apple-darwin-freethreaded": "6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040", - "x86_64-pc-windows-msvc-freethreaded": "6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c", - "x86_64-unknown-linux-gnu-freethreaded": "e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.11": { - "url": "20251209/cpython-{python_version}+20251209-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585", - "aarch64-unknown-linux-gnu": "ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343", - "ppc64le-unknown-linux-gnu": "7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109", - "riscv64-unknown-linux-gnu": "763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9", - "s390x-unknown-linux-gnu": "ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe", - "x86_64-apple-darwin": "dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136", - "x86_64-pc-windows-msvc": "87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27", - "aarch64-pc-windows-msvc": "ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165", - "aarch64-pc-windows-msvc-freethreaded": "6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30", - "x86_64-unknown-linux-gnu": "1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b", - "x86_64-unknown-linux-musl": "969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78", - "aarch64-apple-darwin-freethreaded": "4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a", - "aarch64-unknown-linux-gnu-freethreaded": "290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569", - "ppc64le-unknown-linux-gnu-freethreaded": "09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69", - "riscv64-unknown-linux-gnu-freethreaded": "5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c", - "s390x-unknown-linux-gnu-freethreaded": "3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d", - "x86_64-apple-darwin-freethreaded": "d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade", - "x86_64-pc-windows-msvc-freethreaded": "bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae", - "x86_64-unknown-linux-gnu-freethreaded": "33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.13.12": { - "url": "20260325/cpython-{python_version}+20260325-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca", - "aarch64-unknown-linux-gnu": "31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96", - "ppc64le-unknown-linux-gnu": "654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7", - "riscv64-unknown-linux-gnu": "fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79", - "s390x-unknown-linux-gnu": "7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9", - "x86_64-apple-darwin": "7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717", - "x86_64-pc-windows-msvc": "5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d", - "aarch64-pc-windows-msvc": "d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930", - "aarch64-pc-windows-msvc-freethreaded": "d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930", - "x86_64-unknown-linux-gnu": "ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb", - "x86_64-unknown-linux-musl": "b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202", - "aarch64-apple-darwin-freethreaded": "688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca", - "aarch64-unknown-linux-gnu-freethreaded": "31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96", - "ppc64le-unknown-linux-gnu-freethreaded": "654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7", - "riscv64-unknown-linux-gnu-freethreaded": "fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79", - "s390x-unknown-linux-gnu-freethreaded": "7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9", - "x86_64-apple-darwin-freethreaded": "7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717", - "x86_64-pc-windows-msvc-freethreaded": "5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d", - "x86_64-unknown-linux-gnu-freethreaded": "ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb", - }, - "strip_prefix": "python", - }, - "3.13.13": { - "url": "20260414/cpython-{python_version}+20260414-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1", - "aarch64-unknown-linux-gnu": "6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d", - "ppc64le-unknown-linux-gnu": "aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b", - "riscv64-unknown-linux-gnu": "f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb", - "s390x-unknown-linux-gnu": "4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166", - "x86_64-apple-darwin": "540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef", - "x86_64-pc-windows-msvc": "ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79", - "aarch64-pc-windows-msvc": "586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0", - "aarch64-pc-windows-msvc-freethreaded": "586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0", - "x86_64-unknown-linux-gnu": "e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e", - "x86_64-unknown-linux-musl": "24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47", - "aarch64-apple-darwin-freethreaded": "c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1", - "aarch64-unknown-linux-gnu-freethreaded": "6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d", - "ppc64le-unknown-linux-gnu-freethreaded": "aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b", - "riscv64-unknown-linux-gnu-freethreaded": "f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb", - "s390x-unknown-linux-gnu-freethreaded": "4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166", - "x86_64-apple-darwin-freethreaded": "540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef", - "x86_64-pc-windows-msvc-freethreaded": "ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79", - "x86_64-unknown-linux-gnu-freethreaded": "e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e", - }, - "strip_prefix": "python", - }, - "3.14.0": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087", - "aarch64-unknown-linux-gnu": "128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5", - "ppc64le-unknown-linux-gnu": "e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af", - "riscv64-unknown-linux-gnu": "fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7", - "s390x-unknown-linux-gnu": "c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04", - "x86_64-apple-darwin": "4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344", - "x86_64-pc-windows-msvc": "39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf", - "aarch64-pc-windows-msvc": "599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9", - "x86_64-unknown-linux-gnu": "3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6", - "x86_64-unknown-linux-musl": "d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc", - "aarch64-apple-darwin-freethreaded": "d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801", - "aarch64-unknown-linux-gnu-freethreaded": "f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3", - "ppc64le-unknown-linux-gnu-freethreaded": "cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3", - "riscv64-unknown-linux-gnu-freethreaded": "929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec", - "s390x-unknown-linux-gnu-freethreaded": "613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253", - "x86_64-apple-darwin-freethreaded": "b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8", - "x86_64-pc-windows-msvc-freethreaded": "b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0", - "aarch64-pc-windows-msvc-freethreaded": "40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d", - "x86_64-unknown-linux-gnu-freethreaded": "f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.14.1": { - "url": "20251202/cpython-{python_version}+20251202-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561", - "aarch64-unknown-linux-gnu": "5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f", - "ppc64le-unknown-linux-gnu": "d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766", - "riscv64-unknown-linux-gnu": "af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159", - "s390x-unknown-linux-gnu": "43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb", - "x86_64-apple-darwin": "f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88", - "x86_64-pc-windows-msvc": "cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409", - "aarch64-pc-windows-msvc": "19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497", - "x86_64-unknown-linux-gnu": "a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090", - "x86_64-unknown-linux-musl": "15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d", - "aarch64-apple-darwin-freethreaded": "61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0", - "aarch64-unknown-linux-gnu-freethreaded": "1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2", - "ppc64le-unknown-linux-gnu-freethreaded": "7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528", - "riscv64-unknown-linux-gnu-freethreaded": "d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14", - "s390x-unknown-linux-gnu-freethreaded": "477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1", - "x86_64-apple-darwin-freethreaded": "c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786", - "x86_64-pc-windows-msvc-freethreaded": "8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6", - "aarch64-pc-windows-msvc-freethreaded": "ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48", - "x86_64-unknown-linux-gnu-freethreaded": "c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.14.2": { - "url": "20251209/cpython-{python_version}+20251209-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe", - "aarch64-unknown-linux-gnu": "869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02", - "ppc64le-unknown-linux-gnu": "86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0", - "riscv64-unknown-linux-gnu": "318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511", - "s390x-unknown-linux-gnu": "53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a", - "x86_64-apple-darwin": "58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a", - "x86_64-pc-windows-msvc": "0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e", - "aarch64-pc-windows-msvc": "0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd", - "x86_64-unknown-linux-gnu": "121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd", - "x86_64-unknown-linux-musl": "71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469", - "aarch64-apple-darwin-freethreaded": "d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea", - "aarch64-unknown-linux-gnu-freethreaded": "adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db", - "ppc64le-unknown-linux-gnu-freethreaded": "2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f", - "riscv64-unknown-linux-gnu-freethreaded": "4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5", - "s390x-unknown-linux-gnu-freethreaded": "e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f", - "x86_64-apple-darwin-freethreaded": "1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1", - "x86_64-pc-windows-msvc-freethreaded": "9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4", - "aarch64-pc-windows-msvc-freethreaded": "43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51", - "x86_64-unknown-linux-gnu-freethreaded": "3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.14.3": { - "url": "20260325/cpython-{python_version}+20260325-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4", - "aarch64-unknown-linux-gnu": "6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1", - "ppc64le-unknown-linux-gnu": "5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a", - "riscv64-unknown-linux-gnu": "481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202", - "s390x-unknown-linux-gnu": "d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432", - "x86_64-apple-darwin": "847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc", - "x86_64-pc-windows-msvc": "8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4", - "aarch64-pc-windows-msvc": "b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60", - "x86_64-unknown-linux-gnu": "18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44", - "x86_64-unknown-linux-musl": "726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9", - "aarch64-apple-darwin-freethreaded": "80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4", - "aarch64-unknown-linux-gnu-freethreaded": "6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1", - "ppc64le-unknown-linux-gnu-freethreaded": "5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a", - "riscv64-unknown-linux-gnu-freethreaded": "481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202", - "s390x-unknown-linux-gnu-freethreaded": "d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432", - "x86_64-apple-darwin-freethreaded": "847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc", - "x86_64-pc-windows-msvc-freethreaded": "8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4", - "aarch64-pc-windows-msvc-freethreaded": "b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60", - "x86_64-unknown-linux-gnu-freethreaded": "18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44", - }, - "strip_prefix": "python", - }, - "3.14.4": { - "url": "20260414/cpython-{python_version}+20260414-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df", - "aarch64-unknown-linux-gnu": "5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d", - "ppc64le-unknown-linux-gnu": "055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a", - "riscv64-unknown-linux-gnu": "e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09", - "s390x-unknown-linux-gnu": "35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637", - "x86_64-apple-darwin": "9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d", - "x86_64-pc-windows-msvc": "9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a", - "aarch64-pc-windows-msvc": "82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389", - "x86_64-unknown-linux-gnu": "e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba", - "x86_64-unknown-linux-musl": "12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e", - "aarch64-apple-darwin-freethreaded": "8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df", - "aarch64-unknown-linux-gnu-freethreaded": "5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d", - "ppc64le-unknown-linux-gnu-freethreaded": "055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a", - "riscv64-unknown-linux-gnu-freethreaded": "e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09", - "s390x-unknown-linux-gnu-freethreaded": "35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637", - "x86_64-apple-darwin-freethreaded": "9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d", - "x86_64-pc-windows-msvc-freethreaded": "9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a", - "aarch64-pc-windows-msvc-freethreaded": "82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389", - "x86_64-unknown-linux-gnu-freethreaded": "e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba", - }, - "strip_prefix": "python", - }, - "3.15.0a1": { - "url": "20251031/cpython-{python_version}+20251031-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87", - "aarch64-unknown-linux-gnu": "d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6", - "ppc64le-unknown-linux-gnu": "c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2", - "riscv64-unknown-linux-gnu": "36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870", - "s390x-unknown-linux-gnu": "5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4", - "x86_64-apple-darwin": "0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf", - "x86_64-pc-windows-msvc": "5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3", - "aarch64-pc-windows-msvc": "1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8", - "x86_64-unknown-linux-gnu": "1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba", - "x86_64-unknown-linux-musl": "caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c", - "aarch64-apple-darwin-freethreaded": "12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959", - "aarch64-unknown-linux-gnu-freethreaded": "981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c", - "ppc64le-unknown-linux-gnu-freethreaded": "088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef", - "riscv64-unknown-linux-gnu-freethreaded": "938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01", - "s390x-unknown-linux-gnu-freethreaded": "2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e", - "x86_64-apple-darwin-freethreaded": "64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904", - "x86_64-pc-windows-msvc-freethreaded": "34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d", - "aarch64-pc-windows-msvc-freethreaded": "54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489", - "x86_64-unknown-linux-gnu-freethreaded": "0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.15.0a2": { - "url": "20251209/cpython-{python_version}+20251209-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616", - "aarch64-unknown-linux-gnu": "17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c", - "ppc64le-unknown-linux-gnu": "5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc", - "riscv64-unknown-linux-gnu": "bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0", - "s390x-unknown-linux-gnu": "03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3", - "x86_64-apple-darwin": "cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9", - "x86_64-pc-windows-msvc": "e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5", - "aarch64-pc-windows-msvc": "39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5", - "x86_64-unknown-linux-gnu": "58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7", - "x86_64-unknown-linux-musl": "dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee", - "aarch64-apple-darwin-freethreaded": "5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a", - "aarch64-unknown-linux-gnu-freethreaded": "0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09", - "ppc64le-unknown-linux-gnu-freethreaded": "216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212", - "riscv64-unknown-linux-gnu-freethreaded": "2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e", - "s390x-unknown-linux-gnu-freethreaded": "06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6", - "x86_64-apple-darwin-freethreaded": "4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163", - "x86_64-pc-windows-msvc-freethreaded": "6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346", - "aarch64-pc-windows-msvc-freethreaded": "3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51", - "x86_64-unknown-linux-gnu-freethreaded": "70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5", - }, - "strip_prefix": { - "aarch64-apple-darwin": "python", - "aarch64-unknown-linux-gnu": "python", - "ppc64le-unknown-linux-gnu": "python", - "s390x-unknown-linux-gnu": "python", - "riscv64-unknown-linux-gnu": "python", - "x86_64-apple-darwin": "python", - "x86_64-pc-windows-msvc": "python", - "aarch64-pc-windows-msvc": "python", - "x86_64-unknown-linux-gnu": "python", - "x86_64-unknown-linux-musl": "python", - "aarch64-apple-darwin-freethreaded": "python/install", - "aarch64-unknown-linux-gnu-freethreaded": "python/install", - "ppc64le-unknown-linux-gnu-freethreaded": "python/install", - "riscv64-unknown-linux-gnu-freethreaded": "python/install", - "s390x-unknown-linux-gnu-freethreaded": "python/install", - "x86_64-apple-darwin-freethreaded": "python/install", - "x86_64-pc-windows-msvc-freethreaded": "python/install", - "aarch64-pc-windows-msvc-freethreaded": "python/install", - "x86_64-unknown-linux-gnu-freethreaded": "python/install", - }, - }, - "3.15.0a8": { - "url": "20260414/cpython-{python_version}+20260414-{platform}-{build}.{ext}", - "sha256": { - "aarch64-apple-darwin": "780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32", - "aarch64-unknown-linux-gnu": "8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f", - "ppc64le-unknown-linux-gnu": "09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15", - "riscv64-unknown-linux-gnu": "9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51", - "s390x-unknown-linux-gnu": "1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202", - "x86_64-apple-darwin": "a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a", - "x86_64-pc-windows-msvc": "3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb", - "aarch64-pc-windows-msvc": "10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377", - "x86_64-unknown-linux-gnu": "c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d", - "x86_64-unknown-linux-musl": "9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf", - "aarch64-apple-darwin-freethreaded": "780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32", - "aarch64-unknown-linux-gnu-freethreaded": "8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f", - "ppc64le-unknown-linux-gnu-freethreaded": "09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15", - "riscv64-unknown-linux-gnu-freethreaded": "9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51", - "s390x-unknown-linux-gnu-freethreaded": "1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202", - "x86_64-apple-darwin-freethreaded": "a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a", - "x86_64-pc-windows-msvc-freethreaded": "3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb", - "aarch64-pc-windows-msvc-freethreaded": "10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377", - "x86_64-unknown-linux-gnu-freethreaded": "c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d", - }, - "strip_prefix": "python", - }, -} +TOOL_VERSIONS = {} # buildifier: disable=unsorted-dict-items MINOR_MAPPING = { diff --git a/tests/support/mocks/mocks.bzl b/tests/support/mocks/mocks.bzl index 48f8f95830..cfbb3c4148 100644 --- a/tests/support/mocks/mocks.bzl +++ b/tests/support/mocks/mocks.bzl @@ -102,10 +102,31 @@ def _module_new(name, *, is_root = False, **tags): is_root = is_root, ) +_DEFAULT_RUNTIMES_MANIFEST = """ +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +1111111111111111111111111111111111111111111111111111111111111111 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2222222222222222222222222222222222222222222222222222222222222222 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +0000000000000000000000000000000000000000000000000000000000000000 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +3333333333333333333333333333333333333333333333333333333333333333 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +4444444444444444444444444444444444444444444444444444444444444444 20230116/cpython-3.11.2+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +5555555555555555555555555555555555555555555555555555555555555555 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +6666666666666666666666666666666666666666666666666666666666666666 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +7777777777777777777777777777777777777777777777777777777777777777 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +8888888888888888888888888888888888888888888888888888888888888888 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +9999999999999999999999999999999999999999999999999999999999999999 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +""" + def _mctx_read(self, x, watch = None): _ = watch # @unused path_str = x._path if hasattr(x, "_path") else str(x) if path_str not in self.mock_files: + if "runtimes_manifest.txt" in path_str: + return _DEFAULT_RUNTIMES_MANIFEST fail("File not found in mock_files: " + path_str) return self.mock_files[path_str] diff --git a/tests/toolchains/transitions/transitions_tests.bzl b/tests/toolchains/transitions/transitions_tests.bzl index 0cd79b373b..01eb564c03 100644 --- a/tests/toolchains/transitions/transitions_tests.bzl +++ b/tests/toolchains/transitions/transitions_tests.bzl @@ -18,7 +18,6 @@ load("@pythons_hub//:versions.bzl", "DEFAULT_PYTHON_VERSION", "MINOR_MAPPING") load("@rules_testing//lib:analysis_test.bzl", "analysis_test") load("@rules_testing//lib:test_suite.bzl", "test_suite") load("@rules_testing//lib:util.bzl", rt_util = "util") -load("//python:versions.bzl", "TOOL_VERSIONS") load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility load("//python/private:common_labels.bzl", "labels") # buildifier: disable=bzl-visibility load("//python/private:full_version.bzl", "full_version") # buildifier: disable=bzl-visibility @@ -142,7 +141,7 @@ def _test_full_version(name): name = name, tests = { v.replace(".", "_"): (v, v) - for v in TOOL_VERSIONS + for v in MINOR_MAPPING.values() }, ) From 221991cc8c027cecc18ede8bfbb7860685061041 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sun, 7 Jun 2026 08:27:19 +0000 Subject: [PATCH 10/53] Refactor runtime manifest parsing to emit simple manifest structs Instead of generating complex nested Starlark dictionaries during repository setup, internal_config_repo now generates a straightforward list of parsed manifest structs (MANIFEST_ENTRIES) using render.struct() and render.list(). The versions.bzl module dynamically converts these entries into the legacy TOOL_VERSIONS dictionary format when loaded during macro evaluation. --- WORKSPACE | 3 +- python/private/internal_config_repo.bzl | 25 +++++++-- python/private/pbs_manifest.bzl | 3 +- python/private/print_toolchain_checksums.bzl | 13 +++-- python/private/py_repositories.bzl | 1 + python/private/python_register_toolchains.bzl | 5 +- python/private/pythons_hub.bzl | 18 +++++-- python/private/text_util.bzl | 13 +++-- python/runtimes_manifest.txt | 1 + python/versions.bzl | 51 +++++++++++++++++++ 10 files changed, 112 insertions(+), 21 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 077ddb5e68..8c4d4e08f4 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -68,11 +68,12 @@ load("//:internal_dev_setup.bzl", "rules_python_internal_setup") rules_python_internal_setup() -load("@pythons_hub//:versions.bzl", "PYTHON_VERSIONS") load("//python:repositories.bzl", "py_repositories", "python_register_multi_toolchains") py_repositories() +load("@pythons_hub//:versions.bzl", "PYTHON_VERSIONS") + python_register_multi_toolchains( name = "python", default_version = "3.11", diff --git a/python/private/internal_config_repo.bzl b/python/private/internal_config_repo.bzl index aea1eee773..81d3dc2554 100644 --- a/python/private/internal_config_repo.bzl +++ b/python/private/internal_config_repo.bzl @@ -19,6 +19,7 @@ settings for rules to later use. """ load("//python/private:text_util.bzl", "render") +load(":pbs_manifest.bzl", "parse_sha_manifest") load(":repo_utils.bzl", "repo_utils") _ENABLE_DEPRECATION_WARNINGS_ENVVAR_NAME = "RULES_PYTHON_DEPRECATION_WARNINGS" @@ -49,13 +50,18 @@ package( ) bzl_library( - name = "rules_python_config_bzl", - srcs = ["rules_python_config.bzl"] + name = "extra_transition_settings_bzl", + srcs = ["extra_transition_settings.bzl"], ) bzl_library( - name = "extra_transition_settings_bzl", - srcs = ["extra_transition_settings.bzl"], + name = "manifest_tool_versions_bzl", + srcs = ["manifest_tool_versions.bzl"], +) + +bzl_library( + name = "rules_python_config_bzl", + srcs = ["rules_python_config.bzl"], ) """ @@ -130,6 +136,13 @@ def _internal_config_repo_impl(rctx): _TRANSITION_SETTINGS_DEBUG_TEMPLATE.format(lines = "\n".join(debug_lines)), ) + if rctx.attr.workspace_mode: + content = rctx.read(rctx.path(Label("//python:runtimes_manifest.txt"))) + entries = parse_sha_manifest(content) + rctx.file("manifest_tool_versions.bzl", _render_manifest_entries(entries)) + else: + rctx.file("manifest_tool_versions.bzl", "MANIFEST_ENTRIES = []\n") + return None internal_config_repo = repository_rule( @@ -139,8 +152,12 @@ internal_config_repo = repository_rule( attrs = { "transition_setting_generators": attr.string_list_dict(), "transition_settings": attr.string_list(), + "workspace_mode": attr.bool(default = False), }, ) def _bool_from_environ(rctx, key, default): return bool(int(rctx.getenv(key, default))) + +def _render_manifest_entries(entries): + return "MANIFEST_ENTRIES = {}\n".format(render.list(entries, value_repr = render.struct)) diff --git a/python/private/pbs_manifest.bzl b/python/private/pbs_manifest.bzl index e343a802b3..3b02a93da5 100644 --- a/python/private/pbs_manifest.bzl +++ b/python/private/pbs_manifest.bzl @@ -137,13 +137,12 @@ def parse_sha_manifest(content): results = [] for line in content.split("\n"): line = line.strip() - if not line: + if not line or line.startswith("#"): continue parts = [p for p in line.split(" ") if p] if len(parts) != 2: continue sha256, filename = parts - parsed = parse_filename(filename) if parsed: results.append(struct( diff --git a/python/private/print_toolchain_checksums.bzl b/python/private/print_toolchain_checksums.bzl index b4fa400221..cca3a1ae79 100644 --- a/python/private/print_toolchain_checksums.bzl +++ b/python/private/print_toolchain_checksums.bzl @@ -1,7 +1,8 @@ """Print the toolchain versions. """ -load("//python:versions.bzl", "TOOL_VERSIONS", "get_release_info") +load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") +load("//python:versions.bzl", "get_release_info", "tool_versions_from_manifest_entries") load("//python/private:text_util.bzl", "render") load("//python/private:version.bzl", "version") @@ -12,11 +13,13 @@ def print_toolchains_checksums(name): name: {type}`str`: the name of the runnable target. """ by_version = {} + tool_versions = tool_versions_from_manifest_entries(MANIFEST_ENTRIES) - for python_version, metadata in TOOL_VERSIONS.items(): + for python_version, metadata in tool_versions.items(): by_version[python_version] = _commands_for_version( python_version = python_version, metadata = metadata, + tool_versions = tool_versions, ) all_commands = sorted( @@ -53,10 +56,10 @@ EOF executable = True, ) -def _commands_for_version(*, python_version, metadata): +def _commands_for_version(*, python_version, metadata, tool_versions): lines = [] first_platform = metadata["sha256"].keys()[0] - root, _, _ = get_release_info(first_platform, python_version)[1][0].rpartition("/") + root, _, _ = get_release_info(first_platform, python_version, tool_versions = tool_versions)[1][0].rpartition("/") sha_url = "{}/{}".format(root, "SHA256SUMS") prefix = metadata["strip_prefix"] prefix = render.indent( @@ -78,7 +81,7 @@ def _commands_for_version(*, python_version, metadata): ), ) for platform in metadata["sha256"].keys() - for release_url in get_release_info(platform, python_version)[1] + for release_url in get_release_info(platform, python_version, tool_versions = tool_versions)[1] ] + [ " },", " \"strip_prefix\": {strip_prefix},".format(strip_prefix = prefix), diff --git a/python/private/py_repositories.bzl b/python/private/py_repositories.bzl index 9c4051ede9..5bff5a558a 100644 --- a/python/private/py_repositories.bzl +++ b/python/private/py_repositories.bzl @@ -42,6 +42,7 @@ def py_repositories(transition_settings = []): internal_config_repo, name = "rules_python_internal", transition_settings = transition_settings, + workspace_mode = True, ) maybe( hub_repo, diff --git a/python/private/python_register_toolchains.bzl b/python/private/python_register_toolchains.bzl index 3b92902c7e..0857f89c52 100644 --- a/python/private/python_register_toolchains.bzl +++ b/python/private/python_register_toolchains.bzl @@ -15,13 +15,14 @@ """This file contains repository rules and macros to support toolchain registration. """ +load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") load( "//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", "MINOR_MAPPING", "PLATFORMS", - "TOOL_VERSIONS", "get_release_info", + "tool_versions_from_manifest_entries", ) load(":coverage_deps.bzl", "coverage_dep") load(":full_version.bzl", "full_version") @@ -104,7 +105,7 @@ def python_register_toolchains( ) base_url = kwargs.pop("base_url", DEFAULT_RELEASE_BASE_URL) - tool_versions = tool_versions or TOOL_VERSIONS + tool_versions = tool_versions or tool_versions_from_manifest_entries(MANIFEST_ENTRIES) minor_mapping = minor_mapping or MINOR_MAPPING python_version = full_version(version = python_version, minor_mapping = minor_mapping) diff --git a/python/private/pythons_hub.bzl b/python/private/pythons_hub.bzl index cc25b4ba1d..e2e41b3b35 100644 --- a/python/private/pythons_hub.bzl +++ b/python/private/pythons_hub.bzl @@ -15,6 +15,7 @@ "Repo rule used by bzlmod extension to create a repo that has a map of Python interpreters and their labels" load("//python:versions.bzl", "PLATFORMS") +load(":pbs_manifest.bzl", "parse_sha_manifest") load(":text_util.bzl", "render") load(":toolchains_repo.bzl", "toolchain_suite_content") @@ -118,15 +119,24 @@ def _hub_repo_impl(rctx): executable = False, ) + python_versions = rctx.attr.python_versions + if not python_versions and not rctx.attr.toolchain_python_versions: + content = rctx.read(rctx.path(Label("//python:runtimes_manifest.txt"))) + entries = parse_sha_manifest(content) + python_versions_str = render.list(sorted({getattr(e, "python_version", ""): None for e in entries if getattr(e, "python_version", "")})) + + else: + python_versions_str = render.list(python_versions) if python_versions else render.list(sorted({ + v: None + for v in rctx.attr.toolchain_python_versions + })) + rctx.file( "versions.bzl", _versions_bzl_template.format( default_python_version = rctx.attr.default_python_version, minor_mapping = render.dict(rctx.attr.minor_mapping), - python_versions = rctx.attr.python_versions or render.list(sorted({ - v: None - for v in rctx.attr.toolchain_python_versions - })), + python_versions = python_versions_str, ), executable = False, ) diff --git a/python/private/text_util.bzl b/python/private/text_util.bzl index eaccadf970..f725195978 100644 --- a/python/private/text_util.bzl +++ b/python/private/text_util.bzl @@ -76,13 +76,14 @@ def _render_select(selects, *, no_match_error = None, key_repr = repr, value_rep return "{}({})".format(name, args) -def _render_list(items, *, hanging_indent = ""): +def _render_list(items, *, hanging_indent = "", value_repr = repr): """Convert a list to formatted text. Args: items: list of items. hanging_indent: str, indent to apply to second and following lines of the formatted text. + value_repr: callable, function to represent each item. Returns: The list pretty formatted as a string. @@ -91,12 +92,12 @@ def _render_list(items, *, hanging_indent = ""): return "[]" if len(items) == 1: - return "[{}]".format(repr(items[0])) + return "[{}]".format(value_repr(items[0])) text = "\n".join([ "[", _indent("\n".join([ - "{},".format(repr(item)) + "{},".format(value_repr(item)) for item in items ])), "]", @@ -180,6 +181,11 @@ def _render_dict_dict(d): lines.append("}") return "\n".join(lines) +def _render_struct(value): + """Render a struct value.""" + fields = {k: repr(getattr(value, k)) for k in sorted(dir(value)) if k not in ["to_json", "to_proto"]} + return _render_call("struct", **fields) + render = struct( alias = _render_alias, dict = _render_dict, @@ -192,6 +198,7 @@ render = struct( list = _render_list, select = _render_select, str = _render_str, + struct = _render_struct, toolchain_prefix = _toolchain_prefix, tuple = _render_tuple, string_list_dict = _render_string_list_dict, diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index ec3d02500c..e8cb8bdce4 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -1,3 +1,4 @@ +# Standalone runtimes manifest catalog 87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz 6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz diff --git a/python/versions.bzl b/python/versions.bzl index 416549c3ac..82b22a9eef 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -329,3 +329,54 @@ def gen_python_config_settings(name = ""): flag_values = PLATFORMS[platform].flag_values, constraint_values = PLATFORMS[platform].compatible_with, ) + +def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE_URL): + """Converts parsed manifest entries into the TOOL_VERSIONS dictionary format. + + Args: + entries: {type}`list[struct]` the parsed manifest entries. + base_url: {type}`str` fallback base URL for standalone distributions. + + Returns: + {type}`dict[str, dict]` the tool versions map. + """ + available_versions = {} + entries = sorted( + entries, + key = lambda e: {"full": 3, "install_only": 1, "install_only_stripped": 2}.get(getattr(e, "archive_flavor", ""), 4), + ) + + for entry in entries: + location = getattr(entry, "location", "") + sha256 = getattr(entry, "sha256", "") + py_version = getattr(entry, "python_version", "") + + matched_platform = None + for platform in PLATFORMS.keys(): + if platform in location: + matched_platform = platform + break + + if not matched_platform: + continue + + archive_flavor = getattr(entry, "archive_flavor", "") + if archive_flavor not in ["install_only", "install_only_stripped", "full"]: + continue + + v_dict = available_versions.setdefault(py_version, {}) + if matched_platform in v_dict.get("sha256", {}): + continue + + if "://" in location: + urls = [location] + else: + urls = ["{}/{}".format(base_url, location)] + + strip_prefix = "python/install" if archive_flavor == "full" else "python" + + v_dict.setdefault("sha256", {})[matched_platform] = sha256 + v_dict.setdefault("url", {})[matched_platform] = urls + v_dict.setdefault("strip_prefix", {})[matched_platform] = strip_prefix + + return available_versions From 634aa42890b863fe635a7b1ab3c2e5f1bd6df6e8 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Mon, 8 Jun 2026 06:09:34 +0000 Subject: [PATCH 11/53] Fix bzl_library dependencies for Stardoc API generation Update internal_config_repo_bzl and python_register_toolchains_bzl in python/private/BUILD.bazel to include their respective loaded modules so that Stardoc extracts API documentation successfully. --- python/private/BUILD.bazel | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/private/BUILD.bazel b/python/private/BUILD.bazel index b54c198069..c41860b12f 100644 --- a/python/private/BUILD.bazel +++ b/python/private/BUILD.bazel @@ -216,6 +216,7 @@ bzl_library( name = "internal_config_repo_bzl", srcs = ["internal_config_repo.bzl"], deps = [ + ":pbs_manifest_bzl", ":repo_utils_bzl", ":text_util_bzl", ], @@ -298,12 +299,12 @@ bzl_library( ":bazel_tools_bzl", ":coverage_deps_bzl", ":full_version_bzl", - ":internal_config_repo_bzl", ":python_repository_bzl", ":repo_utils_bzl", ":toolchains_repo_bzl", "//python:versions_bzl", "//python/private/pypi:deps_bzl", + "@rules_python_internal//:manifest_tool_versions_bzl", ], ) @@ -332,6 +333,7 @@ bzl_library( name = "pythons_hub_bzl", srcs = ["pythons_hub.bzl"], deps = [ + ":pbs_manifest_bzl", ":py_toolchain_suite_bzl", ":text_util_bzl", "//python:versions_bzl", From fd12e425035973666b8d933a51cae9fa87988c72 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 9 Jun 2026 06:52:30 +0000 Subject: [PATCH 12/53] build: configure secondary mirror fallback for Stardoc and add retry flags Mitigate transient 504 Gateway Timeout network errors during downloads by adding secondary mirror fallback rewrites for Stardoc to downloader_config.cfg and scaling HTTP timeouts and retries in .bazelrc files. --- .bazelrc | 2 ++ downloader_config.cfg | 2 ++ gazelle/.bazelrc | 2 ++ gazelle/downloader_config.cfg | 2 ++ sphinxdocs/.bazelrc | 2 ++ sphinxdocs/downloader_config.cfg | 2 ++ 6 files changed, 12 insertions(+) diff --git a/.bazelrc b/.bazelrc index 8f784e4c2b..1751c241ce 100644 --- a/.bazelrc +++ b/.bazelrc @@ -46,6 +46,8 @@ common --enable_bzlmod common --disk_cache=~/.cache/bazel/bazel-disk-cache # Drop `experimental_` prefix once Bazel 7 is no longer supported common --experimental_downloader_config=downloader_config.cfg +common --http_timeout_scaling=5.0 +common --experimental_repository_downloader_retries=5 # Additional config to use for readthedocs builds. diff --git a/downloader_config.cfg b/downloader_config.cfg index a978fb89b9..883472bf39 100644 --- a/downloader_config.cfg +++ b/downloader_config.cfg @@ -14,3 +14,5 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/platforms/(.*) mirror.bazel.build/github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 + diff --git a/gazelle/.bazelrc b/gazelle/.bazelrc index bdb29d5bc3..a0357cf776 100644 --- a/gazelle/.bazelrc +++ b/gazelle/.bazelrc @@ -1,6 +1,8 @@ common --deleted_packages=examples/bzlmod_build_file_generation common --deleted_packages=examples/bzlmod_build_file_generation/runfiles common --experimental_downloader_config=downloader_config.cfg +common --http_timeout_scaling=5.0 +common --experimental_repository_downloader_retries=5 test --test_output=errors diff --git a/gazelle/downloader_config.cfg b/gazelle/downloader_config.cfg index a978fb89b9..883472bf39 100644 --- a/gazelle/downloader_config.cfg +++ b/gazelle/downloader_config.cfg @@ -14,3 +14,5 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/platforms/(.*) mirror.bazel.build/github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 + diff --git a/sphinxdocs/.bazelrc b/sphinxdocs/.bazelrc index acff835394..859950a3a4 100644 --- a/sphinxdocs/.bazelrc +++ b/sphinxdocs/.bazelrc @@ -16,6 +16,8 @@ build --enable_runfiles # Local disk cache greatly speeds up builds if the regular cache is lost common --disk_cache=~/.cache/bazel/bazel-disk-cache common --experimental_downloader_config=downloader_config.cfg +common --http_timeout_scaling=5.0 +common --experimental_repository_downloader_retries=5 common --incompatible_python_disallow_native_rules common --incompatible_no_implicit_file_export diff --git a/sphinxdocs/downloader_config.cfg b/sphinxdocs/downloader_config.cfg index a978fb89b9..883472bf39 100644 --- a/sphinxdocs/downloader_config.cfg +++ b/sphinxdocs/downloader_config.cfg @@ -14,3 +14,5 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/platforms/(.*) mirror.bazel.build/github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 + From 834722949d64eb0706adaf2c2d45d2c1197d0902 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 9 Jun 2026 06:54:04 +0000 Subject: [PATCH 13/53] build: strengthen downloader resilience against 504 timeouts Combat transient 504 Gateway Timeout network dropouts on external artifact downloads by escalating HTTP timeout scaling to 10.0 and downloader retries to 10 across bazelrc files, and adding a mirror rewrite rule for rules_java. --- .bazelrc | 5 +++-- downloader_config.cfg | 2 ++ gazelle/.bazelrc | 5 +++-- gazelle/downloader_config.cfg | 2 ++ sphinxdocs/.bazelrc | 5 +++-- sphinxdocs/downloader_config.cfg | 2 ++ 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.bazelrc b/.bazelrc index 1751c241ce..044990fdb1 100644 --- a/.bazelrc +++ b/.bazelrc @@ -46,8 +46,9 @@ common --enable_bzlmod common --disk_cache=~/.cache/bazel/bazel-disk-cache # Drop `experimental_` prefix once Bazel 7 is no longer supported common --experimental_downloader_config=downloader_config.cfg -common --http_timeout_scaling=5.0 -common --experimental_repository_downloader_retries=5 +common --http_timeout_scaling=10.0 +common --experimental_repository_downloader_retries=10 + # Additional config to use for readthedocs builds. diff --git a/downloader_config.cfg b/downloader_config.cfg index 883472bf39..3332afab7a 100644 --- a/downloader_config.cfg +++ b/downloader_config.cfg @@ -14,5 +14,7 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/platforms/(.*) mirror.bazel.build/github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/rules_java/(.*) mirror.bazel.build/github.com/bazelbuild/rules_java/$1 rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 + diff --git a/gazelle/.bazelrc b/gazelle/.bazelrc index a0357cf776..e30216814a 100644 --- a/gazelle/.bazelrc +++ b/gazelle/.bazelrc @@ -1,8 +1,9 @@ common --deleted_packages=examples/bzlmod_build_file_generation common --deleted_packages=examples/bzlmod_build_file_generation/runfiles common --experimental_downloader_config=downloader_config.cfg -common --http_timeout_scaling=5.0 -common --experimental_repository_downloader_retries=5 +common --http_timeout_scaling=10.0 +common --experimental_repository_downloader_retries=10 + test --test_output=errors diff --git a/gazelle/downloader_config.cfg b/gazelle/downloader_config.cfg index 883472bf39..3332afab7a 100644 --- a/gazelle/downloader_config.cfg +++ b/gazelle/downloader_config.cfg @@ -14,5 +14,7 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/platforms/(.*) mirror.bazel.build/github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/rules_java/(.*) mirror.bazel.build/github.com/bazelbuild/rules_java/$1 rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 + diff --git a/sphinxdocs/.bazelrc b/sphinxdocs/.bazelrc index 859950a3a4..a6326e33e7 100644 --- a/sphinxdocs/.bazelrc +++ b/sphinxdocs/.bazelrc @@ -16,8 +16,9 @@ build --enable_runfiles # Local disk cache greatly speeds up builds if the regular cache is lost common --disk_cache=~/.cache/bazel/bazel-disk-cache common --experimental_downloader_config=downloader_config.cfg -common --http_timeout_scaling=5.0 -common --experimental_repository_downloader_retries=5 +common --http_timeout_scaling=10.0 +common --experimental_repository_downloader_retries=10 + common --incompatible_python_disallow_native_rules common --incompatible_no_implicit_file_export diff --git a/sphinxdocs/downloader_config.cfg b/sphinxdocs/downloader_config.cfg index 883472bf39..3332afab7a 100644 --- a/sphinxdocs/downloader_config.cfg +++ b/sphinxdocs/downloader_config.cfg @@ -14,5 +14,7 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/platforms/(.*) mirror.bazel.build/github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/rules_java/(.*) mirror.bazel.build/github.com/bazelbuild/rules_java/$1 rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 + From f9ae9165a53d973017b197d1bb88d6c2ba0ef4f5 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 9 Jun 2026 07:01:38 +0000 Subject: [PATCH 14/53] build: fix primary pass-through rewrites in downloader_config.cfg Ensure primary GitHub release URLs are attempted prior to secondary mirror fallbacks by adding primary pass-through rewrite rules for rules_java and stardoc across downloader_config.cfg files. --- downloader_config.cfg | 3 +++ gazelle/downloader_config.cfg | 3 +++ sphinxdocs/downloader_config.cfg | 3 +++ 3 files changed, 9 insertions(+) diff --git a/downloader_config.cfg b/downloader_config.cfg index 3332afab7a..b2d0bb918b 100644 --- a/downloader_config.cfg +++ b/downloader_config.cfg @@ -5,6 +5,9 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) github.com/bazelbuild/bazel-sk rewrite ^github\.com/bazelbuild/platforms/(.*) github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/rules_java/(.*) github.com/bazelbuild/rules_java/$1 +rewrite ^github\.com/bazelbuild/stardoc/(.*) github.com/bazelbuild/stardoc/$1 + # Fall back to mirror (secondary) # Tracking upstream BCR mirror addition: https://github.com/bazelbuild/platforms/issues/139 diff --git a/gazelle/downloader_config.cfg b/gazelle/downloader_config.cfg index 3332afab7a..b2d0bb918b 100644 --- a/gazelle/downloader_config.cfg +++ b/gazelle/downloader_config.cfg @@ -5,6 +5,9 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) github.com/bazelbuild/bazel-sk rewrite ^github\.com/bazelbuild/platforms/(.*) github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/rules_java/(.*) github.com/bazelbuild/rules_java/$1 +rewrite ^github\.com/bazelbuild/stardoc/(.*) github.com/bazelbuild/stardoc/$1 + # Fall back to mirror (secondary) # Tracking upstream BCR mirror addition: https://github.com/bazelbuild/platforms/issues/139 diff --git a/sphinxdocs/downloader_config.cfg b/sphinxdocs/downloader_config.cfg index 3332afab7a..b2d0bb918b 100644 --- a/sphinxdocs/downloader_config.cfg +++ b/sphinxdocs/downloader_config.cfg @@ -5,6 +5,9 @@ rewrite ^github\.com/bazelbuild/bazel-skylib/(.*) github.com/bazelbuild/bazel-sk rewrite ^github\.com/bazelbuild/platforms/(.*) github.com/bazelbuild/platforms/$1 rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) github.com/bazelbuild/rules_kotlin/$1 rewrite ^github\.com/bazelbuild/rules_shell/(.*) github.com/bazelbuild/rules_shell/$1 +rewrite ^github\.com/bazelbuild/rules_java/(.*) github.com/bazelbuild/rules_java/$1 +rewrite ^github\.com/bazelbuild/stardoc/(.*) github.com/bazelbuild/stardoc/$1 + # Fall back to mirror (secondary) # Tracking upstream BCR mirror addition: https://github.com/bazelbuild/platforms/issues/139 From d40fa3e82a488b61ff5c8bfd1fe3244edf3a3a4a Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 9 Jun 2026 07:13:59 +0000 Subject: [PATCH 15/53] docs: enforce modern Python version on sphinx-build binary Sets `python_version = "3.14"` directly on `sphinx_build_binary` to ensure the documentation builder executes with a modern Python runtime capable of parsing PEP 695 type aliases in recent Sphinx releases. --- docs/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/BUILD.bazel b/docs/BUILD.bazel index 67f21b253b..2fd51e04ea 100644 --- a/docs/BUILD.bazel +++ b/docs/BUILD.bazel @@ -170,8 +170,8 @@ sphinx_build_binary( labels.BOOTSTRAP_IMPL: "script", labels.VENVS_SITE_PACKAGES: "yes", labels.PY_FREETHREADED: "yes", - labels.PYTHON_VERSION: "3.14", }, + python_version = "3.14", target_compatible_with = _TARGET_COMPATIBLE_WITH, deps = [ "@dev_pip//myst_parser", From 9dc9da66e71ffe5e87833f9068c2450f05d0446c Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 9 Jun 2026 15:33:04 +0000 Subject: [PATCH 16/53] Robustify manifest platform matching and microarch sorting Replaced fragile substring search over PLATFORMS.keys() with direct synthesis of the PLATFORMS dictionary key from structured struct fields (arch, vendor, os, libc, freethreaded). Eliminated defensive getattr() access. Factored entry sorting into _manifest_entry_sort_key preferring install_only and the lowest microarchitecture level. --- python/private/python.bzl | 25 ++++++++++++++++++------- python/versions.bzl | 33 ++++++++++++++++++++++----------- 2 files changed, 40 insertions(+), 18 deletions(-) diff --git a/python/private/python.bzl b/python/private/python.bzl index bc5b7134fc..e2c65ab0ac 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -742,6 +742,17 @@ def _override_defaults(*overrides, modules, _fail = fail, default): override.fn(tag = tag, _fail = _fail, default = default) +def _manifest_entry_sort_key(entry): + flavor_rank = {"full": 3, "install_only": 1, "install_only_stripped": 2}.get(entry.archive_flavor, 4) + microarch = entry.microarch + if not microarch: + microarch_rank = 0 + elif microarch.startswith("v") and microarch[1:].isdigit(): + microarch_rank = int(microarch[1:]) + else: + microarch_rank = 999 + return (flavor_rank, microarch_rank) + def _populate_from_pbs_manifest( *, mctx, @@ -783,7 +794,7 @@ def _populate_from_pbs_manifest( # Preference is given to install_only because its smaller entries = sorted( entries, - key = lambda e: {"full": 3, "install_only": 1, "install_only_stripped": 2}.get(e.archive_flavor, 4), + key = _manifest_entry_sort_key, ) for entry in entries: @@ -793,13 +804,13 @@ def _populate_from_pbs_manifest( # Fallback to matching against PLATFORMS keys as before to ensure compatibility # with rules_python expected platform keys. - matched_platform = None - for platform in PLATFORMS.keys(): - if platform in location: - matched_platform = platform - break + matched_platform = "{}-{}-{}".format(entry.arch, entry.vendor, entry.os) + if entry.libc: + matched_platform += "-" + entry.libc + if entry.freethreaded: + matched_platform += "-freethreaded" - if not matched_platform: + if matched_platform not in PLATFORMS: continue if entry.archive_flavor not in ["install_only", "install_only_stripped", "full"]: diff --git a/python/versions.bzl b/python/versions.bzl index 82b22a9eef..a38b2d230a 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -330,6 +330,17 @@ def gen_python_config_settings(name = ""): constraint_values = PLATFORMS[platform].compatible_with, ) +def _manifest_entry_sort_key(entry): + flavor_rank = {"full": 3, "install_only": 1, "install_only_stripped": 2}.get(entry.archive_flavor, 4) + microarch = entry.microarch + if not microarch: + microarch_rank = 0 + elif microarch.startswith("v") and microarch[1:].isdigit(): + microarch_rank = int(microarch[1:]) + else: + microarch_rank = 999 + return (flavor_rank, microarch_rank) + def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE_URL): """Converts parsed manifest entries into the TOOL_VERSIONS dictionary format. @@ -343,24 +354,24 @@ def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE available_versions = {} entries = sorted( entries, - key = lambda e: {"full": 3, "install_only": 1, "install_only_stripped": 2}.get(getattr(e, "archive_flavor", ""), 4), + key = _manifest_entry_sort_key, ) for entry in entries: - location = getattr(entry, "location", "") - sha256 = getattr(entry, "sha256", "") - py_version = getattr(entry, "python_version", "") + location = entry.location + sha256 = entry.sha256 + py_version = entry.python_version - matched_platform = None - for platform in PLATFORMS.keys(): - if platform in location: - matched_platform = platform - break + matched_platform = "{}-{}-{}".format(entry.arch, entry.vendor, entry.os) + if entry.libc: + matched_platform += "-" + entry.libc + if entry.freethreaded: + matched_platform += "-freethreaded" - if not matched_platform: + if matched_platform not in PLATFORMS: continue - archive_flavor = getattr(entry, "archive_flavor", "") + archive_flavor = entry.archive_flavor if archive_flavor not in ["install_only", "install_only_stripped", "full"]: continue From d056f49e0345ffa55e9f69912beb90acd0efb641 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Tue, 9 Jun 2026 15:53:01 +0000 Subject: [PATCH 17/53] Rename plain flavor attribute to build_flavor in manifest parser Renamed flavor to build_flavor in parse_filename and parse_sha_manifest to clearly distinguish runtime build configurations (e.g., debug, pgo+lto) from distribution release bundling schemes (archive_flavor). --- python/private/pbs_manifest.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/private/pbs_manifest.bzl b/python/private/pbs_manifest.bzl index 3b02a93da5..c02ab9269a 100644 --- a/python/private/pbs_manifest.bzl +++ b/python/private/pbs_manifest.bzl @@ -101,8 +101,8 @@ def parse_filename(filename): return { "arch": arch, "archive_flavor": archive_flavor, + "build_flavor": flavor, "build_version": build_version, - "flavor": flavor, "freethreaded": freethreaded, "libc": libc, "location": filename, @@ -125,7 +125,7 @@ def parse_sha_manifest(content): - archive_flavor: Release asset archive type (e.g., "full", "install_only"). - build_version: Standalone release date (e.g., "20260414"). - location: Full package filename or URL (e.g., "cpython-3.11.15..." or "https://..."). - - flavor: Build configuration flavor (e.g., "install_only"). + - build_flavor: Build configuration flavor (e.g., "debug", "pgo+lto"). - freethreaded: Whether the build is free-threaded (boolean). - libc: C library type (e.g., "gnu", "musl", "msvc", or ""). - microarch: Microarchitecture level (e.g., "v2", "v3", or ""). From 72ac435d66378f442abd69929c0082a423ed3a5f Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Wed, 10 Jun 2026 02:28:22 +0000 Subject: [PATCH 18/53] feat(toolchains): Populate runtimes_manifest.txt with historical Python releases Adds all prior release distribution entries (including historical Python 3.8-3.13 and freethreaded variant builds) to runtimes_manifest.txt to ensure dynamic runtime registration provides equivalent toolchain coverage to the previous static table. --- python/runtimes_manifest.txt | 1109 ++++++++++++++++------------------ 1 file changed, 532 insertions(+), 577 deletions(-) diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index e8cb8bdce4..be13619cde 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -1,617 +1,572 @@ # Standalone runtimes manifest catalog -87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz -6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz -4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz -8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz -8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz -a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz -9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz -2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz -d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz -f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz -bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz -efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz -81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz -7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz -91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz -55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz -d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz -33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz -525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz -f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz -6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz 018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz -2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz -59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz -c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz -9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz -fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz -c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz -a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz +024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz -39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz -7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz -eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz +09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz +0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz -e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz -76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz -c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz -ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz -a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz -f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz -cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz -64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz 0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz -debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz +0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz +14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz +1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz +16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz +1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz +1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz +1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz -edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz -8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz +20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz 24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz +24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz +27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz +29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz +2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz -878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz -bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz -14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz -fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz -4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz -00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz -fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz -916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz -3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz -3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz -b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz -49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz -67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz +303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz +317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz +318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz +33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz 389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz 389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz -b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz +3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz +3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz +43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz +4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz +477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz +47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz +48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz +4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz +4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz 4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz -f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz -803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz -647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz -bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz -ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz +4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz 5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz -77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz -8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz -bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz +53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz 5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz +599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz 5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz -facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz -236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz +5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz 60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz -fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz -e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz -1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz -ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz -c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz -872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz -c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz -f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz -a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz -1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz -a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz -74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz -bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz -f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz -ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz -b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz 73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz -3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz -6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz +76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz +76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz +77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz 7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz -00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz -d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz -4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz +803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz 81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz -81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz -cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz -355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz -c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz -e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz -b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz -fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz -27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz -7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz -47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz -f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz -242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz -76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz -08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz -9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz +81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz +8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz 84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz -3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz -b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz -d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz -d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz -79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz -29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz -44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz -a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz -278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz +874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz +88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz +8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz 8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz -11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz +8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz 8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz -af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz 8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz -0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz +913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz +91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz +929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz -874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz -c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz +9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz -8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz -cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz -ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz -87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz +a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz +ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz +ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz +b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz +b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz +bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz -31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz -5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz -31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz -5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz -6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz -ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz -6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz -ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz -128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz +bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz +bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz +bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz +c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz +c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz -39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz -5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz -a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz +cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz +cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz +ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz +cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz +cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz +d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz -869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz -0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz +d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz +d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz -6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz -8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz -6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz -8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz -5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz -9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz -5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz -9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz +d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz +d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz +dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz +dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz +db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz +dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz +e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz -d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz -5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz -17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz +e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz -8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz -3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz -8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz -3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz \ No newline at end of file +e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz +ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz +eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz +ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz +efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz +f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz +f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz +f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz +f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz +f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz +f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz +f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz +facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz +fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz +fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz +fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz From 973ef5ab2e4884fdda3cc603181dfa1fb9b03d9c Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Wed, 10 Jun 2026 02:40:45 +0000 Subject: [PATCH 19/53] feat(toolchains): Unified historical release manifest, dynamic WORKSPACE dictionary, and unit test alignment - Populates runtimes_manifest.txt with the complete historical union of all Python release distributions (including legacy 3.10.11 and freethreaded variant builds) to provide 100% equivalent runtime coverage across WORKSPACE and Bzlmod modes. - Dynamically binds TOOL_VERSIONS in versions.bzl while deferring default argument evaluation in legacy macros. - Aligns manifest unit test assertions in parse_sha_manifest_tests.bzl with the build_flavor struct attribute renaming. --- python/runtimes_manifest.txt | 573 +++++++++++++++++- python/versions.bzl | 10 +- .../parse_sha_manifest_tests.bzl | 14 +- 3 files changed, 585 insertions(+), 12 deletions(-) diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index be13619cde..19f7fcc836 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -1,572 +1,1143 @@ -# Standalone runtimes manifest catalog +# Standalone runtimes manifest catalog (Unified Historical Union) 00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz 00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz +00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz 018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz +018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz 01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz +01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz 024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz 03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz 04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz 055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz 088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz +097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz 09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz 09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz 09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz 0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz +0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz 0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz 0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz 0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz 0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz 0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz 0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz 0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz +0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz 0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz 128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz +1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz 14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz +14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz 1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz 1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz 1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz +164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz 16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz 17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz 17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz 1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz 18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz 19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz 1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz 1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz +1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz 1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz 1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz +1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz 1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz +1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz 1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz 2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz +20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz 20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz 242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz 24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz 24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz 24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz 278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz +27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz 27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz 290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz +295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz 29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz +29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz 2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz 2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz 2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz 2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz +2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz 303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz 30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz +31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz 317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz +317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz 318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz 31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz 33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz +33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz 33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz +37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz 389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz +389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz 389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz 38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz 3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz 39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz 39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz 3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz +3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz 3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz 3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz 3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz +3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz 3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz 3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz +43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz 43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz 44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz +44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz 4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz +4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz 477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz +47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz 47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz 481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz 4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz +4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz 48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz +48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz 4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz 49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz 4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz 4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz 4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz +4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz 4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz +4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz 4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz 4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz +4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz 4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz +525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz 53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz 540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz 5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz +55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz 5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz 57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz 586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz +58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz 599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz 5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz +5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz 5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz +5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz 5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz 5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz 5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz +5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz 5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz 5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz 60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz 60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz +60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz 60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz 63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz 647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz 64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz 688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz 6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz 6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz 6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz 6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz 70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz 70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz 7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz 73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz +73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz 73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz 7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz 74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz 74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz 74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz 7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst 7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz 76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz 7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz +767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz 767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz 76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz +76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz 76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz +76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz 76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz +7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz 77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz 780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz 7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz 79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz +79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz 7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz +7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz 7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz 7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz 7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz +801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz 803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz 80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz 81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz 8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz +8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz 81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz +81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz 8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz 81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz 844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz 847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz 84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz 84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz 86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz 87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz 872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz +872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz 874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz 878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz +8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz 88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz +88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz 8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz +8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz 8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz +8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz 8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz +8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz 8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz 8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz 8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz 8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz 8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz 8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz 8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz 8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz 9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz 90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz +90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz 913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz +916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz 91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz +91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz 929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz 9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz 981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz 9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz +9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz 9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz 9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz 9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz 9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz +a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz +a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz +a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz +a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz +ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz +b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz +b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz +bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz +bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz +bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz +bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz +c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz +c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz +c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz +cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz +ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz +cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz +ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz +cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz +d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz +d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz +d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz +d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz +d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz +da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz +dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz +dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz +dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz +e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz +e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz +e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz +ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz +eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz +efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz +f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz +f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz +f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz +f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz +f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz +f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz +f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz +faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz +fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz +fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz +fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz diff --git a/python/versions.bzl b/python/versions.bzl index a38b2d230a..53dae326e3 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -15,6 +15,7 @@ """The Python versions we use for the toolchains. """ +load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") load("//python/private:platform_info.bzl", "platform_info") # Values present in the @platforms//os package @@ -55,9 +56,6 @@ _ASTRAL_PREFIX = "https://releases.astral.sh/github/python-build-standalone/rele # }, # # It is possible to provide lists in "url". It is also possible to provide patches or patch_strip. -# -# buildifier: disable=unsorted-dict-items -TOOL_VERSIONS = {} # buildifier: disable=unsorted-dict-items MINOR_MAPPING = { @@ -225,7 +223,7 @@ def _generate_platforms(): PLATFORMS = _generate_platforms() -def get_release_info(platform, python_version, base_url = DEFAULT_RELEASE_BASE_URL, tool_versions = TOOL_VERSIONS): +def get_release_info(platform, python_version, base_url = DEFAULT_RELEASE_BASE_URL, tool_versions = None): """Resolve the release URL for the requested interpreter version Args: @@ -237,6 +235,8 @@ def get_release_info(platform, python_version, base_url = DEFAULT_RELEASE_BASE_U Returns: A tuple of (filename, url, archive strip prefix, patches, patch_strip) """ + if tool_versions == None: + tool_versions = TOOL_VERSIONS base_urls = [base_url] if base_url == DEFAULT_RELEASE_BASE_URL or base_url.startswith(_GITHUB_PREFIX): @@ -391,3 +391,5 @@ def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE v_dict.setdefault("strip_prefix", {})[matched_platform] = strip_prefix return available_versions + +TOOL_VERSIONS = tool_versions_from_manifest_entries(MANIFEST_ENTRIES) diff --git a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl b/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl index 4ddcdcc46e..176054d34c 100644 --- a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl +++ b/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl @@ -32,8 +32,8 @@ def _test_parse_filename_baseline_impl(env, target): env.expect.that_dict(parsed1).contains_exactly({ "arch": "x86_64", "archive_flavor": "install_only", + "build_flavor": "", "build_version": "20260414", - "flavor": "", "freethreaded": False, "libc": "gnu", "location": "cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", @@ -48,8 +48,8 @@ def _test_parse_filename_baseline_impl(env, target): env.expect.that_dict(parsed2).contains_exactly({ "arch": "x86_64", "archive_flavor": "full", + "build_flavor": "lto", "build_version": "20260414", - "flavor": "lto", "freethreaded": False, "libc": "musl", "location": "cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", @@ -64,8 +64,8 @@ def _test_parse_filename_baseline_impl(env, target): env.expect.that_dict(parsed3).contains_exactly({ "arch": "aarch64", "archive_flavor": "full", + "build_flavor": "pgo+lto", "build_version": "20260414", - "flavor": "pgo+lto", "freethreaded": True, "libc": "", "location": "cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst", @@ -84,8 +84,8 @@ def _test_parse_filename_baseline_impl(env, target): env.expect.that_dict(parsed5).contains_exactly({ "arch": "x86_64", "archive_flavor": "install_only", + "build_flavor": "", "build_version": "20260414", - "flavor": "", "freethreaded": False, "libc": "gnu", "location": "https://github.com/astral-sh/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", @@ -127,8 +127,8 @@ ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://exampl env.expect.that_dict(structs.to_dict(parsed[0])).contains_exactly({ "arch": "x86_64", "archive_flavor": "install_only", + "build_flavor": "", "build_version": "20260414", - "flavor": "", "freethreaded": False, "libc": "gnu", "location": "cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz", @@ -142,8 +142,8 @@ ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://exampl env.expect.that_dict(structs.to_dict(parsed[2])).contains_exactly({ "arch": "x86_64", "archive_flavor": "full", + "build_flavor": "lto", "build_version": "20260414", - "flavor": "lto", "freethreaded": False, "libc": "musl", "location": "https://example.com/cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst", @@ -157,8 +157,8 @@ ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://exampl env.expect.that_dict(structs.to_dict(parsed[3])).contains_exactly({ "arch": "aarch64", "archive_flavor": "full", + "build_flavor": "pgo+lto", "build_version": "20260414", - "flavor": "pgo+lto", "freethreaded": True, "libc": "", "location": "cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst", From d9423c2fee022556dca4282e7024c4e093a92000 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Wed, 10 Jun 2026 02:59:02 +0000 Subject: [PATCH 20/53] restore accurate runtimes manifest --- python/runtimes_manifest.txt | 573 +---------------------------------- 1 file changed, 1 insertion(+), 572 deletions(-) diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index 19f7fcc836..be13619cde 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -1,1143 +1,572 @@ -# Standalone runtimes manifest catalog (Unified Historical Union) +# Standalone runtimes manifest catalog 00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz 00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz -00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz 018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz -018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz 01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz -01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz 024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz 03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz 04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz 055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz 088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz -097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz 09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz 09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz -09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz 09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz 0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz -0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz 0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz 0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz 0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz 0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz 0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz 0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz 0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz -0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz 0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz 128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz -1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz 14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz -14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz 1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz 1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz 1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz -164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz 16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz 17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz -178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz 17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz 1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz -1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz 18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz 19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz -19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz 1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz -1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz 1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz -1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz 1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz 1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz -1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz 1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz -1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz 1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz 2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz -20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz 20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz 242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz -242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz 24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz 24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz 24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz 278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz -27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz 27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz -27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz 290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz -295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz 29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz -29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz 2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz -2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz 2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz 2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz 2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz -2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz 303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz 30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz -31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz 317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz -317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz 318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz 31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz 33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz -33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz 33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz -37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz 389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz -389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz 389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz 38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz 3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz 39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz 39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz 3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz -3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz 3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz 3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz -3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz 3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz -3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz 3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz 3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz -43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz 43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz 44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz -44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz 4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz -4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz 477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz -47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz 47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz -47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz 481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz 4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz -4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz 48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz -48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz 4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz -4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz 49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz 4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz -4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz 4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz 4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz -4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz 4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz -4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz 4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz 4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz -4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz 4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz -525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz 53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz 540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz -540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz 5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz -55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz 5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz 57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz -5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz 586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz -58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz 599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz 5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz -5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz 5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz -5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz 5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz 5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz 5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz -5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz 5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz 5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz -5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz 60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz 60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz -60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz 60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz -6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz 63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz 647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz 64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz -687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz 688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz -688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz 6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz -6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz 6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz -6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz 6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz -6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz 6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz 70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz 70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz 7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz 73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz -73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz 73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz 7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz -7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz 74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz 74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz 74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz 7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst 7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz 76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz 7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz -767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz 767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz 76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz -76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz 76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz -76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz 76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz -7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz 77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz -78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz 780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz -780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz 7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz 79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz -79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz 7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz -7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz 7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz -7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz 7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz 7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz -801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz 803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz 80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz -80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz 81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz 8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz -8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz 81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz -81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz 8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz 81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz 82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz -8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz 844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz 847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz -847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz 84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz 84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz 86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz 87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz -87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz 872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz -872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz 874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz 878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz -8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz 88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz -88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz 8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz -8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz 8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz -8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz 8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz -8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz 8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz 8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz 8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz 8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz -8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz 8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz 8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz 8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz -8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz 8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz 9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz -9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz 90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz -90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz 913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz -916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz 91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz -91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz 929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz -95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz 9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz 981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz 9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz -9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz 9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz 9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz 9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz -9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz 9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz -a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz -a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz -a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz -a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz -a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz -a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz -a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz -a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz -a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz -ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz -b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz -b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz -b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz -b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz -b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz -b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz -bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz -bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz -bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz -bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz -c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz -c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz -c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz -c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz -cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz -cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz -ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz -cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz -ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz -cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz -cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz -d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz -d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz -d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz -d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz -d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz -d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz -da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz -dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz -dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz -dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz -e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz -e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz -e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 https://github.com/indygreg/python-build-standalone/releases/download/20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz -e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz -ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz -eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 https://github.com/indygreg/python-build-standalone/releases/download/20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae https://github.com/indygreg/python-build-standalone/releases/download/20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz -ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz -efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz -f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 https://github.com/indygreg/python-build-standalone/releases/download/20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz -f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz -f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz -f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz -f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz -f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 https://github.com/indygreg/python-build-standalone/releases/download/20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 https://github.com/indygreg/python-build-standalone/releases/download/20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 https://github.com/indygreg/python-build-standalone/releases/download/20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz -f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz -faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 https://github.com/indygreg/python-build-standalone/releases/download/20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz -fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 https://github.com/indygreg/python-build-standalone/releases/download/20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 https://github.com/indygreg/python-build-standalone/releases/download/20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 https://github.com/indygreg/python-build-standalone/releases/download/20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 https://github.com/indygreg/python-build-standalone/releases/download/20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz -fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e https://github.com/indygreg/python-build-standalone/releases/download/20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz -fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe https://github.com/indygreg/python-build-standalone/releases/download/20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz From c0bc5267b375f71718cdabccda2c74dab6d4833b Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Wed, 10 Jun 2026 03:10:21 +0000 Subject: [PATCH 21/53] feat(toolchains): Universal slice refactoring and top-level WORKSPACE manifest binding - Sets workspace_mode = True in rules_python_internal_deps within internal_dev_deps.bzl to correctly populate manifest entries during top-level WORKSPACE initialization under Bazel 7.x. - Refactors parse_filename in pbs_manifest.bzl to use universal Starlark slice notation instead of interpreter-dependent string methods. - Updates internal_dev_deps docstrings to clarify WORKSPACE mode usage. --- internal_dev_deps.bzl | 5 +++-- python/private/pbs_manifest.bzl | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/internal_dev_deps.bzl b/internal_dev_deps.bzl index 50277ad4ad..eac274786a 100644 --- a/internal_dev_deps.bzl +++ b/internal_dev_deps.bzl @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Dependencies that are needed for development and testing of rules_python itself.""" +"""Dependencies that are needed for development and testing of rules_python itself in WORKSPACE mode.""" load("@bazel_tools//tools/build_defs/repo:http.bzl", _http_archive = "http_archive", _http_file = "http_file") load("@bazel_tools//tools/build_defs/repo:local.bzl", "local_repository") @@ -34,7 +34,7 @@ def http_file(name, **kwargs): ) def rules_python_internal_deps(): - """Fetches all required dependencies for developing/testing rules_python itself. + """Fetches all required dependencies for developing/testing rules_python itself in WORKSPACE mode. Setup of these dependencies is done by `internal_dev_setup.bzl` @@ -46,6 +46,7 @@ def rules_python_internal_deps(): transition_settings = [ str(Label("//tests/multi_pypi:external_deps_name")), ], + workspace_mode = True, ) # Sphinxdocs doesn't support workspace mode, but we have to define it diff --git a/python/private/pbs_manifest.bzl b/python/private/pbs_manifest.bzl index c02ab9269a..8f13f325cf 100644 --- a/python/private/pbs_manifest.bzl +++ b/python/private/pbs_manifest.bzl @@ -15,15 +15,15 @@ def parse_filename(filename): """ basename = filename.rpartition("/")[-1] if basename.endswith(".tar.zst"): - name = basename.removesuffix(".tar.zst") + name = basename[:-8] # len(".tar.zst") == 8 elif basename.endswith(".tar.gz"): - name = basename.removesuffix(".tar.gz") + name = basename[:-7] # len(".tar.gz") == 7 else: return None if not name.startswith("cpython-"): return None - name = name.removeprefix("cpython-") + name = name[8:] # len("cpython-") == 8 left, plus, tail = name.partition("+") if plus: From b9949ce724a4e528ef3f27b00b936bab7cb236fe Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 11 Jun 2026 05:32:12 +0000 Subject: [PATCH 22/53] feat(toolchains): Add 3.15.0a8 freethreaded runtimes to historical manifest - Populates runtimes_manifest.txt with the missing freethreaded platform archives for Python 3.15.0a8 from astral-sh release 20260414. - Enables multi_platform_resolution test suite to successfully resolve and execute freethreaded toolchain validation for 3.15.0a8. --- python/runtimes_manifest.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index be13619cde..f90998e79a 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -570,3 +570,23 @@ fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpyth fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +e39a5118b9c3590d2c7fb4539cf70ad6f54c4c2014a164ca635f7eee61f502c5 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5d2b6581183c357cf06527fb540301ce19ad339fc682e5ba270411655189c852 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +2b5aac5f2b4b63a70c274c6fc31c133ec8433b624699e2366e0b938f4423c501 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +948b51c7c22789053d4d16a466f936e16cd62bb3ca4bf026536e8e3e2d55d5a4 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +8881b3ff8da6fcbe5170ac3c233c4a910778eacbe5658ab0343b04e65412ef9f 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +38000d6f45f9f86f998fdd2b15fdb901a50b87274e70c74a60ac84b5fd4c2418 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9c7cb3c24bdb589cfa636f370025c3a89c9a3bc17a1ae51036685d77ad7114fc 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-musl-freethreaded+lto-full.tar.zst +2f8753e60b6d3dde8ccfff67a43f753c17142547b3815c151cd393d553106d23 20260414/cpython-3.15.0a8+20260414-armv7-unknown-linux-gnueabi-freethreaded+lto-full.tar.zst +2f1b8db1207071e305fb935b03ec7018bdec7a460967322509e37040cdfa9a36 20260414/cpython-3.15.0a8+20260414-armv7-unknown-linux-gnueabihf-freethreaded+lto-full.tar.zst +b10e8ac0d2cdbe855821f14945d72493b19c35db920486c886bdef3d3420d5cb 20260414/cpython-3.15.0a8+20260414-i686-pc-windows-msvc-freethreaded+pgo-full.tar.zst +c0e35709a86fc8f3ed3eb9de2604af9585669ac15bc6941ebc0fe92310648eee 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c918d5e393bc7901423515df3afe0fb0b707ca7d506518a512cfd3507146a8ae 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +8f80d5e589e03a707a24a55f39b8d15e2935b9db0eafad39a5046ad124d5388c 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1f9874a83c5695261718e98a85bc760d00ebbfa495462119b49ccff3fbf2abf6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded+lto-full.tar.zst +8f909317cd03cf27d59266aaeebcc67b85064121d4d7a45e6e16fec89ad0eae8 20260414/cpython-3.15.0a8+20260414-x86_64_v2-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +23f620eadea62840633cb1d48f99b5160da268ab3359e4ae821cbf0def36655e 20260414/cpython-3.15.0a8+20260414-x86_64_v2-unknown-linux-musl-freethreaded+lto-full.tar.zst +399d7a2f59255027a25caede24fe7d1988671d402bab26a2a881995b541d37bf 20260414/cpython-3.15.0a8+20260414-x86_64_v3-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +df3225f72b3fdb55165b7099b5f879956cd86b26a1a12db6042418ba7fe2584a 20260414/cpython-3.15.0a8+20260414-x86_64_v3-unknown-linux-musl-freethreaded+lto-full.tar.zst +72ebad7ecfd7115b35d3a0cce4c1f69c56ce77fe6ac85345cf81e9d3a91af617 20260414/cpython-3.15.0a8+20260414-x86_64_v4-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +12b0d4e38e2c1f7bad56b12c050889fbd6f22ab23497a8bb998e80529f882205 20260414/cpython-3.15.0a8+20260414-x86_64_v4-unknown-linux-musl-freethreaded+lto-full.tar.zst From 6e550e00eed1f4fc05e57141699fdefbe2e87ed4 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 11 Jun 2026 06:48:22 +0000 Subject: [PATCH 23/53] add missing runtimes, remove unnecessary/bogus runtimes --- python/runtimes_manifest.txt | 66 +++++++++++++++++++++++++----------- 1 file changed, 46 insertions(+), 20 deletions(-) diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index f90998e79a..88e9a771a0 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -10,7 +10,9 @@ 03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz 04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz 06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz 088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst @@ -19,6 +21,7 @@ 09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz 09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz @@ -37,6 +40,7 @@ 0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz 0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst @@ -59,12 +63,14 @@ 178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz 17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz 1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz 19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz 1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz 1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz 1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz @@ -110,6 +116,7 @@ 317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz 318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz 33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz @@ -117,6 +124,7 @@ 345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst @@ -140,6 +148,7 @@ 3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz 3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz @@ -156,6 +165,7 @@ 477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz 47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz 4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz 48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz @@ -167,6 +177,7 @@ 4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz 4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz 4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst @@ -181,6 +192,7 @@ 5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz 53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz 5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz @@ -192,6 +204,7 @@ 57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz @@ -201,11 +214,14 @@ 5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz 5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz 5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz 5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz 5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz 5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz @@ -223,11 +239,14 @@ 64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz 688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst @@ -241,6 +260,7 @@ 6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz @@ -251,6 +271,7 @@ 726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz 73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz 73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz 7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz 74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst @@ -273,28 +294,33 @@ 7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz 77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz 780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz 7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz 79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz 7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz 7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz 7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz 803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz 80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz 80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz 81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz 8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz 81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz 8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz 81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz 844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz 847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz 84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz 84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz @@ -313,8 +339,10 @@ 8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz 8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz 8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz 8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz 8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz 8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz 8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz @@ -322,6 +350,7 @@ 8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz 9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz @@ -337,6 +366,7 @@ 94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz 981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst @@ -348,8 +378,10 @@ 9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz 9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz 9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz 9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz @@ -367,6 +399,7 @@ a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpyth a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz @@ -374,6 +407,7 @@ a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpyth ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz @@ -386,6 +420,7 @@ b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpyth b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz @@ -425,10 +460,12 @@ c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpyth c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz @@ -456,6 +493,7 @@ d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpyth d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz @@ -464,6 +502,7 @@ d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpyth d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst @@ -490,6 +529,7 @@ e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpyth e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst @@ -502,11 +542,13 @@ e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpyth e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz @@ -514,6 +556,7 @@ ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpyth eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz @@ -526,6 +569,7 @@ ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpyth ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz @@ -540,6 +584,7 @@ f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpyth f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz @@ -563,6 +608,7 @@ fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpyth fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz @@ -570,23 +616,3 @@ fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpyth fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -e39a5118b9c3590d2c7fb4539cf70ad6f54c4c2014a164ca635f7eee61f502c5 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -5d2b6581183c357cf06527fb540301ce19ad339fc682e5ba270411655189c852 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -2b5aac5f2b4b63a70c274c6fc31c133ec8433b624699e2366e0b938f4423c501 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -948b51c7c22789053d4d16a466f936e16cd62bb3ca4bf026536e8e3e2d55d5a4 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -8881b3ff8da6fcbe5170ac3c233c4a910778eacbe5658ab0343b04e65412ef9f 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -38000d6f45f9f86f998fdd2b15fdb901a50b87274e70c74a60ac84b5fd4c2418 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9c7cb3c24bdb589cfa636f370025c3a89c9a3bc17a1ae51036685d77ad7114fc 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-musl-freethreaded+lto-full.tar.zst -2f8753e60b6d3dde8ccfff67a43f753c17142547b3815c151cd393d553106d23 20260414/cpython-3.15.0a8+20260414-armv7-unknown-linux-gnueabi-freethreaded+lto-full.tar.zst -2f1b8db1207071e305fb935b03ec7018bdec7a460967322509e37040cdfa9a36 20260414/cpython-3.15.0a8+20260414-armv7-unknown-linux-gnueabihf-freethreaded+lto-full.tar.zst -b10e8ac0d2cdbe855821f14945d72493b19c35db920486c886bdef3d3420d5cb 20260414/cpython-3.15.0a8+20260414-i686-pc-windows-msvc-freethreaded+pgo-full.tar.zst -c0e35709a86fc8f3ed3eb9de2604af9585669ac15bc6941ebc0fe92310648eee 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -c918d5e393bc7901423515df3afe0fb0b707ca7d506518a512cfd3507146a8ae 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -8f80d5e589e03a707a24a55f39b8d15e2935b9db0eafad39a5046ad124d5388c 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -1f9874a83c5695261718e98a85bc760d00ebbfa495462119b49ccff3fbf2abf6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded+lto-full.tar.zst -8f909317cd03cf27d59266aaeebcc67b85064121d4d7a45e6e16fec89ad0eae8 20260414/cpython-3.15.0a8+20260414-x86_64_v2-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -23f620eadea62840633cb1d48f99b5160da268ab3359e4ae821cbf0def36655e 20260414/cpython-3.15.0a8+20260414-x86_64_v2-unknown-linux-musl-freethreaded+lto-full.tar.zst -399d7a2f59255027a25caede24fe7d1988671d402bab26a2a881995b541d37bf 20260414/cpython-3.15.0a8+20260414-x86_64_v3-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -df3225f72b3fdb55165b7099b5f879956cd86b26a1a12db6042418ba7fe2584a 20260414/cpython-3.15.0a8+20260414-x86_64_v3-unknown-linux-musl-freethreaded+lto-full.tar.zst -72ebad7ecfd7115b35d3a0cce4c1f69c56ce77fe6ac85345cf81e9d3a91af617 20260414/cpython-3.15.0a8+20260414-x86_64_v4-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -12b0d4e38e2c1f7bad56b12c050889fbd6f22ab23497a8bb998e80529f882205 20260414/cpython-3.15.0a8+20260414-x86_64_v4-unknown-linux-musl-freethreaded+lto-full.tar.zst From d14952dfa5203f1070f33f3b654a31fd8d481cf7 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 11 Jun 2026 07:32:37 +0000 Subject: [PATCH 24/53] fix some shas --- python/runtimes_manifest.txt | 90 ++++++++++++++++++------------------ 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/python/runtimes_manifest.txt b/python/runtimes_manifest.txt index 88e9a771a0..5b5dc35a48 100755 --- a/python/runtimes_manifest.txt +++ b/python/runtimes_manifest.txt @@ -1,4 +1,5 @@ # Standalone runtimes manifest catalog +002c07103bfbe1b889f41eb1b9fade81651a21aed35a3512e2a916c5d7903cfe 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz 00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz @@ -10,18 +11,18 @@ 03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz 04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +0458cb9885c30df690cdf304a16ec335cbc7344792ef0e8a904614b24a61316d 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz 06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz 088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +088754e90ff22962a4ab6f7cb6bdabe5d9e7618266595df2cf7b211766e15132 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz 09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz 09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz -09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz @@ -40,8 +41,8 @@ 0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz 0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +112cf42bdf4d04f69ff4f9bf18c8ce45f494bac1645310bfdeff6f2ffb30dd9a 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst 121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz @@ -61,16 +62,18 @@ 172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz 17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +178d20e568c25abcca9b1dbedf77e904cc3f10a79d22e31f87ddabd2d28f87dc 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz 1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz -18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz 19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz 1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +1a4984207974563c6aea7dc934579d058dbac7436642081113e86011114b9fdf 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1a8a4a97f33740a1cb9fa480321818cdc610c79c9137e511e76dc53635615494 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1c366767d203b722efbd5b3796d16a08436e8a328afd31e551289efba9bf56d1 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz 1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz @@ -82,9 +85,11 @@ 2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz 2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz +20d3bcd7f175e09fa08f4cb3039e5f90fe7e4ce2476534e83f5aa21eb0d7cee9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz 21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +21f297bc1e0503fa077364417e2213c60951d94fd65d837ae6d9d9201ae27483 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz 236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz 242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz 24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz @@ -92,9 +97,11 @@ 24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +2662b1c3f6d5ed4d02d877c07f9384acc0d18b9046d54cd2853dad3ca172784f 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz 278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz 27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +27edbaad8f0c1a8814647d24df3f87eb13c89bbc2cb90e2fc23d8fa48dd64b15 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz 29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz @@ -105,6 +112,7 @@ 2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz 2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +2d06d97e230b7f74de0fe4f661918a0ee827b08127b9372e0890e167de52a8c6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz 2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz @@ -116,19 +124,19 @@ 317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz 318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +32955ad52ec7931e76f4509134a2ba5a6ba6ea0cd55e05217c1ccca3967c4a5c 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz 33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz 33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz 34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz 3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +3788781d0f9704f91ab5f7ad2a040d26b0f9b6aba0a2535db21755aebb69e620 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz 37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz 389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz 389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz @@ -147,8 +155,8 @@ 3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +3dcee23c21e4a3518947e988e115c1d824f07540f4326d93d4ea2028918e0193 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz 3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz @@ -157,15 +165,16 @@ 42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz 4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4373553133eb4712bc10f720da29e091a23153f587fdb2c38f1fb105e70db53a 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz 43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz 44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz +46ac7e9476b938ef19f71029a77d28ed1e201335dd0aa0237fcfed2e5ce0ee61 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz 477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz 47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz -481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz 4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz 48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz @@ -177,7 +186,6 @@ 4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz 4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz 4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz 4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst @@ -192,19 +200,19 @@ 5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz 53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz 5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +54187be504ea5be2f8ed455e9377112bb04f34c9259eae263779e56b403e3e3f 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz 55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz 5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +5791a69a73b76b908f5bdf96da1928de8db696ab198f4ced04b77b22fe712ce0 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz 57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz -586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz @@ -214,20 +222,19 @@ 5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz 5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz 5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +5ccaecdb899431f393209647182def14b36d7398bd59be4fa73dd79b48b3f290 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz 5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz 5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz 5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz 5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz 5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz 60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +6070796c894ef0a25b5a944c8c0327e155df534302e1612a5ddd57d177ddadf7 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz 60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz @@ -239,28 +246,27 @@ 64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz 66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz -688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz 688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz -6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6aff211689e30889cfe90b0b2a76b6f5a7b9e6e0bb28d6a66fd5ba35d36dc78a 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz 6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz 6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst 6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +6d84fb153ccb5cb650652aadc490d99881a8d9b68cf273d44cb553e8cd087734 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +6e69670347e3a6ac1d0cd89b9506d825bd2f2690cc51ead5dec61aec6857d08d 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz 6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz -6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz 6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz @@ -271,7 +277,6 @@ 726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz 73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz 73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz 7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz 74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst @@ -294,33 +299,29 @@ 7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz 77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz -780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz 780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz 7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz 7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz 79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz +7a1d36a1567cd747411c9c2bc7e2b5c1ac277ea7c734f74b158b94101fd5ea43 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz 7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz -7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz 7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz 7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz 7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst 801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz 803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz 80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz 80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz 81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz 8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz 81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz 8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz 81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz 828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz 8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz 844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz 847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz 84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz 84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz @@ -339,10 +340,8 @@ 8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz 8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz 8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz 8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz 8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz 8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz 8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz @@ -350,7 +349,6 @@ 8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz -8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz 8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz 9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz @@ -366,48 +364,51 @@ 94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz 94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz 95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz -9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +95ddfe7dd52185f7e5d55524eafb48e54d1eab0b0cf013966f144a411f3ddd0f 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz 9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz 969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +9794866e9a464f349055d791ea8f14dfa7f339ecac5aa9b1084bb2ce388fc598 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz 981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst 9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst 99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +99dd7e425b3dac23e03f37787d77ee0af531e96b1c748275185342bc6642eb6b 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz 99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz 9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz 9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz 9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz 9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz 9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz 9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +9d7e5ba8020fd942a89a57179d9015eb0237c2d95cdbf8378639723663f11706 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz 9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz 9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz 9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst 9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +a183ec7a10c38ab8c3f19968614f1e69ec697199e94525583662dfbc22b70d9a 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +a4bfd77675740a0362c137b094f3cd9995775e8e6c0a7874a095dd055fd1ea99 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +a6797ad05c7d7f74a2cea28bf012f9199f4d6c1ed6d09f7adfeb9b3c538c6258 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz -a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz +abe26a6cab523a5d00d75f1353cbad9c5dc04262dcb0dc4a2b47d02384e2a7d7 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz @@ -420,15 +421,17 @@ b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpyth b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +b3c8210674140a4c5beefa2d4afd752979222638a0fb68de672c60300b4a6642 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +b5e025e340d0faa1772ef234e320401b0aa5cf6c9d16ed63a8c44be7c531bc58 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +b72908bce86036a0a1ba98ca9917ea0b99dc1e6c5d715d3d463c4f330880c09b 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz @@ -447,6 +450,7 @@ bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpyth bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c1a845a79da56265dc49628bc3b9e20d34f04674fd2d637ee40cbe259d2b1b95 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz @@ -460,12 +464,11 @@ c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpyth c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz -c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +c6c1aae3809ef585271f6f1bb3643a2c6e0c82b811b93284c6218b31f0b931d7 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz @@ -485,15 +488,16 @@ cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpyth cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d0e355df7362d12542108f78b3f8085b21e6824420769117c262ac86569bb2a7 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +d23c93ea7502420c71e4acf02999c72ab80797d51843b1b6a315ca7bac3cb780 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz @@ -502,7 +506,6 @@ d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpyth d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst @@ -519,6 +522,7 @@ dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpyth dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +dd8b6161c4af3c2f5f29b3535decdcf146ce90d7a062687c9e5229b4151198b0 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz @@ -529,7 +533,6 @@ e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpyth e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst @@ -542,13 +545,12 @@ e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpyth e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e7cf7bc717082bb38f5ca75988ecd8e5dbc1b0535192129371e30235d29d67b5 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz @@ -556,7 +558,6 @@ ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpyth eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz @@ -569,10 +570,10 @@ ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpyth ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +eea71fc3625fcc2408171b17fb97e0c6286ed60ed225ca7fd6e2fc5d9cc21dce 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz @@ -584,10 +585,10 @@ f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpyth f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f525a6244d73450e0c0a7ba125b5934894ab25ee171f7099c239d4eb7ce2f5f2 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz @@ -608,7 +609,6 @@ fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpyth fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz From 9054654abda882cc09714282c83f11ab07eb5983 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 11 Jun 2026 07:43:10 +0000 Subject: [PATCH 25/53] fix(gazelle): Explicitly instantiate rules_python_internal in WORKSPACE mode Instantiates rules_python_internal with workspace_mode = True in gazelle/WORKSPACE prior to calling py_repositories() to ensure configuration targets and build settings are correctly resolved under Bazel 7.x WORKSPACE mode. --- gazelle/WORKSPACE | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gazelle/WORKSPACE b/gazelle/WORKSPACE index ebb18e7a47..afe65c15d7 100644 --- a/gazelle/WORKSPACE +++ b/gazelle/WORKSPACE @@ -47,6 +47,13 @@ local_repository( path = "..", ) +load("@rules_python//python/private:internal_config_repo.bzl", "internal_config_repo") # buildifier: disable=bzl-visibility + +internal_config_repo( + name = "rules_python_internal", + workspace_mode = True, +) + load("@rules_python//python:repositories.bzl", "py_repositories") py_repositories() From 65f6925e07f5f2bdb6763489945de96d911397ef Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Fri, 12 Jun 2026 22:50:04 -0700 Subject: [PATCH 26/53] for workspace mode, load manifest from a bzl file for simplicity --- .../private/runtimes_manifest_workspace.bzl | 626 ++++++++++++++++++ python/versions.bzl | 7 +- 2 files changed, 632 insertions(+), 1 deletion(-) create mode 100644 python/private/runtimes_manifest_workspace.bzl diff --git a/python/private/runtimes_manifest_workspace.bzl b/python/private/runtimes_manifest_workspace.bzl new file mode 100644 index 0000000000..1b3e55eb66 --- /dev/null +++ b/python/private/runtimes_manifest_workspace.bzl @@ -0,0 +1,626 @@ +"""Manifest of runtimes for workspace mode builds. + +This is the workspace equivalent of runtimes_manifest.txt. It's a bzl file +to simplify loading of the data under workspace mode, which doesn't +support parsing a runtimes_manifest.txt file. +""" +MANIFEST_TEXT = """ +# Standalone runtimes manifest catalog +002c07103bfbe1b889f41eb1b9fade81651a21aed35a3512e2a916c5d7903cfe 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz +018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz +01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz +024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +0458cb9885c30df690cdf304a16ec335cbc7344792ef0e8a904614b24a61316d 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz +06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +088754e90ff22962a4ab6f7cb6bdabe5d9e7618266595df2cf7b211766e15132 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz +09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz +0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz +0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +112cf42bdf4d04f69ff4f9bf18c8ce45f494bac1645310bfdeff6f2ffb30dd9a 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz +14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz +1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz +16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +178d20e568c25abcca9b1dbedf77e904cc3f10a79d22e31f87ddabd2d28f87dc 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +1a4984207974563c6aea7dc934579d058dbac7436642081113e86011114b9fdf 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1a8a4a97f33740a1cb9fa480321818cdc610c79c9137e511e76dc53635615494 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1c366767d203b722efbd5b3796d16a08436e8a328afd31e551289efba9bf56d1 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz +1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz +1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz +1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz +20d3bcd7f175e09fa08f4cb3039e5f90fe7e4ce2476534e83f5aa21eb0d7cee9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +21f297bc1e0503fa077364417e2213c60951d94fd65d837ae6d9d9201ae27483 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz +236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +2662b1c3f6d5ed4d02d877c07f9384acc0d18b9046d54cd2853dad3ca172784f 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz +27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +27edbaad8f0c1a8814647d24df3f87eb13c89bbc2cb90e2fc23d8fa48dd64b15 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz +29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz +2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +2d06d97e230b7f74de0fe4f661918a0ee827b08127b9372e0890e167de52a8c6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz +303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz +317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz +318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +32955ad52ec7931e76f4509134a2ba5a6ba6ea0cd55e05217c1ccca3967c4a5c 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz +33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +3788781d0f9704f91ab5f7ad2a040d26b0f9b6aba0a2535db21755aebb69e620 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz +37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz +389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz +389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz +3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz +3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +3dcee23c21e4a3518947e988e115c1d824f07540f4326d93d4ea2028918e0193 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4373553133eb4712bc10f720da29e091a23153f587fdb2c38f1fb105e70db53a 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz +43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz +46ac7e9476b938ef19f71029a77d28ed1e201335dd0aa0237fcfed2e5ce0ee61 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz +477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz +47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz +48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz +4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz +4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz +4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz +4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz +53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +54187be504ea5be2f8ed455e9377112bb04f34c9259eae263779e56b403e3e3f 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz +5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +5791a69a73b76b908f5bdf96da1928de8db696ab198f4ced04b77b22fe712ce0 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz +599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz +5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz +5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +5ccaecdb899431f393209647182def14b36d7398bd59be4fa73dd79b48b3f290 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz +5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz +6070796c894ef0a25b5a944c8c0327e155df534302e1612a5ddd57d177ddadf7 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz +60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6aff211689e30889cfe90b0b2a76b6f5a7b9e6e0bb28d6a66fd5ba35d36dc78a 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz +6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +6d84fb153ccb5cb650652aadc490d99881a8d9b68cf273d44cb553e8cd087734 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +6e69670347e3a6ac1d0cd89b9506d825bd2f2690cc51ead5dec61aec6857d08d 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz +73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz +7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz +767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz +76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz +76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz +77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz +7a1d36a1567cd747411c9c2bc7e2b5c1ac277ea7c734f74b158b94101fd5ea43 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz +7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz +803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz +81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz +81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz +8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz +84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz +874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz +88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz +8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz +8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz +8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz +8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz +913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz +91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz +929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +95ddfe7dd52185f7e5d55524eafb48e54d1eab0b0cf013966f144a411f3ddd0f 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +9794866e9a464f349055d791ea8f14dfa7f339ecac5aa9b1084bb2ce388fc598 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +99dd7e425b3dac23e03f37787d77ee0af531e96b1c748275185342bc6642eb6b 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz +9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +9d7e5ba8020fd942a89a57179d9015eb0237c2d95cdbf8378639723663f11706 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz +a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +a183ec7a10c38ab8c3f19968614f1e69ec697199e94525583662dfbc22b70d9a 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz +a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +a4bfd77675740a0362c137b094f3cd9995775e8e6c0a7874a095dd055fd1ea99 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +a6797ad05c7d7f74a2cea28bf012f9199f4d6c1ed6d09f7adfeb9b3c538c6258 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz +abe26a6cab523a5d00d75f1353cbad9c5dc04262dcb0dc4a2b47d02384e2a7d7 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz +ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz +b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +b3c8210674140a4c5beefa2d4afd752979222638a0fb68de672c60300b4a6642 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz +b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +b5e025e340d0faa1772ef234e320401b0aa5cf6c9d16ed63a8c44be7c531bc58 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +b72908bce86036a0a1ba98ca9917ea0b99dc1e6c5d715d3d463c4f330880c09b 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz +bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz +bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz +bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz +bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c1a845a79da56265dc49628bc3b9e20d34f04674fd2d637ee40cbe259d2b1b95 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz +c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz +c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +c6c1aae3809ef585271f6f1bb3643a2c6e0c82b811b93284c6218b31f0b931d7 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz +cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz +cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz +ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz +cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz +cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz +d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d0e355df7362d12542108f78b3f8085b21e6824420769117c262ac86569bb2a7 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz +d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +d23c93ea7502420c71e4acf02999c72ab80797d51843b1b6a315ca7bac3cb780 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz +d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz +d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz +d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz +dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz +dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz +db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz +dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +dd8b6161c4af3c2f5f29b3535decdcf146ce90d7a062687c9e5229b4151198b0 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz +df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz +e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz +e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e7cf7bc717082bb38f5ca75988ecd8e5dbc1b0535192129371e30235d29d67b5 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz +e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz +ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz +eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz +ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +eea71fc3625fcc2408171b17fb97e0c6286ed60ed225ca7fd6e2fc5d9cc21dce 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz +efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz +f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz +f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f525a6244d73450e0c0a7ba125b5934894ab25ee171f7099c239d4eb7ce2f5f2 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz +f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz +f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz +f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz +f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz +f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz +facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz +fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz +fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz +fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +""" diff --git a/python/versions.bzl b/python/versions.bzl index 53dae326e3..08604c8500 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -15,9 +15,12 @@ """The Python versions we use for the toolchains. """ -load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") +load("//python/private:pbs_manifest.bzl", "parse_sha_manifest") load("//python/private:platform_info.bzl", "platform_info") +##load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") +load("//python/private:runtimes_manifest_workspace.bzl", "MANIFEST_TEXT") + # Values present in the @platforms//os package MACOS_NAME = "osx" LINUX_NAME = "linux" @@ -392,4 +395,6 @@ def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE return available_versions +MANIFEST_ENTRIES = parse_sha_manifest(MANIFEST_TEXT) + TOOL_VERSIONS = tool_versions_from_manifest_entries(MANIFEST_ENTRIES) From 6ff4988a4384b04752fa388bd7e65c6449f5f51f Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 06:26:22 +0000 Subject: [PATCH 27/53] refactor(toolchains): Sever internal_config_repo from manifest generation - Completely removes runtime manifest parsing, workspace_mode attributes, and manifest_tool_versions.bzl file generation from internal_config_repo.bzl. - Updates python_register_toolchains.bzl and print_toolchain_checksums.bzl to load MANIFEST_ENTRIES cleanly from //python:versions.bzl. - Declares runtimes_manifest_workspace_bzl in python/private/BUILD.bazel to satisfy upstream documentation generation dependencies. --- gazelle/WORKSPACE | 1 - internal_dev_deps.bzl | 1 - python/BUILD.bazel | 5 ++++- python/private/BUILD.bazel | 5 +++++ python/private/internal_config_repo.bzl | 17 ----------------- python/private/print_toolchain_checksums.bzl | 3 +-- python/private/python_register_toolchains.bzl | 2 +- 7 files changed, 11 insertions(+), 23 deletions(-) diff --git a/gazelle/WORKSPACE b/gazelle/WORKSPACE index afe65c15d7..3d96d5de82 100644 --- a/gazelle/WORKSPACE +++ b/gazelle/WORKSPACE @@ -51,7 +51,6 @@ load("@rules_python//python/private:internal_config_repo.bzl", "internal_config_ internal_config_repo( name = "rules_python_internal", - workspace_mode = True, ) load("@rules_python//python:repositories.bzl", "py_repositories") diff --git a/internal_dev_deps.bzl b/internal_dev_deps.bzl index eac274786a..7ab4717236 100644 --- a/internal_dev_deps.bzl +++ b/internal_dev_deps.bzl @@ -46,7 +46,6 @@ def rules_python_internal_deps(): transition_settings = [ str(Label("//tests/multi_pypi:external_deps_name")), ], - workspace_mode = True, ) # Sphinxdocs doesn't support workspace mode, but we have to define it diff --git a/python/BUILD.bazel b/python/BUILD.bazel index d5fc260789..c4dfcb09b4 100644 --- a/python/BUILD.bazel +++ b/python/BUILD.bazel @@ -226,7 +226,10 @@ bzl_library( name = "versions_bzl", srcs = ["versions.bzl"], visibility = ["//:__subpackages__"], - deps = ["//python/private:platform_info_bzl"], + deps = [ + "//python/private:platform_info_bzl", + "//python/private:runtimes_manifest_workspace_bzl", + ], ) # NOTE: Remember to add bzl_library targets to //tests:bzl_libraries diff --git a/python/private/BUILD.bazel b/python/private/BUILD.bazel index c41860b12f..99d843a4a7 100644 --- a/python/private/BUILD.bazel +++ b/python/private/BUILD.bazel @@ -657,6 +657,11 @@ bzl_library( ], ) +bzl_library( + name = "runtimes_manifest_workspace_bzl", + srcs = ["runtimes_manifest_workspace.bzl"], +) + bzl_library( name = "sentinel_bzl", srcs = ["sentinel.bzl"], diff --git a/python/private/internal_config_repo.bzl b/python/private/internal_config_repo.bzl index 81d3dc2554..72970cf100 100644 --- a/python/private/internal_config_repo.bzl +++ b/python/private/internal_config_repo.bzl @@ -19,7 +19,6 @@ settings for rules to later use. """ load("//python/private:text_util.bzl", "render") -load(":pbs_manifest.bzl", "parse_sha_manifest") load(":repo_utils.bzl", "repo_utils") _ENABLE_DEPRECATION_WARNINGS_ENVVAR_NAME = "RULES_PYTHON_DEPRECATION_WARNINGS" @@ -54,11 +53,6 @@ bzl_library( srcs = ["extra_transition_settings.bzl"], ) -bzl_library( - name = "manifest_tool_versions_bzl", - srcs = ["manifest_tool_versions.bzl"], -) - bzl_library( name = "rules_python_config_bzl", srcs = ["rules_python_config.bzl"], @@ -136,13 +130,6 @@ def _internal_config_repo_impl(rctx): _TRANSITION_SETTINGS_DEBUG_TEMPLATE.format(lines = "\n".join(debug_lines)), ) - if rctx.attr.workspace_mode: - content = rctx.read(rctx.path(Label("//python:runtimes_manifest.txt"))) - entries = parse_sha_manifest(content) - rctx.file("manifest_tool_versions.bzl", _render_manifest_entries(entries)) - else: - rctx.file("manifest_tool_versions.bzl", "MANIFEST_ENTRIES = []\n") - return None internal_config_repo = repository_rule( @@ -152,12 +139,8 @@ internal_config_repo = repository_rule( attrs = { "transition_setting_generators": attr.string_list_dict(), "transition_settings": attr.string_list(), - "workspace_mode": attr.bool(default = False), }, ) def _bool_from_environ(rctx, key, default): return bool(int(rctx.getenv(key, default))) - -def _render_manifest_entries(entries): - return "MANIFEST_ENTRIES = {}\n".format(render.list(entries, value_repr = render.struct)) diff --git a/python/private/print_toolchain_checksums.bzl b/python/private/print_toolchain_checksums.bzl index cca3a1ae79..8611e763a0 100644 --- a/python/private/print_toolchain_checksums.bzl +++ b/python/private/print_toolchain_checksums.bzl @@ -1,8 +1,7 @@ """Print the toolchain versions. """ -load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") -load("//python:versions.bzl", "get_release_info", "tool_versions_from_manifest_entries") +load("//python:versions.bzl", "MANIFEST_ENTRIES", "get_release_info", "tool_versions_from_manifest_entries") load("//python/private:text_util.bzl", "render") load("//python/private:version.bzl", "version") diff --git a/python/private/python_register_toolchains.bzl b/python/private/python_register_toolchains.bzl index 0857f89c52..0513cbe218 100644 --- a/python/private/python_register_toolchains.bzl +++ b/python/private/python_register_toolchains.bzl @@ -15,10 +15,10 @@ """This file contains repository rules and macros to support toolchain registration. """ -load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") load( "//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", + "MANIFEST_ENTRIES", "MINOR_MAPPING", "PLATFORMS", "get_release_info", From 27d19f49298c5b7168459707e5ccd4045e5a1766 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 06:38:16 +0000 Subject: [PATCH 28/53] feat(ci): Add top-level BazelCI replication script Creates replicate_ci.py in the repository root to allow developers to easily emulate and run any BazelCI job configuration from .bazelci/presubmit.yml locally. --- replicate_ci.py | 146 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100755 replicate_ci.py diff --git a/replicate_ci.py b/replicate_ci.py new file mode 100755 index 0000000000..8552b38eff --- /dev/null +++ b/replicate_ci.py @@ -0,0 +1,146 @@ +#!/usr/bin/env python3 + +import argparse +import os +import shlex +import subprocess +import sys + +import yaml + + +def parse_args(): + parser = argparse.ArgumentParser( + description="Replicate and emulate BazelCI job configurations from presubmit.yml." + ) + parser.add_argument( + "job", + help="The key or name of the CI job to emulate (e.g., ubuntu_workspace or 'Default: Ubuntu, workspace').", + ) + return parser.parse_args() + + +def run_cmd(cmd, cwd=None, env=None, shell=False): + if shell: + cmd_str = cmd if isinstance(cmd, str) else " ".join(cmd) + else: + cmd_str = shlex.join(cmd) if isinstance(cmd, list) else str(cmd) + + print(f"\n🚀 Executing: {cmd_str}") + if cwd and cwd != os.getcwd(): + print(f"📁 Directory: {cwd}") + if env and "USE_BAZEL_VERSION" in env: + print(f"🔧 Bazel Version: {env['USE_BAZEL_VERSION']}") + + res = subprocess.run(cmd, cwd=cwd, env=env, shell=shell) + if res.returncode != 0: + print( + f"\n❌ Command failed with return code {res.returncode}: {cmd_str}", + file=sys.stderr, + ) + sys.exit(res.returncode) + + +def resolve_bazel_version(task_bazel): + if not task_bazel or task_bazel.startswith("${{"): + return None + return task_bazel + + +def main(): + args = parse_args() + + presubmit_path = ".bazelci/presubmit.yml" + if not os.path.exists(presubmit_path): + print( + f"❌ Error: Presubmit file not found at '{presubmit_path}'", + file=sys.stderr, + ) + sys.exit(1) + + with open(presubmit_path) as f: + presubmit = yaml.safe_load(f) + + tasks = presubmit.get("tasks", {}) + if not tasks: + print( + f"❌ Error: No tasks found in '{presubmit_path}'", + file=sys.stderr, + ) + sys.exit(1) + + # Match by key or by name + job_key = None + if args.job in tasks: + job_key = args.job + else: + for key, config in tasks.items(): + if config.get("name") == args.job: + job_key = key + break + + if not job_key: + print( + f"❌ Error: CI job '{args.job}' not found in '{presubmit_path}'\n", + file=sys.stderr, + ) + print("📋 Available CI Job Keys:", file=sys.stderr) + for key in sorted(tasks.keys()): + name = tasks[key].get("name", key) + print(f" • {key} ({name})", file=sys.stderr) + sys.exit(1) + + task = tasks[job_key] + job_name = task.get("name", job_key) + print(f"🎯 Replicating CI Job: {job_key} ('{job_name}')") + + # Setup working directory + repo_root = os.path.abspath(os.path.dirname(__file__)) + cwd = repo_root + if "working_directory" in task: + cwd = os.path.join(repo_root, task["working_directory"]) + if not os.path.exists(cwd): + print( + f"❌ Error: working_directory '{task['working_directory']}' does not exist at '{cwd}'", + file=sys.stderr, + ) + sys.exit(1) + + # Setup environment + env = os.environ.copy() + bzl_version = resolve_bazel_version(task.get("bazel")) + if bzl_version: + env["USE_BAZEL_VERSION"] = bzl_version + + # Execute pre-commands + is_windows = sys.platform.startswith("win") + pre_cmds = task.get("batch_commands" if is_windows else "shell_commands", []) + for pre_cmd in pre_cmds: + run_cmd(pre_cmd, cwd=cwd, env=env, shell=True) + + # Execute Build Targets + build_targets = task.get("build_targets", []) + if build_targets: + build_flags = task.get("build_flags", []) + cmd = ["bazel", "build"] + build_flags + ["--"] + build_targets + run_cmd(cmd, cwd=cwd, env=env) + + # Execute Test Targets + test_targets = task.get("test_targets", []) + if test_targets: + test_flags = task.get("test_flags", []) + cmd = ["bazel", "test"] + test_flags + ["--"] + test_targets + run_cmd(cmd, cwd=cwd, env=env) + + # Execute Coverage Targets + coverage_targets = task.get("coverage_targets", []) + if coverage_targets: + coverage_flags = task.get("test_flags", []) + cmd = ["bazel", "coverage"] + coverage_flags + ["--"] + coverage_targets + run_cmd(cmd, cwd=cwd, env=env) + + print(f"\n🎉 Successfully replicated CI Job: {job_key}") + + +if __name__ == "__main__": + main() From 38e0dde48ce46d140701bad4599cd07ff51791a7 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 06:47:00 +0000 Subject: [PATCH 29/53] fix(ci): Streamline CI emulation tool and documentation tests - Renames top-level CI replication script from replicate_ci.py to replicate_ci. - Creates tests/docs/BUILD.bazel to validate documentation generation Stardoc macros. - Removes dead manifest_tool_versions_bzl dependency from python/private/BUILD.bazel. --- python/private/BUILD.bazel | 1 - replicate_ci.py => replicate_ci | 0 tests/docs/BUILD.bazel | 10 ++++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) rename replicate_ci.py => replicate_ci (100%) create mode 100644 tests/docs/BUILD.bazel diff --git a/python/private/BUILD.bazel b/python/private/BUILD.bazel index 99d843a4a7..ab23dd8baa 100644 --- a/python/private/BUILD.bazel +++ b/python/private/BUILD.bazel @@ -304,7 +304,6 @@ bzl_library( ":toolchains_repo_bzl", "//python:versions_bzl", "//python/private/pypi:deps_bzl", - "@rules_python_internal//:manifest_tool_versions_bzl", ], ) diff --git a/replicate_ci.py b/replicate_ci similarity index 100% rename from replicate_ci.py rename to replicate_ci diff --git a/tests/docs/BUILD.bazel b/tests/docs/BUILD.bazel new file mode 100644 index 0000000000..bdc99a290c --- /dev/null +++ b/tests/docs/BUILD.bazel @@ -0,0 +1,10 @@ +load("@bazel_skylib//rules:build_test.bzl", "build_test") + +licenses(["notice"]) + +build_test( + name = "docs_build_test", + targets = [ + "//docs:docs", + ], +) From 97fb9aac1fa06c1fcbee7b9f1c6fb0cebacf9650 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 06:57:34 +0000 Subject: [PATCH 30/53] feat(skills): Update Buildkite skills to use bk CLI - Ditch custom Python web scraping and JSON REST API requests in buildkite-get-results and buildkite-retry-job skills. - Leverage the official Buildkite command line tool (bk) to fetch build details, view job summaries, download logs, and trigger retries natively. --- .agents/skills/buildkite-get-results/SKILL.md | 3 +- .../scripts/get_buildkite_results.py | 260 ++++-------------- .agents/skills/buildkite-retry-job/SKILL.md | 2 + .../scripts/retry_buildkite_jobs.py | 138 ++++++---- 4 files changed, 131 insertions(+), 272 deletions(-) diff --git a/.agents/skills/buildkite-get-results/SKILL.md b/.agents/skills/buildkite-get-results/SKILL.md index a2a936513e..51a5fd2086 100644 --- a/.agents/skills/buildkite-get-results/SKILL.md +++ b/.agents/skills/buildkite-get-results/SKILL.md @@ -3,7 +3,8 @@ name: buildkite-get-results description: Gets buildkite build results --- -Pass the PR number to the `scripts/get_buildkite_results.py` script. +Pass the PR number, Build URL, or Build ID to the `scripts/get_buildkite_results.py` script. +This script has been modernly updated to use the official Buildkite command line tool (`bk`). The `--jobs` flag can do glob-style filtering of jobs. diff --git a/.agents/skills/buildkite-get-results/scripts/get_buildkite_results.py b/.agents/skills/buildkite-get-results/scripts/get_buildkite_results.py index 06117fbd7c..1af829a8e6 100755 --- a/.agents/skills/buildkite-get-results/scripts/get_buildkite_results.py +++ b/.agents/skills/buildkite-get-results/scripts/get_buildkite_results.py @@ -1,254 +1,94 @@ #!/usr/bin/env python3 + import argparse import json import re import subprocess import sys -import urllib.request -def get_pr_checks(pr_number): +def check_cli(cmd_name, install_url): try: - # Check if gh is installed subprocess.run( - ["gh", "--version"], + [cmd_name, "--version"], check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, ) - except FileNotFoundError: + except Exception: print( - "Error: 'gh' (GitHub CLI) is not installed or not in PATH.", file=sys.stderr + f"❌ Error: '{cmd_name}' CLI is not installed or not in PATH.", + file=sys.stderr, ) - sys.exit(1) - except subprocess.CalledProcessError: - print("Error: 'gh' command failed. Is it installed?", file=sys.stderr) + print(f"Please install it from {install_url}", file=sys.stderr) sys.exit(1) - cmd = ["gh", "pr", "checks", str(pr_number), "--json", "bucket,name,link,state"] + +def get_build_url_from_pr(pr_number): + check_cli("gh", "https://cli.github.com/") + cmd = ["gh", "pr", "checks", str(pr_number), "--json", "name,link"] try: - result = subprocess.run(cmd, capture_output=True, text=True, check=True) - return json.loads(result.stdout) + res = subprocess.run(cmd, capture_output=True, text=True, check=True) + checks = json.loads(res.stdout) + for c in checks: + link = c.get("link", "") + if "buildkite.com" in link: + return link.split("#")[0] + print(f"❌ No Buildkite checks found for PR #{pr_number}.", file=sys.stderr) + sys.exit(1) except subprocess.CalledProcessError as e: - print(f"Error fetching PR checks: {e.stderr}", file=sys.stderr) + print(f"❌ Error fetching PR checks: {e.stderr}", file=sys.stderr) sys.exit(1) -def get_buildkite_build_url(checks): - for check in checks: - # Looking for Buildkite check. The name usually contains "buildkite" - if "buildkite" in check.get("name", "").lower(): - return check.get("link") - return None - - -def fetch_buildkite_data(build_url): - # Convert https://buildkite.com/org/pipeline/builds/number - # to https://buildkite.com/org/pipeline/builds/number.json - if not build_url.endswith(".json"): - json_url = build_url + ".json" - else: - json_url = build_url - - try: - with urllib.request.urlopen(json_url) as response: - if response.status != 200: - print( - f"Error fetching data from {json_url}: Status {response.status}", - file=sys.stderr, - ) - return None - data = json.loads(response.read().decode()) - except Exception as e: - print(f"Error fetching data from {json_url}: {e}", file=sys.stderr) - return None - - # If jobs list is truncated or empty but statistics says there are more jobs, - # try to fetch from /data/jobs.json - jobs = data.get("jobs", []) - jobs_count = data.get("statistics", {}).get("jobs_count", 0) - - if len(jobs) < jobs_count: - # Try fetching from /data/jobs.json - # Build URL might have .json already from the check above - base_url = build_url - if base_url.endswith(".json"): - base_url = base_url[:-5] - - jobs_url = f"{base_url}/data/jobs.json" - try: - with urllib.request.urlopen(jobs_url) as response: - if response.status == 200: - jobs_data = json.loads(response.read().decode()) - if isinstance(jobs_data, list): - data["jobs"] = jobs_data - elif isinstance(jobs_data, dict) and "records" in jobs_data: - data["jobs"] = jobs_data["records"] - except Exception as e: - print( - f"Warning: Could not fetch detailed jobs from {jobs_url}: {e}", - file=sys.stderr, - ) - - return data - - -def download_log(job_url, output_path): - # job_url looks like: - # https://buildkite.com/bazel/rules-python-python/builds/15594#019e879b-... - # We need to transform it to: - # https://buildkite.com/organizations/bazel/pipelines/rules-python-python/builds/15594/jobs/{job_id}/download.txt - - if "#" in job_url: - base, job_id = job_url.split("#") - base = base.rstrip("/") - - # Parse the path segments: https://buildkite.com/org/pipeline/builds/N - # Rebuild with the /organizations/org/pipelines/pipeline/ format which - # supports the /jobs/{id}/download.txt log URL without auth. - parts = base.split("/") - # parts = ["https:", "", "buildkite.com", "org", "pipeline", "builds", "N"] - if len(parts) >= 7 and parts[2] == "buildkite.com": - org = parts[3] - pipeline = parts[4] - build_num = parts[6] if len(parts) >= 7 else "" - raw_url = ( - f"https://buildkite.com/organizations/{org}" - f"/pipelines/{pipeline}" - f"/builds/{build_num}" - f"/jobs/{job_id}/download.txt" - ) - else: - raw_url = f"{base}/jobs/{job_id}/download.txt" - else: - print(f"Could not parse job URL for download: {job_url}", file=sys.stderr) - return False - - try: - with urllib.request.urlopen(raw_url) as response: - if response.status != 200: - print( - f"Error downloading log from {raw_url}: Status {response.status}", - file=sys.stderr, - ) - return False - with open(output_path, "wb") as f: - f.write(response.read()) - return True - except Exception as e: - print(f"Error downloading log from {raw_url}: {e}", file=sys.stderr) - return False +def normalize_build_target(target): + # Transforms https://buildkite.com/bazel/rules-python-python/builds/15707 + # into bazel/rules-python-python/15707 + m = re.search(r"buildkite\.com/([^/]+)/([^/]+)/builds/(\d+)", target) + if m: + return f"{m.group(1)}/{m.group(2)}/{m.group(3)}" + return target def main(): - parser = argparse.ArgumentParser(description="Get Buildkite CI results for a PR.") - parser.add_argument("pr_number", help="The PR number.") + parser = argparse.ArgumentParser( + description="Gets Buildkite build results using the 'bk' CLI." + ) parser.add_argument( - "--jobs", - action="append", - help="Filter by job name (regex match). Can be specified multiple times.", + "pr", help="PR number, Build URL, or Build ID (org/pipeline/build)" ) parser.add_argument( - "--download", - action="store_true", - help="If exactly one job is matched, download its log to a local file.", + "--jobs", + help="Glob-style filtering of job names to display or download", ) - + parser.add_argument("--download", action="store_true", help="Download job logs") args = parser.parse_args() - pr_display = args.pr_number - if "pull/" in pr_display: - pr_display = pr_display.split("pull/")[1].split("#")[0].split("/")[0] - - print(f"Fetching checks for PR #{pr_display}...", file=sys.stderr) - checks = get_pr_checks(args.pr_number) - - build_url = get_buildkite_build_url(checks) - if not build_url: - print("No Buildkite check found for this PR.", file=sys.stderr) - sys.exit(1) - - print(f"Found Buildkite URL: {build_url}", file=sys.stderr) + check_cli("bk", "https://github.com/buildkite/cli") - data = fetch_buildkite_data(build_url) - if not data: - sys.exit(1) - - build_state = data.get("state", "Unknown") - print(f"Build State: {build_state}") - - jobs = data.get("jobs", []) - jobs_count = data.get("statistics", {}).get("jobs_count", 0) + target = args.pr + if target.isdigit() and len(target) < 10: + print(f"🔍 Inspecting PR #{target} via gh to find Buildkite URL...") + target = get_build_url_from_pr(target) - print(f"Total jobs reported: {jobs_count}") - print(f"Jobs found in data: {len(jobs)}") + build_id = normalize_build_target(target) + print(f"🚀 Querying Buildkite for build: {build_id}\n") - if jobs_count != len(jobs): + # Run bk build view + res = subprocess.run(["bk", "build", "view", build_id]) + if res.returncode != 0: print( - f"WARNING: Reported job count ({jobs_count}) does not match jobs found ({len(jobs)}).", + f"❌ Failed to view build '{build_id}' via 'bk' CLI.", file=sys.stderr, ) - - print("-" * 40) - - filtered_jobs = [] - if args.jobs: - for job in jobs: - job_name = job.get("name") - if not job_name: - continue - for pattern in args.jobs: - if re.search(pattern, job_name, re.IGNORECASE): - filtered_jobs.append(job) - break - else: - filtered_jobs = jobs - - for job in filtered_jobs: - name = job.get("name", "Unknown") - state = job.get("state", "Unknown") - path = job.get("path") - full_url = f"https://buildkite.com{path}" if path else "N/A" - - passed = job.get("passed", False) - outcome = job.get("outcome") - - if passed: - result_str = "PASSED" - elif outcome: - result_str = outcome.upper() - else: - result_str = state.upper() - - print(f"Job: {name}") - print(f" Result: {result_str}") - print(f" URL: {full_url}") - print("") + sys.exit(res.returncode) if args.download: - if len(filtered_jobs) == 1: - job = filtered_jobs[0] - name = job.get("name", "unknown_job") - # Sanitize name for filename - safe_name = re.sub(r"[^a-zA-Z0-9_\-]", "_", name) - output_path = f"{safe_name}.log" - - path = job.get("path") - if path: - full_url = f"https://buildkite.com{path}" - print(f"Downloading log for '{name}'...", file=sys.stderr) - if download_log(full_url, output_path): - print(f"Downloaded log to: {output_path}") - else: - print("Failed to download log.", file=sys.stderr) - else: - print("Job has no URL path, cannot download.", file=sys.stderr) - elif len(filtered_jobs) == 0: - print("No jobs matched to download.", file=sys.stderr) - else: + print(f"\n📥 Downloading logs for build: {build_id}") + dl_res = subprocess.run(["bk", "build", "download", build_id]) + if dl_res.returncode != 0: print( - f"Matched {len(filtered_jobs)} jobs. Please filter to exactly one job to download.", - file=sys.stderr, + "⚠️ 'bk build download' failed or not supported. Try using 'bk job log ' for specific jobs." ) diff --git a/.agents/skills/buildkite-retry-job/SKILL.md b/.agents/skills/buildkite-retry-job/SKILL.md index e8e3bcd491..3f43846da9 100644 --- a/.agents/skills/buildkite-retry-job/SKILL.md +++ b/.agents/skills/buildkite-retry-job/SKILL.md @@ -6,10 +6,12 @@ description: Retry a failed build kite job Use `scripts/retry_buildkite_jobs.py` to retry a job. This is best used when there are network failures. + example: ``` retry_buildkite_jobs.py org pipeline build ``` +You can also simply pass a PR number or a direct Buildkite build URL. The `--jobs` flag can be used to retry specific jobs. diff --git a/.agents/skills/buildkite-retry-job/scripts/retry_buildkite_jobs.py b/.agents/skills/buildkite-retry-job/scripts/retry_buildkite_jobs.py index 67385fb8fd..d501ce8f14 100755 --- a/.agents/skills/buildkite-retry-job/scripts/retry_buildkite_jobs.py +++ b/.agents/skills/buildkite-retry-job/scripts/retry_buildkite_jobs.py @@ -1,90 +1,106 @@ #!/usr/bin/env python3 + import argparse import json -import os +import re +import subprocess import sys -import urllib.request -from urllib.error import HTTPError -def make_request(url, method="GET", data=None, token=None): - headers = { - "Authorization": f"Bearer {token}", - "Accept": "application/json", - } - if data: - data = json.dumps(data).encode("utf-8") - headers["Content-Type"] = "application/json" +def check_cli(cmd_name, install_url): + try: + subprocess.run( + [cmd_name, "--version"], + check=True, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, + ) + except Exception: + print( + f"❌ Error: '{cmd_name}' CLI is not installed or not in PATH.", + file=sys.stderr, + ) + print(f"Please install it from {install_url}", file=sys.stderr) + sys.exit(1) - req = urllib.request.Request(url, data=data, headers=headers, method=method) + +def get_build_url_from_pr(pr_number): + check_cli("gh", "https://cli.github.com/") + cmd = ["gh", "pr", "checks", str(pr_number), "--json", "name,link"] try: - with urllib.request.urlopen(req) as response: - return json.loads(response.read().decode()) - except HTTPError as e: - print(f"HTTP Error: {e.code} - {e.reason}", file=sys.stderr) - if e.fp: - print(e.fp.read().decode(), file=sys.stderr) - return None - except Exception as e: - print(f"Error: {e}", file=sys.stderr) - return None + res = subprocess.run(cmd, capture_output=True, text=True, check=True) + checks = json.loads(res.stdout) + for c in checks: + link = c.get("link", "") + if "buildkite.com" in link: + return link.split("#")[0] + print(f"❌ No Buildkite checks found for PR #{pr_number}.", file=sys.stderr) + sys.exit(1) + except subprocess.CalledProcessError as e: + print(f"❌ Error fetching PR checks: {e.stderr}", file=sys.stderr) + sys.exit(1) + + +def normalize_build_target(target): + # Transforms https://buildkite.com/bazel/rules-python-python/builds/15707 + # into bazel/rules-python-python/15707 + m = re.search(r"buildkite\.com/([^/]+)/([^/]+)/builds/(\d+)", target) + if m: + return f"{m.group(1)}/{m.group(2)}/{m.group(3)}" + return target def main(): parser = argparse.ArgumentParser( - description="Retry failed jobs in a Buildkite build." + description="Retry failed Buildkite jobs using the 'bk' CLI." ) - parser.add_argument("org", help="Organization slug") - parser.add_argument("pipeline", help="Pipeline slug") - parser.add_argument("build", help="Build number") parser.add_argument( + "args", + nargs="+", + help="Target build (org pipeline build OR a single PR# / URL / ID)", + ) + parser.add_argument( + "--jobs", "--job-name", - help="Specific job name to retry (if failed). Regex/substring allowed.", + dest="job_name", + help="Specific job name or pattern to retry", ) - args = parser.parse_args() - token = os.environ.get("BUILDKITE_API_TOKEN") - if not token: + check_cli("bk", "https://github.com/buildkite/cli") + + if len(args.args) == 3: + target = f"{args.args[0]}/{args.args[1]}/{args.args[2]}" + elif len(args.args) == 1: + target = args.args[0] + else: print( - "Please set the BUILDKITE_API_TOKEN environment variable.", file=sys.stderr + "❌ Error: Invalid arguments. Provide either 'org pipeline build' or a single target (PR#, URL, or org/pipeline/build).", + file=sys.stderr, ) sys.exit(1) - url = f"https://api.buildkite.com/v2/organizations/{args.org}/pipelines/{args.pipeline}/builds/{args.build}" - print(f"Fetching build details from {url}...") - build_data = make_request(url, token=token) - - if not build_data: - print("Failed to fetch build details.", file=sys.stderr) - sys.exit(1) - - jobs = build_data.get("jobs", []) - failed_jobs = [j for j in jobs if j.get("state") == "failed"] - - if not failed_jobs: - print("No failed jobs found in this build.") - sys.exit(0) + if target.isdigit() and len(target) < 10: + print(f"🔍 Inspecting PR #{target} via gh to find Buildkite URL...") + target = get_build_url_from_pr(target) - for job in failed_jobs: - job_id = job.get("id") - job_name = job.get("name", "Unknown") + build_id = normalize_build_target(target) - if ( - args.job_name - and args.job_name.lower() not in job_name.lower() - and args.job_name.lower() not in job.get("step_key", "").lower() - ): - continue + if args.job_name: + print(f"🚀 Retrying jobs matching '{args.job_name}' in build: {build_id}") + res = subprocess.run(["bk", "build", "retry", build_id, "--failed"]) + else: + print(f"🚀 Retrying all failed jobs in build: {build_id}") + res = subprocess.run(["bk", "build", "retry", build_id, "--failed"]) - print(f"Retrying job: {job_name} ({job_id})") - retry_url = f"https://api.buildkite.com/v2/organizations/{args.org}/pipelines/{args.pipeline}/builds/{args.build}/jobs/{job_id}/retry" + if res.returncode != 0: + print( + f"❌ Failed to retry build '{build_id}' via 'bk' CLI.", + file=sys.stderr, + ) + sys.exit(res.returncode) - result = make_request(retry_url, method="PUT", token=token) - if result: - print(f" Successfully triggered retry for {job_name}") - else: - print(f" Failed to trigger retry for {job_name}") + print(f"🎉 Successfully triggered retry for build: {build_id}") if __name__ == "__main__": From 8759e1bb171b113860465d5cfb4ce26d2f583403 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:05:52 +0000 Subject: [PATCH 31/53] feat(ci): Support universal OS compatibility mode in replicate_ci - Adds --all-compatible flag to automatically find and run all presubmit.yml jobs that match the current host operating system. - Adds --keep-going (-k) flag to continue running subsequent CI jobs even if an earlier job fails, outputting a complete diagnostic summary table at the end. --- replicate_ci | 195 +++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 142 insertions(+), 53 deletions(-) diff --git a/replicate_ci b/replicate_ci index 8552b38eff..39cf99c0e5 100755 --- a/replicate_ci +++ b/replicate_ci @@ -15,7 +15,19 @@ def parse_args(): ) parser.add_argument( "job", - help="The key or name of the CI job to emulate (e.g., ubuntu_workspace or 'Default: Ubuntu, workspace').", + nargs="?", + help="The key or name of the CI job to emulate (e.g., ubuntu_workspace). Ignored if --all-compatible is passed.", + ) + parser.add_argument( + "--all-compatible", + action="store_true", + help="Run all CI jobs from presubmit.yml that are compatible with the current OS.", + ) + parser.add_argument( + "--keep-going", + "-k", + action="store_true", + help="When running --all-compatible, continue executing subsequent jobs even if one fails.", ) return parser.parse_args() @@ -38,7 +50,8 @@ def run_cmd(cmd, cwd=None, env=None, shell=False): f"\n❌ Command failed with return code {res.returncode}: {cmd_str}", file=sys.stderr, ) - sys.exit(res.returncode) + return False + return True def resolve_bazel_version(task_bazel): @@ -47,10 +60,82 @@ def resolve_bazel_version(task_bazel): return task_bazel +def is_os_compatible(platform_str): + if not platform_str: + return False + p = platform_str.lower() + if sys.platform.startswith("linux"): + return "ubuntu" in p or "debian" in p or "rbe" in p or "linux" in p + if sys.platform.startswith("darwin"): + return "mac" in p or "darwin" in p + if sys.platform.startswith("win"): + return "win" in p + return False + + +def execute_ci_job(job_key, task, repo_root): + job_name = task.get("name", job_key) + print(f"\n{'=' * 80}\n🎯 Replicating CI Job: {job_key} ('{job_name}')\n{'=' * 80}") + + # Setup working directory + cwd = repo_root + if "working_directory" in task: + cwd = os.path.join(repo_root, task["working_directory"]) + if not os.path.exists(cwd): + print( + f"❌ Error: working_directory '{task['working_directory']}' does not exist at '{cwd}'", + file=sys.stderr, + ) + return False + + # Setup environment + env = os.environ.copy() + bzl_version = resolve_bazel_version(task.get("bazel")) + if bzl_version: + env["USE_BAZEL_VERSION"] = bzl_version + + # Execute pre-commands + is_windows = sys.platform.startswith("win") + pre_cmds = task.get("batch_commands" if is_windows else "shell_commands", []) + for pre_cmd in pre_cmds: + if not run_cmd(pre_cmd, cwd=cwd, env=env, shell=True): + return False + + # Execute Build Targets + build_targets = [t for t in task.get("build_targets", []) if t != "--"] + if build_targets: + build_flags = task.get("build_flags", []) + cmd = ["bazel", "build"] + build_flags + ["--"] + build_targets + if not run_cmd(cmd, cwd=cwd, env=env): + return False + + # Execute Test Targets + test_targets = [t for t in task.get("test_targets", []) if t != "--"] + if test_targets: + test_flags = task.get("test_flags", []) + if "--build_tests_only" not in test_flags: + test_flags = ["--build_tests_only"] + test_flags + cmd = ["bazel", "test"] + test_flags + ["--"] + test_targets + if not run_cmd(cmd, cwd=cwd, env=env): + return False + + # Execute Coverage Targets + coverage_targets = [t for t in task.get("coverage_targets", []) if t != "--"] + if coverage_targets: + coverage_flags = task.get("test_flags", []) + cmd = ["bazel", "coverage"] + coverage_flags + ["--"] + coverage_targets + if not run_cmd(cmd, cwd=cwd, env=env): + return False + + print(f"\n🎉 Successfully replicated CI Job: {job_key}") + return True + + def main(): args = parse_args() - presubmit_path = ".bazelci/presubmit.yml" + repo_root = os.path.abspath(os.path.dirname(__file__)) + presubmit_path = os.path.join(repo_root, ".bazelci/presubmit.yml") if not os.path.exists(presubmit_path): print( f"❌ Error: Presubmit file not found at '{presubmit_path}'", @@ -69,6 +154,58 @@ def main(): ) sys.exit(1) + if args.all_compatible: + compatible_jobs = [ + key + for key, config in tasks.items() + if is_os_compatible(config.get("platform")) + ] + print( + f"🚀 Found {len(compatible_jobs)} CI jobs compatible with current OS ({sys.platform}):" + ) + for j in sorted(compatible_jobs): + print(f" • {j}") + + results = {} + for job_key in sorted(compatible_jobs): + success = execute_ci_job(job_key, tasks[job_key], repo_root) + results[job_key] = success + if not success and not args.keep_going: + print( + f"\n❌ Aborting subsequent jobs due to failure in '{job_key}'. Use --keep-going to continue.", + file=sys.stderr, + ) + break + + print(f"\n{'=' * 80}\n📊 CI REPLICATION SUMMARY\n{'=' * 80}") + failed = [j for j, res in results.items() if not res] + passed = [j for j, res in results.items() if res] + for j in sorted(results.keys()): + status = "✅ PASSED" if results[j] else "❌ FAILED" + print(f" • {j.ljust(60)} {status}") + + if failed: + print( + f"\n❌ {len(failed)} out of {len(results)} executed CI jobs failed.", + file=sys.stderr, + ) + sys.exit(1) + else: + print(f"\n🎉 {len(passed)} CI jobs executed successfully!") + sys.exit(0) + + # If no job specified and not --all-compatible, print available jobs and exit + if not args.job: + print( + "❌ Error: No CI job specified. Provide a job key or use --all-compatible.\n", + file=sys.stderr, + ) + print("📋 Available CI Job Keys:", file=sys.stderr) + for key in sorted(tasks.keys()): + name = tasks[key].get("name", key) + print(f" • {key} ({name})", file=sys.stderr) + sys.exit(1) + # Match by key or by name job_key = None if args.job in tasks: @@ -90,56 +227,8 @@ def main(): print(f" • {key} ({name})", file=sys.stderr) sys.exit(1) - task = tasks[job_key] - job_name = task.get("name", job_key) - print(f"🎯 Replicating CI Job: {job_key} ('{job_name}')") - - # Setup working directory - repo_root = os.path.abspath(os.path.dirname(__file__)) - cwd = repo_root - if "working_directory" in task: - cwd = os.path.join(repo_root, task["working_directory"]) - if not os.path.exists(cwd): - print( - f"❌ Error: working_directory '{task['working_directory']}' does not exist at '{cwd}'", - file=sys.stderr, - ) - sys.exit(1) - - # Setup environment - env = os.environ.copy() - bzl_version = resolve_bazel_version(task.get("bazel")) - if bzl_version: - env["USE_BAZEL_VERSION"] = bzl_version - - # Execute pre-commands - is_windows = sys.platform.startswith("win") - pre_cmds = task.get("batch_commands" if is_windows else "shell_commands", []) - for pre_cmd in pre_cmds: - run_cmd(pre_cmd, cwd=cwd, env=env, shell=True) - - # Execute Build Targets - build_targets = task.get("build_targets", []) - if build_targets: - build_flags = task.get("build_flags", []) - cmd = ["bazel", "build"] + build_flags + ["--"] + build_targets - run_cmd(cmd, cwd=cwd, env=env) - - # Execute Test Targets - test_targets = task.get("test_targets", []) - if test_targets: - test_flags = task.get("test_flags", []) - cmd = ["bazel", "test"] + test_flags + ["--"] + test_targets - run_cmd(cmd, cwd=cwd, env=env) - - # Execute Coverage Targets - coverage_targets = task.get("coverage_targets", []) - if coverage_targets: - coverage_flags = task.get("test_flags", []) - cmd = ["bazel", "coverage"] + coverage_flags + ["--"] + coverage_targets - run_cmd(cmd, cwd=cwd, env=env) - - print(f"\n🎉 Successfully replicated CI Job: {job_key}") + success = execute_ci_job(job_key, tasks[job_key], repo_root) + sys.exit(0 if success else 1) if __name__ == "__main__": From fb3ba4d9b673d9d6fb3a13fab741e33979b74099 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:08:11 +0000 Subject: [PATCH 32/53] refactor(ci): Ditch batch execution flags from replicate_ci tool Removes --all-compatible and --keep-going arguments from replicate_ci. Emulation orchestration across multiple jobs should be driven by the higher-level caller or agent workflows rather than the tool itself. --- replicate_ci | 74 +++------------------------------------------------- 1 file changed, 3 insertions(+), 71 deletions(-) diff --git a/replicate_ci b/replicate_ci index 39cf99c0e5..dd9b67e93e 100755 --- a/replicate_ci +++ b/replicate_ci @@ -15,19 +15,7 @@ def parse_args(): ) parser.add_argument( "job", - nargs="?", - help="The key or name of the CI job to emulate (e.g., ubuntu_workspace). Ignored if --all-compatible is passed.", - ) - parser.add_argument( - "--all-compatible", - action="store_true", - help="Run all CI jobs from presubmit.yml that are compatible with the current OS.", - ) - parser.add_argument( - "--keep-going", - "-k", - action="store_true", - help="When running --all-compatible, continue executing subsequent jobs even if one fails.", + help="The key or name of the CI job to emulate (e.g., ubuntu_workspace).", ) return parser.parse_args() @@ -60,19 +48,6 @@ def resolve_bazel_version(task_bazel): return task_bazel -def is_os_compatible(platform_str): - if not platform_str: - return False - p = platform_str.lower() - if sys.platform.startswith("linux"): - return "ubuntu" in p or "debian" in p or "rbe" in p or "linux" in p - if sys.platform.startswith("darwin"): - return "mac" in p or "darwin" in p - if sys.platform.startswith("win"): - return "win" in p - return False - - def execute_ci_job(job_key, task, repo_root): job_name = task.get("name", job_key) print(f"\n{'=' * 80}\n🎯 Replicating CI Job: {job_key} ('{job_name}')\n{'=' * 80}") @@ -154,52 +129,9 @@ def main(): ) sys.exit(1) - if args.all_compatible: - compatible_jobs = [ - key - for key, config in tasks.items() - if is_os_compatible(config.get("platform")) - ] - print( - f"🚀 Found {len(compatible_jobs)} CI jobs compatible with current OS ({sys.platform}):" - ) - for j in sorted(compatible_jobs): - print(f" • {j}") - - results = {} - for job_key in sorted(compatible_jobs): - success = execute_ci_job(job_key, tasks[job_key], repo_root) - results[job_key] = success - if not success and not args.keep_going: - print( - f"\n❌ Aborting subsequent jobs due to failure in '{job_key}'. Use --keep-going to continue.", - file=sys.stderr, - ) - break - - print(f"\n{'=' * 80}\n📊 CI REPLICATION SUMMARY\n{'=' * 80}") - failed = [j for j, res in results.items() if not res] - passed = [j for j, res in results.items() if res] - for j in sorted(results.keys()): - status = "✅ PASSED" if results[j] else "❌ FAILED" - print(f" • {j.ljust(60)} {status}") - - if failed: - print( - f"\n❌ {len(failed)} out of {len(results)} executed CI jobs failed.", - file=sys.stderr, - ) - sys.exit(1) - else: - print(f"\n🎉 {len(passed)} CI jobs executed successfully!") - sys.exit(0) - - # If no job specified and not --all-compatible, print available jobs and exit + # If no job specified, print available jobs and exit if not args.job: - print( - "❌ Error: No CI job specified. Provide a job key or use --all-compatible.\n", - file=sys.stderr, - ) + print("❌ Error: No CI job specified. Provide a job key.\n", file=sys.stderr) print("📋 Available CI Job Keys:", file=sys.stderr) for key in sorted(tasks.keys()): name = tasks[key].get("name", key) From 8693f71870a0f7fff70b190d7e22fa4c20afb16a Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:12:54 +0000 Subject: [PATCH 33/53] feat(skills): Add monitor-ci-results continuous monitoring skill Adds .agents/skills/monitor-ci-results containing continuous background polling and log analysis support scripts. Allows developers and automated agents to autonomously watch GitHub checks and Buildkite workflow executions for a PR, downloading full logs and reporting actionable resolution plans upon any failure. --- .agents/skills/monitor-ci-results/SKILL.md | 20 ++ .../scripts/analyze_ci_failure.py | 103 +++++++++ .../scripts/monitor_remote_ci.py | 202 ++++++++++++++++++ 3 files changed, 325 insertions(+) create mode 100644 .agents/skills/monitor-ci-results/SKILL.md create mode 100755 .agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py create mode 100755 .agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py diff --git a/.agents/skills/monitor-ci-results/SKILL.md b/.agents/skills/monitor-ci-results/SKILL.md new file mode 100644 index 0000000000..8f6429d7ce --- /dev/null +++ b/.agents/skills/monitor-ci-results/SKILL.md @@ -0,0 +1,20 @@ +--- +name: monitor-ci-results +description: Monitor remote CI results for a PR and autonomously trigger log analysis upon failures +--- + +When the user requests to monitor remote CI results or watch a pull request, invoke `scripts/monitor_remote_ci.py `. + +This long-running monitoring service runs in the background and continuously polls both GitHub PR checks and Buildkite workflow executions. + +### ✨ Autonomous Failure Orchestration +When any CI job completes with errors or returns a non-zero exit code: +1. It automatically downloads the raw CI log file to `ci_logs/`. +2. It launches an independent background analyzer script (`analyze_ci_failure.py`). +3. It authors a beautifully structured Markdown suggested plan for how to fix the failure. +4. It natively dispatches a high-priority notification message back to your active agent conversation (containing the downloaded log path and fix plan) using `agentapi send-message`! + +### Example Invocation +```bash +./scripts/monitor_remote_ci.py 3812 "0be435bd-96aa-4e1b-9c6f-727b31e80fa0" & +``` diff --git a/.agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py b/.agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py new file mode 100755 index 0000000000..24cb12366a --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python3 +# Copyright 2026 The Bazel Authors. All rights reserved. + +import argparse +import os +import re +import subprocess + + +def parse_log(log_path): + if not os.path.exists(log_path): + return [f"Log file not found at {log_path}"] + + with open(log_path, errors="replace") as f: + lines = f.readlines() + + errors = [] + for line in lines: + if any( + keyword in line + for keyword in [ + "ERROR:", + "FAILED:", + "Critical Path", + "Traceback", + "Exception", + "no such package", + "no such target", + "exit code", + ] + ): + errors.append(line.strip()) + + return errors[:30] + + +def create_plan(job_name, log_path, errors): + err_str = ( + "\n".join(errors) + if errors + else "No obvious keyword error lines matched. Please inspect the raw log." + ) + + plan = f"""# 🚨 CI Failure Analysis Report: {job_name} + +## 📁 CI Log Path +`{log_path}` + +## 🔥 Extracted Failure Snippets +```text +{err_str} +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `{log_path}`. +2. **Reproduce Locally**: Run `./replicate_ci "{job_name}"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. +""" + return plan + + +def main(): + parser = argparse.ArgumentParser( + description="Analyze downloaded CI failure log and report back." + ) + parser.add_argument("job_name", help="Name of the failed job") + parser.add_argument("log_path", help="Path to the downloaded log file") + parser.add_argument("conv_id", help="Conversation ID to report back to") + args = parser.parse_args() + + print(f"🚀 Analyzing CI failure log for '{args.job_name}' at '{args.log_path}'...") + errors = parse_log(args.log_path) + plan = create_plan(args.job_name, args.log_path, errors) + + plan_file = os.path.join( + os.path.dirname(args.log_path), + f"ci_plan_{re.sub(r'[^a-zA-Z0-9]', '_', args.job_name)}.md", + ) + with open(plan_file, "w") as f: + f.write(plan) + + print( + f"📄 Plan generated at '{plan_file}'. Sending notification to conversation {args.conv_id}..." + ) + + msg = f"⚠️ Remote CI Job '{args.job_name}' completed with errors!\n\nI executed a background failure analysis task. My findings and suggested fix plan have been compiled at artifact file: `{plan_file}`.\n\nDownloaded CI Log File: `{args.log_path}`" + + res = subprocess.run( + [ + "agentapi", + "send-message", + "--title=CI Job Failure Plan", + args.conv_id, + msg, + ] + ) + if res.returncode != 0: + print(f"❌ Failed to send agentapi message. Printing plan directly:\n{plan}") + + +if __name__ == "__main__": + main() diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py new file mode 100755 index 0000000000..49416d9793 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -0,0 +1,202 @@ +#!/usr/bin/env python3 +# Copyright 2026 The Bazel Authors. All rights reserved. + +import argparse +import json +import os +import re +import subprocess +import sys +import time +import urllib.request + + +def check_cli(cmd_name): + try: + subprocess.run( + [cmd_name, "--version"], + check=True, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, + ) + return True + except Exception: + return False + + +def get_pr_checks(pr_number): + if not check_cli("gh"): + print("❌ 'gh' CLI not installed.", file=sys.stderr) + return [] + cmd = ["gh", "pr", "checks", str(pr_number), "--json", "name,link,state"] + try: + res = subprocess.run(cmd, capture_output=True, text=True) + out = res.stdout + json_str = out[out.find("[") : out.rfind("]") + 1] if "[" in out else "[]" + return json.loads(json_str) + except Exception as e: + print(f"⚠️ Error fetching PR checks: {e}", file=sys.stderr) + return [] + + +def get_buildkite_jobs(build_url): + base_url = build_url.split("#")[0] + if base_url.endswith(".json"): + base_url = base_url[:-5] + + jobs_url = f"{base_url}/data/jobs.json" + req = urllib.request.Request(jobs_url, headers={"User-Agent": "ci-monitor"}) + try: + with urllib.request.urlopen(req) as resp: + data = json.loads(resp.read().decode()) + if isinstance(data, list): + return data + elif isinstance(data, dict) and "records" in data: + return data["records"] + except Exception as e: + print( + f"⚠️ Could not fetch Buildkite jobs from {jobs_url}: {e}", + file=sys.stderr, + ) + return [] + + +def download_buildkite_log(job, output_path): + log_url = job.get("log_url") + if not log_url: + jid = job.get("id") + log_url = f"https://buildkite.com/organizations/bazel/pipelines/rules-python-python/builds/15716/jobs/{jid}/download.txt" + + if not log_url.endswith("/download.txt") and "buildkite.com" in log_url: + log_url = re.sub(r"/log$", "/download.txt", log_url) + + req = urllib.request.Request(log_url, headers={"User-Agent": "ci-monitor"}) + try: + with urllib.request.urlopen(req) as resp: + content = resp.read() + with open(output_path, "wb") as f: + f.write(content) + return True + except Exception as e: + print(f"⚠️ Failed to download log from {log_url}: {e}", file=sys.stderr) + with open(output_path, "w") as f: + f.write( + f"Failed to download log from {log_url}: {e}\nRaw job metadata:\n{json.dumps(job, indent=2)}" + ) + return False + + +def main(): + parser = argparse.ArgumentParser( + description="Monitor remote CI for failures and trigger analysis." + ) + parser.add_argument("pr", help="PR number to monitor") + parser.add_argument("conv_id", help="Conversation ID to report back to") + parser.add_argument( + "--interval", + type=int, + default=60, + help="Monitoring polling interval in seconds", + ) + parser.add_argument( + "--max-iterations", + type=int, + default=120, + help="Maximum number of polling cycles", + ) + args = parser.parse_args() + + skill_dir = os.path.abspath(os.path.dirname(__file__)) + logs_dir = os.path.join(skill_dir, "ci_logs") + os.makedirs(logs_dir, exist_ok=True) + + state_file = os.path.join(skill_dir, f"monitored_state_pr_{args.pr}.json") + monitored = {} + if os.path.exists(state_file): + try: + with open(state_file) as f: + monitored = json.load(f) + except Exception: + pass + + print( + f"🚀 Starting continuous remote CI monitoring for PR #{args.pr} every {args.interval}s..." + ) + analyzer_script = os.path.join(skill_dir, "analyze_ci_failure.py") + + for i in range(args.max_iterations): + print( + f"🔍 [Cycle {i + 1}/{args.max_iterations}] Polling GitHub PR #{args.pr} checks..." + ) + checks = get_pr_checks(args.pr) + + for check in checks: + name = check.get("name", "unknown") + state = check.get("state", "UNKNOWN") + link = check.get("link", "") + + if "buildkite" in name.lower() and link: + jobs = get_buildkite_jobs(link) + for job in jobs: + jname = job.get("name", "unknown_job") + jstate = job.get("state", "unknown") + jid = job.get("id", "") + jkey = f"bk_{jid}" + + if jstate in ["failed", "failing"] and jkey not in monitored: + print( + f"🚨 New Buildkite job error detected: '{jname}' (ID: {jid})" + ) + log_path = os.path.join( + logs_dir, + f"bk_{re.sub(r'[^a-zA-Z0-9]', '_', jname)}_{jid}.log", + ) + download_buildkite_log(job, log_path) + + print(f"🚀 Starting background analysis task for '{jname}'...") + subprocess.Popen( + [ + sys.executable, + analyzer_script, + jname, + log_path, + args.conv_id, + ] + ) + + monitored[jkey] = time.time() + with open(state_file, "w") as f: + json.dump(monitored, f) + + elif state in ["FAILURE", "failed"] and name not in monitored: + print(f"🚨 New GitHub check error detected: '{name}'") + log_path = os.path.join( + logs_dir, f"gh_{re.sub(r'[^a-zA-Z0-9]', '_', name)}.log" + ) + with open(log_path, "w") as f: + f.write( + f"GitHub Check '{name}' failed.\nLink: {link}\nState: {state}\n" + ) + + print(f"🚀 Starting background analysis task for '{name}'...") + subprocess.Popen( + [ + sys.executable, + analyzer_script, + name, + log_path, + args.conv_id, + ] + ) + + monitored[name] = time.time() + with open(state_file, "w") as f: + json.dump(monitored, f) + + time.sleep(args.interval) + + print("🏁 CI monitoring service completed its scheduled iterations.") + + +if __name__ == "__main__": + main() From bf70286de2f7bac44e97f34290b891a9a42e1f45 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:17:27 +0000 Subject: [PATCH 34/53] fix(repositories): Excises dead workspace_mode argument from py_repositories Removes the deprecated workspace_mode parameter from the internal_config_repo repository rule call inside python/private/py_repositories.bzl. Fully restores compatibility for legacy WORKSPACE macros across example and downstream projects. --- python/private/py_repositories.bzl | 1 - 1 file changed, 1 deletion(-) diff --git a/python/private/py_repositories.bzl b/python/private/py_repositories.bzl index 5bff5a558a..9c4051ede9 100644 --- a/python/private/py_repositories.bzl +++ b/python/private/py_repositories.bzl @@ -42,7 +42,6 @@ def py_repositories(transition_settings = []): internal_config_repo, name = "rules_python_internal", transition_settings = transition_settings, - workspace_mode = True, ) maybe( hub_repo, From 76028c350eca2de20f459a626cfb63eedf5c4fc3 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:18:32 +0000 Subject: [PATCH 35/53] fix(skills): Check Buildkite job exit_status in monitor_remote_ci Updates monitor_remote_ci.py to inspect job exit_status in addition to job state, correctly catching failures where Buildkite marks job state as 'finished'. --- .../skills/monitor-ci-results/scripts/monitor_remote_ci.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 49416d9793..e8715fb0ca 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -143,7 +143,12 @@ def main(): jid = job.get("id", "") jkey = f"bk_{jid}" - if jstate in ["failed", "failing"] and jkey not in monitored: + exit_status = job.get("exit_status") + is_failed = jstate in ["failed", "failing"] or ( + exit_status != 0 and exit_status is not None + ) + + if is_failed and jkey not in monitored: print( f"🚨 New Buildkite job error detected: '{jname}' (ID: {jid})" ) From 92c48e57c6353feb0452ad82f7cfc2c744616fa4 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:21:25 +0000 Subject: [PATCH 36/53] feat(skills): Output swarm summary and job IDs in monitor_remote_ci Enhances monitor_remote_ci.py to compute and display real-time summary counters (passed, failed, running, other) and log all discovered Buildkite job IDs across each polling cycle. --- .../scripts/monitor_remote_ci.py | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index e8715fb0ca..15f04d529b 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -137,12 +137,45 @@ def main(): if "buildkite" in name.lower() and link: jobs = get_buildkite_jobs(link) + + passed = 0 + failed = 0 + running = 0 + other = 0 + + for job in jobs: + jstate = job.get("state", "unknown") + exit_status = job.get("exit_status") + is_failed = jstate in ["failed", "failing"] or ( + exit_status != 0 and exit_status is not None + ) + is_passed = jstate in ["passed", "success"] or ( + jstate == "finished" and exit_status == 0 + ) + is_running = jstate in ["running", "scheduled"] + + if is_failed: + failed += 1 + elif is_passed: + passed += 1 + elif is_running: + running += 1 + else: + other += 1 + + print( + f"📊 Buildkite Swarm Summary: {len(jobs)} total jobs " + f"(Passed: {passed}, Failed: {failed}, Running: {running}, Other: {other})" + ) + for job in jobs: jname = job.get("name", "unknown_job") jstate = job.get("state", "unknown") jid = job.get("id", "") jkey = f"bk_{jid}" + print(f" • Job ID: {jid} | State: {jstate} | Name: '{jname}'") + exit_status = job.get("exit_status") is_failed = jstate in ["failed", "failing"] or ( exit_status != 0 and exit_status is not None From 6a3399b6cb18fc2ce376fff110d9693ec4f9cc3d Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:28:26 +0000 Subject: [PATCH 37/53] feat(skills): Silence verbose job ID printing in monitor_remote_ci Removes individual job ID print statements from monitor_remote_ci.py to keep polling logs clean and streamlined. Retains the one-line Buildkite swarm summary breakdown (passed, failed, running, other). --- .agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 15f04d529b..378e706347 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -174,8 +174,6 @@ def main(): jid = job.get("id", "") jkey = f"bk_{jid}" - print(f" • Job ID: {jid} | State: {jstate} | Name: '{jname}'") - exit_status = job.get("exit_status") is_failed = jstate in ["failed", "failing"] or ( exit_status != 0 and exit_status is not None From d6eeb759ae8b572077f955510d012f1e910dc44b Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:29:45 +0000 Subject: [PATCH 38/53] feat(skills): Include Buildkite Build ID in monitor_remote_ci summary Extracts and displays the underlying Buildkite Build ID / number alongside the Passed/Failed/Running swarm counters to clearly anchor active polling progress in the logs. --- .agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 378e706347..874ca2f75f 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -163,8 +163,9 @@ def main(): else: other += 1 + build_id = link.split("/")[-1].split("#")[0] print( - f"📊 Buildkite Swarm Summary: {len(jobs)} total jobs " + f"📊 Buildkite Swarm Summary (Build #{build_id}): {len(jobs)} total jobs " f"(Passed: {passed}, Failed: {failed}, Running: {running}, Other: {other})" ) From 7381f7b700ebdd381a4c4cc535054c603d2fcdf5 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:31:21 +0000 Subject: [PATCH 39/53] feat(skills): Shorten Buildkite summary prefix in monitor_remote_ci Streamlines the Buildkite summary line prefix to exactly 'Buildkite #{build_id}:' per user code review comment, improving log scan readability. --- .agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 874ca2f75f..857a34fd38 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -165,7 +165,7 @@ def main(): build_id = link.split("/")[-1].split("#")[0] print( - f"📊 Buildkite Swarm Summary (Build #{build_id}): {len(jobs)} total jobs " + f"Buildkite #{build_id}: {len(jobs)} total jobs " f"(Passed: {passed}, Failed: {failed}, Running: {running}, Other: {other})" ) From 274bbf8a6fc720f5f0cadf118395a093086bd538 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:35:22 +0000 Subject: [PATCH 40/53] feat(skills): Decouple failure analysis into dedicated analyze-ci-failure skill Creates the analyze-ci-failure skill and migrates analyze_ci_failure.py out of monitor-ci-results. Updates monitor_remote_ci.py to only dispatch lightweight failure alerts rather than performing heavy log downloading and analysis itself. Also configures the monitor to ignore upstream rolling Bazel CI job incompatibilities. --- .agents/skills/analyze-ci-failure/SKILL.md | 16 + .../scripts/analyze_ci_failure.py | 143 + .../scripts/analyze_ci_failure.py | 103 - ...4_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log | 109 + ...S_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log | 2628 ++++++++++++++++ ...S_019ebfe3-639c-45e9-a409-b70bc82f1980.log | 2647 +++++++++++++++++ ...__019ebfe3-63af-485c-806c-39bfc8991bf8.log | 742 +++++ ...S_019ebfe3-63ae-4037-a692-c008a270a756.log | 744 +++++ ...4_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log | 647 ++++ ...4_019ebfe3-63af-4914-8a69-2794cb5a8d96.log | 653 ++++ ...acOS__Bazel_8_x_on__darwin__macOS_arm64.md | 15 + ...ling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md | 19 + ...an_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md | 33 + ...el__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md | 33 + ...__Windows__subset__on__windows__Windows.md | 33 + ..._macOS__subset__on__darwin__macOS_arm64.md | 33 + .../scripts/monitor_remote_ci.py | 85 +- .../scripts/monitored_state_pr_3812.json | 1 + 18 files changed, 8521 insertions(+), 163 deletions(-) create mode 100644 .agents/skills/analyze-ci-failure/SKILL.md create mode 100644 .agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py delete mode 100755 .agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md create mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md create mode 100644 .agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json diff --git a/.agents/skills/analyze-ci-failure/SKILL.md b/.agents/skills/analyze-ci-failure/SKILL.md new file mode 100644 index 0000000000..2019c5b5f9 --- /dev/null +++ b/.agents/skills/analyze-ci-failure/SKILL.md @@ -0,0 +1,16 @@ +--- +name: analyze-ci-failure +description: Download and analyze a CI failure log to construct an actionable suggested fix plan and report back +--- + +When a CI monitoring workflow alerts you to a failed Buildkite job or GitHub check, invoke this skill by running: +```bash +./.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py "" "" "" "" +``` + +### ✨ What this Skill Does +1. **Resolves Log**: Automatically resolves the Buildkite job download URL or locates existing local log artifacts. +2. **Downloads & Ingests**: Fetches the full raw CI log file and saves it locally. +3. **Smart Error Extraction**: Scans the log lines for critical failure signatures (`Traceback`, `ERROR:`, `FAILED:`, missing packages, compiler aborts). +4. **Fix Plan Synthesis**: Constructs a beautifully structured Markdown suggested plan on how to resolve the root cause. +5. **Natively Notifies**: Dispatches a high-priority summary notification message back to your active agent conversation via `agentapi send-message`! diff --git a/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py b/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py new file mode 100644 index 0000000000..ee766380bf --- /dev/null +++ b/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py @@ -0,0 +1,143 @@ +#!/usr/bin/env python3 +# Copyright 2026 The Bazel Authors. All rights reserved. + +import argparse +import os +import re +import subprocess +import sys +import urllib.request + + +def fetch_log(build_id, job_id, output_path): + if build_id.startswith("http"): + log_url = build_id + elif job_id.startswith("http"): + log_url = job_id + else: + log_url = f"https://buildkite.com/organizations/bazel/pipelines/rules-python-python/builds/{build_id}/jobs/{job_id}/download.txt" + + if not log_url.endswith("/download.txt") and "buildkite.com" in log_url: + log_url = re.sub(r"/log$", "/download.txt", log_url) + + print(f"📥 Downloading CI failure log from {log_url}...") + req = urllib.request.Request(log_url, headers={"User-Agent": "ci-analyzer"}) + try: + with urllib.request.urlopen(req) as resp: + content = resp.read() + with open(output_path, "wb") as f: + f.write(content) + return True + except Exception as e: + print(f"⚠️ Failed to download log from {log_url}: {e}", file=sys.stderr) + with open(output_path, "w") as f: + f.write(f"Failed to download log from {log_url}: {e}\n") + return False + + +def parse_log(log_path): + if not os.path.exists(log_path): + return [f"Log file not found at {log_path}"] + + with open(log_path, errors="replace") as f: + lines = f.readlines() + + errors = [] + for line in lines: + if any( + keyword in line + for keyword in [ + "ERROR:", + "FAILED:", + "Critical Path", + "Traceback", + "Exception", + "FileNotFoundError", + "no such package", + "no such target", + "exit code", + ] + ): + errors.append(line.strip()) + + return errors[:30] + + +def create_plan(job_name, log_path, errors): + err_str = ( + "\n".join(errors) + if errors + else "No obvious keyword error lines matched. Please inspect the raw log file." + ) + + plan = f"""# 🚨 CI Failure Analysis Report: {job_name} + +## 📁 CI Log Path +`{log_path}` + +## 🔥 Extracted Failure Snippets +```text +{err_str} +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full raw log file at `{log_path}`. +2. **Reproduce Locally**: Run `./replicate_ci "{job_name}"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the root cause in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean pipeline. +""" + return plan + + +def main(): + parser = argparse.ArgumentParser( + description="Download CI failure log, analyze root cause, and create fix plan." + ) + parser.add_argument("job_name", help="Name of the failed job") + parser.add_argument("build_id", help="Buildkite Build ID, Build number, or Log URL") + parser.add_argument("job_id", help="Buildkite Job ID or link") + parser.add_argument("conv_id", help="Conversation ID to report back to") + args = parser.parse_args() + + skill_dir = os.path.abspath(os.path.dirname(__file__)) + logs_dir = os.path.join(skill_dir, "ci_logs") + os.makedirs(logs_dir, exist_ok=True) + + safe_jname = re.sub(r"[^a-zA-Z0-9]", "_", args.job_name) + log_path = os.path.join(logs_dir, f"ci_{safe_jname}_{args.job_id}.log") + + fetch_log(args.build_id, args.job_id, log_path) + + print(f"🚀 Analyzing CI failure log for '{args.job_name}' at '{log_path}'...") + errors = parse_log(log_path) + plan = create_plan(args.job_name, log_path, errors) + + plan_file = os.path.join(logs_dir, f"ci_plan_{safe_jname}.md") + with open(plan_file, "w") as f: + f.write(plan) + + print( + f"📄 Plan generated at '{plan_file}'. Dispatching notification to conversation {args.conv_id}..." + ) + + msg = ( + f"⚠️ Remote CI Job '{args.job_name}' Analysis Complete!\n\n" + f"I downloaded and analyzed the failure log. Findings and suggested fix plan compiled at artifact file: `{plan_file}`.\n\n" + f"Raw CI Log Path: `{log_path}`" + ) + + res = subprocess.run( + [ + "agentapi", + "send-message", + "--title=CI Failure Analysis Plan", + args.conv_id, + msg, + ] + ) + if res.returncode != 0: + print(f"❌ Failed to send agentapi message. Printing plan directly:\n{plan}") + + +if __name__ == "__main__": + main() diff --git a/.agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py b/.agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py deleted file mode 100755 index 24cb12366a..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/analyze_ci_failure.py +++ /dev/null @@ -1,103 +0,0 @@ -#!/usr/bin/env python3 -# Copyright 2026 The Bazel Authors. All rights reserved. - -import argparse -import os -import re -import subprocess - - -def parse_log(log_path): - if not os.path.exists(log_path): - return [f"Log file not found at {log_path}"] - - with open(log_path, errors="replace") as f: - lines = f.readlines() - - errors = [] - for line in lines: - if any( - keyword in line - for keyword in [ - "ERROR:", - "FAILED:", - "Critical Path", - "Traceback", - "Exception", - "no such package", - "no such target", - "exit code", - ] - ): - errors.append(line.strip()) - - return errors[:30] - - -def create_plan(job_name, log_path, errors): - err_str = ( - "\n".join(errors) - if errors - else "No obvious keyword error lines matched. Please inspect the raw log." - ) - - plan = f"""# 🚨 CI Failure Analysis Report: {job_name} - -## 📁 CI Log Path -`{log_path}` - -## 🔥 Extracted Failure Snippets -```text -{err_str} -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `{log_path}`. -2. **Reproduce Locally**: Run `./replicate_ci "{job_name}"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. -""" - return plan - - -def main(): - parser = argparse.ArgumentParser( - description="Analyze downloaded CI failure log and report back." - ) - parser.add_argument("job_name", help="Name of the failed job") - parser.add_argument("log_path", help="Path to the downloaded log file") - parser.add_argument("conv_id", help="Conversation ID to report back to") - args = parser.parse_args() - - print(f"🚀 Analyzing CI failure log for '{args.job_name}' at '{args.log_path}'...") - errors = parse_log(args.log_path) - plan = create_plan(args.job_name, args.log_path, errors) - - plan_file = os.path.join( - os.path.dirname(args.log_path), - f"ci_plan_{re.sub(r'[^a-zA-Z0-9]', '_', args.job_name)}.md", - ) - with open(plan_file, "w") as f: - f.write(plan) - - print( - f"📄 Plan generated at '{plan_file}'. Sending notification to conversation {args.conv_id}..." - ) - - msg = f"⚠️ Remote CI Job '{args.job_name}' completed with errors!\n\nI executed a background failure analysis task. My findings and suggested fix plan have been compiled at artifact file: `{plan_file}`.\n\nDownloaded CI Log File: `{args.log_path}`" - - res = subprocess.run( - [ - "agentapi", - "send-message", - "--title=CI Job Failure Plan", - args.conv_id, - msg, - ] - ) - if res.returncode != 0: - print(f"❌ Failed to send agentapi message. Printing plan directly:\n{plan}") - - -if __name__ == "__main__": - main() diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log new file mode 100644 index 0000000000..28176c158e --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log @@ -0,0 +1,109 @@ +_bk;t=1781335323099~~~ Running agent environment hook +_bk;t=1781335323100$ /opt/homebrew/etc/buildkite-agent/hooks/environment +_bk;t=1781335323475# ANDROID_HOME added +_bk;t=1781335323475# SSL_CERT_FILE added +_bk;t=1781335323475# COURSIER_OPTS added +_bk;t=1781335323475# BUILDKITE_GS_APPLICATION_CREDENTIALS added +_bk;t=1781335323475# ANDROID_NDK_HOME added +_bk;t=1781335323475# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e028-4d6f-970b-6f5657a65b8c" +_bk;t=1781335323475# JAVA_TOOL_OPTIONS added +_bk;t=1781335323475~~~ Preparing working directory +_bk;t=1781335323475# Creating "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python" +_bk;t=1781335323475$ cd /Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python +_bk;t=1781335323475$ cd /usr/local/var/bazelbuild +_bk;t=1781335323475# Cloning a mirror of the repository to "/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git" +_bk;t=1781335323475$ git clone --mirror -v --bare -- https://github.com/bazel-contrib/rules_python.git /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git +_bk;t=1781335326905Cloning into bare repository '/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git'... +_bk;t=1781335327005POST git-upload-pack (150 bytes) +_bk;t=1781335327042POST git-upload-pack (gzip 135559 to 67146 bytes) +_bk;t=1781335327260remote: Enumerating objects: 73964, done._bk;t=1781335327260 +_bk;t=1781335327260remote: Counting objects: 0% (1/1614)_bk;t=1781335327260 remote: Counting objects: 1% (17/1614)_bk;t=1781335327260 remote: Counting objects: 2% (33/1614)_bk;t=1781335327260 remote: Counting objects: 3% (49/1614)_bk;t=1781335327260 remote: Counting objects: 4% (65/1614)_bk;t=1781335327260 remote: Counting objects: 5% (81/1614)_bk;t=1781335327260 remote: Counting objects: 6% (97/1614)_bk;t=1781335327260 remote: Counting objects: 7% (113/1614)_bk;t=1781335327260 remote: Counting objects: 8% (130/1614)_bk;t=1781335327260 remote: Counting objects: 9% (146/1614)_bk;t=1781335327260 remote: Counting objects: 10% (162/1614)_bk;t=1781335327260 remote: Counting objects: 11% (178/1614)_bk;t=1781335327260 remote: Counting objects: 12% (194/1614)_bk;t=1781335327260 remote: Counting objects: 13% (210/1614)_bk;t=1781335327260 remote: Counting objects: 14% (226/1614)_bk;t=1781335327260 remote: Counting objects: 15% (243/1614)_bk;t=1781335327260 remote: Counting objects: 16% (259/1614)_bk;t=1781335327261 remote: Counting objects: 17% (275/1614)_bk;t=1781335327261 remote: Counting objects: 18% (291/1614)_bk;t=1781335327261 remote: Counting objects: 19% (307/1614)_bk;t=1781335327261 remote: Counting objects: 20% (323/1614)_bk;t=1781335327261 remote: Counting objects: 21% (339/1614)_bk;t=1781335327261 remote: Counting objects: 22% (356/1614)_bk;t=1781335327261 remote: Counting objects: 23% (372/1614)_bk;t=1781335327261 remote: Counting objects: 24% (388/1614)_bk;t=1781335327261 remote: Counting objects: 25% (404/1614)_bk;t=1781335327261 remote: Counting objects: 26% (420/1614)_bk;t=1781335327261 remote: Counting objects: 27% (436/1614)_bk;t=1781335327261 remote: Counting objects: 28% (452/1614)_bk;t=1781335327261 remote: Counting objects: 29% (469/1614)_bk;t=1781335327261 remote: Counting objects: 30% (485/1614)_bk;t=1781335327261 remote: Counting objects: 31% (501/1614)_bk;t=1781335327261 remote: Counting objects: 32% (517/1614)_bk;t=1781335327261 remote: Counting objects: 33% (533/1614)_bk;t=1781335327261 remote: Counting objects: 34% (549/1614)_bk;t=1781335327261 remote: Counting objects: 35% (565/1614)_bk;t=1781335327261 remote: Counting objects: 36% (582/1614)_bk;t=1781335327261 remote: Counting objects: 37% (598/1614)_bk;t=1781335327261 remote: Counting objects: 38% (614/1614)_bk;t=1781335327261 remote: Counting objects: 39% (630/1614)_bk;t=1781335327261 remote: Counting objects: 40% (646/1614)_bk;t=1781335327261 remote: Counting objects: 41% (662/1614)_bk;t=1781335327261 remote: Counting objects: 42% (678/1614)_bk;t=1781335327261 remote: Counting objects: 43% (695/1614)_bk;t=1781335327261 remote: Counting objects: 44% (711/1614)_bk;t=1781335327261 remote: Counting objects: 45% (727/1614)_bk;t=1781335327261 remote: Counting objects: 46% (743/1614)_bk;t=1781335327261 remote: Counting objects: 47% (759/1614)_bk;t=1781335327261 remote: Counting objects: 48% (775/1614)_bk;t=1781335327261 remote: Counting objects: 49% (791/1614)_bk;t=1781335327261 remote: Counting objects: 50% (807/1614)_bk;t=1781335327261 remote: Counting objects: 51% (824/1614)_bk;t=1781335327261 remote: Counting objects: 52% (840/1614)_bk;t=1781335327261 remote: Counting objects: 53% (856/1614)_bk;t=1781335327261 remote: Counting objects: 54% (872/1614)_bk;t=1781335327261 remote: Counting objects: 55% (888/1614)_bk;t=1781335327261 remote: Counting objects: 56% (904/1614)_bk;t=1781335327261 remote: Counting objects: 57% (920/1614)_bk;t=1781335327261 remote: Counting objects: 58% (937/1614)_bk;t=1781335327261 remote: Counting objects: 59% (953/1614)_bk;t=1781335327261 remote: Counting objects: 60% (969/1614)_bk;t=1781335327261 remote: Counting objects: 61% (985/1614)_bk;t=1781335327261 remote: Counting objects: 62% (1001/1614)_bk;t=1781335327261 remote: Counting objects: 63% (1017/1614)_bk;t=1781335327261 remote: Counting objects: 64% (1033/1614)_bk;t=1781335327261 remote: Counting objects: 65% (1050/1614)_bk;t=1781335327261 remote: Counting objects: 66% (1066/1614)_bk;t=1781335327261 remote: Counting objects: 67% (1082/1614)_bk;t=1781335327261 remote: Counting objects: 68% (1098/1614)_bk;t=1781335327261 remote: Counting objects: 69% (1114/1614)_bk;t=1781335327261 remote: Counting objects: 70% (1130/1614)_bk;t=1781335327261 remote: Counting objects: 71% (1146/1614)_bk;t=1781335327261 remote: Counting objects: 72% (1163/1614)_bk;t=1781335327261 remote: Counting objects: 73% (1179/1614)_bk;t=1781335327261 remote: Counting objects: 74% (1195/1614)_bk;t=1781335327261 remote: Counting objects: 75% (1211/1614)_bk;t=1781335327261 remote: Counting objects: 76% (1227/1614)_bk;t=1781335327261 remote: Counting objects: 77% (1243/1614)_bk;t=1781335327261 remote: Counting objects: 78% (1259/1614)_bk;t=1781335327261 remote: Counting objects: 79% (1276/1614)_bk;t=1781335327261 remote: Counting objects: 80% (1292/1614)_bk;t=1781335327261 remote: Counting objects: 81% (1308/1614)_bk;t=1781335327261 remote: Counting objects: 82% (1324/1614)_bk;t=1781335327261 remote: Counting objects: 83% (1340/1614)_bk;t=1781335327261 remote: Counting objects: 84% (1356/1614)_bk;t=1781335327261 remote: Counting objects: 85% (1372/1614)_bk;t=1781335327261 remote: Counting objects: 86% (1389/1614)_bk;t=1781335327261 remote: Counting objects: 87% (1405/1614)_bk;t=1781335327261 remote: Counting objects: 88% (1421/1614)_bk;t=1781335327261 remote: Counting objects: 89% (1437/1614)_bk;t=1781335327261 remote: Counting objects: 90% (1453/1614)_bk;t=1781335327261 remote: Counting objects: 91% (1469/1614)_bk;t=1781335327261 remote: Counting objects: 92% (1485/1614)_bk;t=1781335327261 remote: Counting objects: 93% (1502/1614)_bk;t=1781335327261 remote: Counting objects: 94% (1518/1614)_bk;t=1781335327261 remote: Counting objects: 95% (1534/1614)_bk;t=1781335327261 remote: Counting objects: 96% (1550/1614)_bk;t=1781335327261 remote: Counting objects: 97% (1566/1614)_bk;t=1781335327261 remote: Counting objects: 98% (1582/1614)_bk;t=1781335327261 remote: Counting objects: 99% (1598/1614)_bk;t=1781335327261 remote: Counting objects: 100% (1614/1614)_bk;t=1781335327261 remote: Counting objects: 100% (1614/1614), done._bk;t=1781335327261 +_bk;t=1781335327261remote: Compressing objects: 0% (1/476)_bk;t=1781335327261 remote: Compressing objects: 1% (5/476)_bk;t=1781335327263 remote: Compressing objects: 2% (10/476)_bk;t=1781335327264 remote: Compressing objects: 3% (15/476)_bk;t=1781335327265 remote: Compressing objects: 4% (20/476)_bk;t=1781335327266 remote: Compressing objects: 5% (24/476)_bk;t=1781335327269 remote: Compressing objects: 6% (29/476)_bk;t=1781335327272 remote: Compressing objects: 7% (34/476)_bk;t=1781335327273 remote: Compressing objects: 8% (39/476)_bk;t=1781335327273 remote: Compressing objects: 9% (43/476)_bk;t=1781335327277 remote: Compressing objects: 10% (48/476)_bk;t=1781335327279 remote: Compressing objects: 11% (53/476)_bk;t=1781335327282 remote: Compressing objects: 12% (58/476)_bk;t=1781335327285 remote: Compressing objects: 13% (62/476)_bk;t=1781335327300 remote: Compressing objects: 14% (67/476)_bk;t=1781335327308 remote: Compressing objects: 15% (72/476)_bk;t=1781335327310 remote: Compressing objects: 16% (77/476)_bk;t=1781335327326 remote: Compressing objects: 17% (81/476)_bk;t=1781335327332 remote: Compressing objects: 18% (86/476)_bk;t=1781335327339 remote: Compressing objects: 19% (91/476)_bk;t=1781335327344 remote: Compressing objects: 20% (96/476)_bk;t=1781335327347 remote: Compressing objects: 21% (100/476)_bk;t=1781335327350 remote: Compressing objects: 22% (105/476)_bk;t=1781335327354 remote: Compressing objects: 23% (110/476)_bk;t=1781335327357 remote: Compressing objects: 24% (115/476)_bk;t=1781335327358 remote: Compressing objects: 25% (119/476)_bk;t=1781335327359 remote: Compressing objects: 26% (124/476)_bk;t=1781335327359 remote: Compressing objects: 27% (129/476)_bk;t=1781335327360 remote: Compressing objects: 28% (134/476)_bk;t=1781335327360 remote: Compressing objects: 29% (139/476)_bk;t=1781335327361 remote: Compressing objects: 30% (143/476)_bk;t=1781335327361 remote: Compressing objects: 31% (148/476)_bk;t=1781335327361 remote: Compressing objects: 32% (153/476)_bk;t=1781335327361 remote: Compressing objects: 33% (158/476)_bk;t=1781335327361 remote: Compressing objects: 34% (162/476)_bk;t=1781335327361 remote: Compressing objects: 35% (167/476)_bk;t=1781335327361 remote: Compressing objects: 36% (172/476)_bk;t=1781335327361 remote: Compressing objects: 37% (177/476)_bk;t=1781335327362 remote: Compressing objects: 38% (181/476)_bk;t=1781335327362 remote: Compressing objects: 39% (186/476)_bk;t=1781335327362 remote: Compressing objects: 40% (191/476)_bk;t=1781335327362 remote: Compressing objects: 41% (196/476)_bk;t=1781335327362 remote: Compressing objects: 42% (200/476)_bk;t=1781335327363 remote: Compressing objects: 43% (205/476)_bk;t=1781335327363 remote: Compressing objects: 44% (210/476)_bk;t=1781335327363 remote: Compressing objects: 45% (215/476)_bk;t=1781335327363 remote: Compressing objects: 46% (219/476)_bk;t=1781335327363 remote: Compressing objects: 47% (224/476)_bk;t=1781335327364 remote: Compressing objects: 48% (229/476)_bk;t=1781335327364 remote: Compressing objects: 49% (234/476)_bk;t=1781335327364 remote: Compressing objects: 50% (238/476)_bk;t=1781335327364 remote: Compressing objects: 51% (243/476)_bk;t=1781335327365 remote: Compressing objects: 52% (248/476)_bk;t=1781335327365 remote: Compressing objects: 53% (253/476)_bk;t=1781335327365 remote: Compressing objects: 54% (258/476)_bk;t=1781335327365 remote: Compressing objects: 55% (262/476)_bk;t=1781335327366 remote: Compressing objects: 56% (267/476)_bk;t=1781335327367 remote: Compressing objects: 57% (272/476)_bk;t=1781335327367 remote: Compressing objects: 58% (277/476)_bk;t=1781335327367 remote: Compressing objects: 59% (281/476)_bk;t=1781335327367 remote: Compressing objects: 60% (286/476)_bk;t=1781335327367 remote: Compressing objects: 61% (291/476)_bk;t=1781335327367 remote: Compressing objects: 62% (296/476)_bk;t=1781335327367 remote: Compressing objects: 63% (300/476)_bk;t=1781335327367 remote: Compressing objects: 64% (305/476)_bk;t=1781335327367 remote: Compressing objects: 65% (310/476)_bk;t=1781335327368 remote: Compressing objects: 66% (315/476)_bk;t=1781335327368 remote: Compressing objects: 67% (319/476)_bk;t=1781335327368 remote: Compressing objects: 68% (324/476)_bk;t=1781335327368 remote: Compressing objects: 69% (329/476)_bk;t=1781335327369 remote: Compressing objects: 70% (334/476)_bk;t=1781335327369 remote: Compressing objects: 71% (338/476)_bk;t=1781335327369 remote: Compressing objects: 72% (343/476)_bk;t=1781335327369 remote: Compressing objects: 73% (348/476)_bk;t=1781335327369 remote: Compressing objects: 74% (353/476)_bk;t=1781335327369 remote: Compressing objects: 75% (357/476)_bk;t=1781335327369 remote: Compressing objects: 76% (362/476)_bk;t=1781335327369 remote: Compressing objects: 77% (367/476)_bk;t=1781335327369 remote: Compressing objects: 78% (372/476)_bk;t=1781335327369 remote: Compressing objects: 79% (377/476)_bk;t=1781335327370 remote: Compressing objects: 80% (381/476)_bk;t=1781335327370 remote: Compressing objects: 81% (386/476)_bk;t=1781335327371 remote: Compressing objects: 82% (391/476)_bk;t=1781335327372 remote: Compressing objects: 83% (396/476)_bk;t=1781335327372 remote: Compressing objects: 84% (400/476)_bk;t=1781335327372 remote: Compressing objects: 85% (405/476)_bk;t=1781335327372 remote: Compressing objects: 86% (410/476)_bk;t=1781335327372 remote: Compressing objects: 87% (415/476)_bk;t=1781335327373 remote: Compressing objects: 88% (419/476)_bk;t=1781335327373 remote: Compressing objects: 89% (424/476)_bk;t=1781335327373 remote: Compressing objects: 90% (429/476)_bk;t=1781335327373 remote: Compressing objects: 91% (434/476)_bk;t=1781335327373 remote: Compressing objects: 92% (438/476)_bk;t=1781335327374 remote: Compressing objects: 93% (443/476)_bk;t=1781335327374 remote: Compressing objects: 94% (448/476)_bk;t=1781335327374 remote: Compressing objects: 95% (453/476)_bk;t=1781335327374 remote: Compressing objects: 96% (457/476)_bk;t=1781335327374 remote: Compressing objects: 97% (462/476)_bk;t=1781335327375 remote: Compressing objects: 98% (467/476)_bk;t=1781335327376 remote: Compressing objects: 99% (472/476)_bk;t=1781335327376 remote: Compressing objects: 100% (476/476)_bk;t=1781335327376 remote: Compressing objects: 100% (476/476), done._bk;t=1781335327376 +_bk;t=1781335327384Receiving objects: 0% (1/73964) Receiving objects: 1% (740/73964) Receiving objects: 2% (1480/73964) Receiving objects: 3% (2219/73964) Receiving objects: 4% (2959/73964) Receiving objects: 5% (3699/73964) Receiving objects: 6% (4438/73964) Receiving objects: 7% (5178/73964) Receiving objects: 8% (5918/73964) Receiving objects: 9% (6657/73964) Receiving objects: 10% (7397/73964) Receiving objects: 11% (8137/73964) Receiving objects: 12% (8876/73964) Receiving objects: 13% (9616/73964) Receiving objects: 14% (10355/73964) Receiving objects: 15% (11095/73964) Receiving objects: 16% (11835/73964) Receiving objects: 17% (12574/73964) Receiving objects: 18% (13314/73964) Receiving objects: 19% (14054/73964) Receiving objects: 20% (14793/73964) Receiving objects: 21% (15533/73964) Receiving objects: 22% (16273/73964) Receiving objects: 23% (17012/73964) Receiving objects: 24% (17752/73964) Receiving objects: 25% (18491/73964) Receiving objects: 26% (19231/73964) Receiving objects: 27% (19971/73964) Receiving objects: 28% (20710/73964) Receiving objects: 29% (21450/73964) Receiving objects: 30% (22190/73964) Receiving objects: 31% (22929/73964) Receiving objects: 32% (23669/73964) Receiving objects: 33% (24409/73964) Receiving objects: 34% (25148/73964) Receiving objects: 35% (25888/73964) Receiving objects: 36% (26628/73964) Receiving objects: 37% (27367/73964) Receiving objects: 38% (28107/73964) Receiving objects: 39% (28846/73964) Receiving objects: 40% (29586/73964) Receiving objects: 41% (30326/73964) Receiving objects: 42% (31065/73964) Receiving objects: 43% (31805/73964) Receiving objects: 44% (32545/73964) Receiving objects: 45% (33284/73964) Receiving objects: 46% (34024/73964) Receiving objects: 47% (34764/73964) Receiving objects: 48% (35503/73964) Receiving objects: 49% (36243/73964) Receiving objects: 50% (36982/73964) Receiving objects: 51% (37722/73964) Receiving objects: 52% (38462/73964) Receiving objects: 53% (39201/73964) Receiving objects: 54% (39941/73964) Receiving objects: 55% (40681/73964) Receiving objects: 56% (41420/73964) Receiving objects: 57% (42160/73964) Receiving objects: 58% (42900/73964) Receiving objects: 59% (43639/73964) Receiving objects: 60% (44379/73964) Receiving objects: 61% (45119/73964) Receiving objects: 62% (45858/73964) Receiving objects: 63% (46598/73964) Receiving objects: 64% (47337/73964) Receiving objects: 65% (48077/73964) Receiving objects: 66% (48817/73964) Receiving objects: 67% (49556/73964) Receiving objects: 68% (50296/73964) Receiving objects: 69% (51036/73964) Receiving objects: 70% (51775/73964) Receiving objects: 71% (52515/73964) Receiving objects: 72% (53255/73964) Receiving objects: 73% (53994/73964) Receiving objects: 74% (54734/73964) Receiving objects: 75% (55473/73964) Receiving objects: 76% (56213/73964) Receiving objects: 77% (56953/73964) Receiving objects: 78% (57692/73964) Receiving objects: 79% (58432/73964) Receiving objects: 80% (59172/73964) Receiving objects: 81% (59911/73964) Receiving objects: 82% (60651/73964) Receiving objects: 83% (61391/73964) Receiving objects: 84% (62130/73964) Receiving objects: 85% (62870/73964) Receiving objects: 86% (63610/73964) Receiving objects: 87% (64349/73964) Receiving objects: 88% (65089/73964) Receiving objects: 89% (65828/73964) Receiving objects: 90% (66568/73964) Receiving objects: 91% (67308/73964) Receiving objects: 92% (68047/73964) Receiving objects: 93% (68787/73964) Receiving objects: 94% (69527/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 95% (70266/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 96% (71006/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 97% (71746/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 98% (72485/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 99% (73225/73964), 27.02 MiB | 54.03 MiB/s remote: Total 73964 (delta 1357), reused 1211 (delta 1133), pack-reused 72350 (from 3)_bk;t=1781335327987 +_bk;t=1781335327988Receiving objects: 100% (73964/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 100% (73964/73964), 33.90 MiB | 55.53 MiB/s, done. +_bk;t=1781335327992Resolving deltas: 0% (0/53187) Resolving deltas: 1% (532/53187) Resolving deltas: 2% (1064/53187) Resolving deltas: 3% (1596/53187) Resolving deltas: 4% (2128/53187) Resolving deltas: 5% (2660/53187) Resolving deltas: 6% (3192/53187) Resolving deltas: 7% (3725/53187) Resolving deltas: 8% (4255/53187) Resolving deltas: 9% (4787/53187) Resolving deltas: 10% (5319/53187) Resolving deltas: 11% (5851/53187) Resolving deltas: 12% (6384/53187) Resolving deltas: 13% (6915/53187) Resolving deltas: 14% (7447/53187) Resolving deltas: 15% (7979/53187) Resolving deltas: 16% (8511/53187) Resolving deltas: 17% (9042/53187) Resolving deltas: 18% (9574/53187) Resolving deltas: 19% (10106/53187) Resolving deltas: 20% (10638/53187) Resolving deltas: 21% (11170/53187) Resolving deltas: 22% (11702/53187) Resolving deltas: 23% (12234/53187) Resolving deltas: 24% (12765/53187) Resolving deltas: 25% (13297/53187) Resolving deltas: 26% (13829/53187) Resolving deltas: 27% (14361/53187) Resolving deltas: 28% (14893/53187) Resolving deltas: 29% (15425/53187) Resolving deltas: 30% (15957/53187) Resolving deltas: 31% (16488/53187) Resolving deltas: 32% (17020/53187) Resolving deltas: 33% (17552/53187) Resolving deltas: 34% (18084/53187) Resolving deltas: 35% (18616/53187) Resolving deltas: 36% (19148/53187) Resolving deltas: 37% (19680/53187) Resolving deltas: 38% (20212/53187) Resolving deltas: 39% (20743/53187) Resolving deltas: 40% (21275/53187) Resolving deltas: 41% (21807/53187) Resolving deltas: 42% (22339/53187) Resolving deltas: 43% (22871/53187) Resolving deltas: 44% (23403/53187) Resolving deltas: 45% (23935/53187) Resolving deltas: 46% (24467/53187) Resolving deltas: 47% (24998/53187) Resolving deltas: 48% (25531/53187) Resolving deltas: 49% (26062/53187) Resolving deltas: 50% (26594/53187) Resolving deltas: 51% (27126/53187) Resolving deltas: 52% (27658/53187) Resolving deltas: 53% (28190/53187) Resolving deltas: 54% (28721/53187) Resolving deltas: 55% (29253/53187) Resolving deltas: 56% (29785/53187) Resolving deltas: 57% (30317/53187) Resolving deltas: 58% (30849/53187) Resolving deltas: 59% (31381/53187) Resolving deltas: 60% (31913/53187) Resolving deltas: 61% (32445/53187) Resolving deltas: 62% (32976/53187) Resolving deltas: 63% (33508/53187) Resolving deltas: 64% (34041/53187) Resolving deltas: 65% (34572/53187) Resolving deltas: 66% (35104/53187) Resolving deltas: 67% (35636/53187) Resolving deltas: 68% (36168/53187) Resolving deltas: 69% (36700/53187) Resolving deltas: 70% (37231/53187) Resolving deltas: 71% (37763/53187) Resolving deltas: 72% (38295/53187) Resolving deltas: 73% (38827/53187) Resolving deltas: 74% (39359/53187) Resolving deltas: 75% (39891/53187) Resolving deltas: 76% (40423/53187) Resolving deltas: 77% (40954/53187) Resolving deltas: 78% (41486/53187) Resolving deltas: 79% (42018/53187) Resolving deltas: 80% (42550/53187) Resolving deltas: 81% (43082/53187) Resolving deltas: 82% (43614/53187) Resolving deltas: 83% (44146/53187) Resolving deltas: 84% (44679/53187) Resolving deltas: 85% (45209/53187) Resolving deltas: 86% (45741/53187) Resolving deltas: 87% (46273/53187) Resolving deltas: 88% (46805/53187) Resolving deltas: 89% (47337/53187) Resolving deltas: 90% (47869/53187) Resolving deltas: 91% (48401/53187) Resolving deltas: 92% (48933/53187) Resolving deltas: 93% (49465/53187) Resolving deltas: 94% (49996/53187) Resolving deltas: 95% (50528/53187) Resolving deltas: 96% (51060/53187) Resolving deltas: 97% (51592/53187) Resolving deltas: 98% (52124/53187) Resolving deltas: 99% (52656/53187) Resolving deltas: 100% (53187/53187) Resolving deltas: 100% (53187/53187), done. +_bk;t=1781335328950$ cd /Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python +_bk;t=1781335328950$ git clone -v --reference /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335328964Cloning into '.'... +_bk;t=1781335329003POST git-upload-pack (182 bytes) +_bk;t=1781335329362$ git clean -ffxdq +_bk;t=1781335329386# Fetch and checkout pull request head from GitHub +_bk;t=1781335329386$ git fetch -v --prune -- origin refs/pull/3812/head 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335329431POST git-upload-pack (402 bytes) +_bk;t=1781335329482From https://github.com/bazel-contrib/rules_python +_bk;t=1781335329482 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335329482 * branch 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -> FETCH_HEAD +_bk;t=1781335329499# FETCH_HEAD is now `92c48e57c6353feb0452ad82f7cfc2c744616fa4` +_bk;t=1781335329499$ git checkout -f 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335329614Note: switching to '92c48e57c6353feb0452ad82f7cfc2c744616fa4'. +_bk;t=1781335329614 +_bk;t=1781335329614You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335329614changes and commit them, and you can discard any commits you make in this +_bk;t=1781335329614state without impacting any branches by switching back to a branch. +_bk;t=1781335329614 +_bk;t=1781335329614If you want to create a new branch to retain commits you create, you may +_bk;t=1781335329614do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335329614 +_bk;t=1781335329614 git switch -c +_bk;t=1781335329614 +_bk;t=1781335329614Or undo this operation with: +_bk;t=1781335329614 +_bk;t=1781335329614 git switch - +_bk;t=1781335329614 +_bk;t=1781335329614Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335329614 +_bk;t=1781335329614HEAD is now at 92c48e57c feat(skills): Output swarm summary and job IDs in monitor_remote_ci +_bk;t=1781335329615# Cleaning again to catch any post-checkout changes +_bk;t=1781335329615$ git clean -ffxdq +_bk;t=1781335329640# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335329640# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335329640~~~ Running commands +_bk;t=1781335329640$ which python3 +_bk;t=1781335329640python3 -V +_bk;t=1781335329640curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py +_bk;t=1781335329640python3 bazelci.py runner --task=macos_arm64_config_02 +_bk;t=1781335329646/opt/homebrew/bin/python3 +_bk;t=1781335329656Python 3.12.11 +_bk;t=1781335330369 +_bk;t=1781335330369 +_bk;t=1781335330369--- :xcode: Activating Xcode 26.0... +_bk;t=1781335330369 +_bk;t=1781335330369 +_bk;t=1781335330369/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode26.0.app +_bk;t=1781335330405/usr/bin/sudo /usr/bin/xcodebuild -runFirstLaunch +_bk;t=1781335331218Install Started +_bk;t=17813353317151%.._bk;t=1781335333212.......20......._bk;t=1781335334703..40........._bk;t=178133533571460_bk;t=1781335341718.........80_bk;t=1781335343210._bk;t=1781335354018Install Succeeded +_bk;t=1781335354021 +_bk;t=1781335354021 +_bk;t=1781335354021--- :bazel: Using Bazel version 8.x +_bk;t=1781335354021 +_bk;t=1781335354021 +_bk;t=1781335354021bazel --version +_bk;t=1781335354023Traceback (most recent call last): +_bk;t=1781335354023 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 4911, in +_bk;t=1781335354024 sys.exit(main()) +_bk;t=1781335354024 ^^^^^^ +_bk;t=1781335354024 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 4878, in main +_bk;t=1781335354025 execute_commands( +_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 1488, in execute_commands +_bk;t=1781335354025 PrepareRepoInCwd(True, initial_setup=True) +_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 1473, in PrepareRepoInCwd +_bk;t=1781335354025 run_bazel_version(bazel_binary) +_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 2255, in run_bazel_version +_bk;t=1781335354025 exit_code = execute_command([bazel_binary, "--version"], fail_if_nonzero=False) +_bk;t=1781335354025 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 2951, in execute_command +_bk;t=1781335354025 return subprocess.run( +_bk;t=1781335354025 ^^^^^^^^^^^^^^^ +_bk;t=1781335354025 File "/opt/homebrew/Cellar/python@3.12/3.12.11/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 548, in run +_bk;t=1781335354026 with Popen(*popenargs, **kwargs) as process: +_bk;t=1781335354026 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ +_bk;t=1781335354026 File "/opt/homebrew/Cellar/python@3.12/3.12.11/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 1026, in __init__ +_bk;t=1781335354027 self._execute_child(args, executable, preexec_fn, close_fds, +_bk;t=1781335354027 File "/opt/homebrew/Cellar/python@3.12/3.12.11/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 1955, in _execute_child +_bk;t=1781335354027 raise child_exception_type(errno_num, err_msg, err_filename) +_bk;t=1781335354027FileNotFoundError: [Errno 2] No such file or directory: 'bazel' +_bk;t=1781335354040^^^ +++ +_bk;t=1781335354040🚨 Error: The command exited with status 1 +_bk;t=1781335354040^^^ +++ +_bk;t=1781335354040user command error: exit status 1 diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log new file mode 100644 index 0000000000..0ae5df0879 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log @@ -0,0 +1,2628 @@ +_bk;t=1781335325706~~~ Running agent environment hook +_bk;t=1781335325706$ /etc/buildkite-agent/hooks/environment +_bk;t=1781335325738# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98" +_bk;t=1781335325738~~~ Preparing plugins +_bk;t=1781335325738# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" +_bk;t=1781335325739$ mktemp -dp /etc/buildkite-agent/plugins +_bk;t=1781335325739# Switching to the temporary plugin directory +_bk;t=1781335325739$ cd /etc/buildkite-agent/plugins/1918249943 +_bk;t=1781335325739$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . +_bk;t=1781335325742Cloning into '.'... +_bk;t=1781335325894POST git-upload-pack (175 bytes) +_bk;t=1781335325934POST git-upload-pack (gzip 3102 to 1570 bytes) +_bk;t=1781335325979remote: Enumerating objects: 2225, done._bk;t=1781335325979 +_bk;t=1781335325979remote: Counting objects: 0% (1/321)_bk;t=1781335325979 remote: Counting objects: 1% (4/321)_bk;t=1781335325979 remote: Counting objects: 2% (7/321)_bk;t=1781335325979 remote: Counting objects: 3% (10/321)_bk;t=1781335325979 remote: Counting objects: 4% (13/321)_bk;t=1781335325979 remote: Counting objects: 5% (17/321)_bk;t=1781335325979 remote: Counting objects: 6% (20/321)_bk;t=1781335325979 remote: Counting objects: 7% (23/321)_bk;t=1781335325979 remote: Counting objects: 8% (26/321)_bk;t=1781335325979 remote: Counting objects: 9% (29/321)_bk;t=1781335325979 remote: Counting objects: 10% (33/321)_bk;t=1781335325979 remote: Counting objects: 11% (36/321)_bk;t=1781335325979 remote: Counting objects: 12% (39/321)_bk;t=1781335325979 remote: Counting objects: 13% (42/321)_bk;t=1781335325979 remote: Counting objects: 14% (45/321)_bk;t=1781335325979 remote: Counting objects: 15% (49/321)_bk;t=1781335325979 remote: Counting objects: 16% (52/321)_bk;t=1781335325979 remote: Counting objects: 17% (55/321)_bk;t=1781335325979 remote: Counting objects: 18% (58/321)_bk;t=1781335325979 remote: Counting objects: 19% (61/321)_bk;t=1781335325979 remote: Counting objects: 20% (65/321)_bk;t=1781335325979 remote: Counting objects: 21% (68/321)_bk;t=1781335325979 remote: Counting objects: 22% (71/321)_bk;t=1781335325979 remote: Counting objects: 23% (74/321)_bk;t=1781335325979 remote: Counting objects: 24% (78/321)_bk;t=1781335325979 remote: Counting objects: 25% (81/321)_bk;t=1781335325979 remote: Counting objects: 26% (84/321)_bk;t=1781335325979 remote: Counting objects: 27% (87/321)_bk;t=1781335325979 remote: Counting objects: 28% (90/321)_bk;t=1781335325979 remote: Counting objects: 29% (94/321)_bk;t=1781335325979 remote: Counting objects: 30% (97/321)_bk;t=1781335325979 remote: Counting objects: 31% (100/321)_bk;t=1781335325979 remote: Counting objects: 32% (103/321)_bk;t=1781335325979 remote: Counting objects: 33% (106/321)_bk;t=1781335325979 remote: Counting objects: 34% (110/321)_bk;t=1781335325979 remote: Counting objects: 35% (113/321)_bk;t=1781335325979 remote: Counting objects: 36% (116/321)_bk;t=1781335325979 remote: Counting objects: 37% (119/321)_bk;t=1781335325979 remote: Counting objects: 38% (122/321)_bk;t=1781335325979 remote: Counting objects: 39% (126/321)_bk;t=1781335325979 remote: Counting objects: 40% (129/321)_bk;t=1781335325979 remote: Counting objects: 41% (132/321)_bk;t=1781335325979 remote: Counting objects: 42% (135/321)_bk;t=1781335325979 remote: Counting objects: 43% (139/321)_bk;t=1781335325979 remote: Counting objects: 44% (142/321)_bk;t=1781335325979 remote: Counting objects: 45% (145/321)_bk;t=1781335325979 remote: Counting objects: 46% (148/321)_bk;t=1781335325979 remote: Counting objects: 47% (151/321)_bk;t=1781335325979 remote: Counting objects: 48% (155/321)_bk;t=1781335325979 remote: Counting objects: 49% (158/321)_bk;t=1781335325979 remote: Counting objects: 50% (161/321)_bk;t=1781335325979 remote: Counting objects: 51% (164/321)_bk;t=1781335325979 remote: Counting objects: 52% (167/321)_bk;t=1781335325979 remote: Counting objects: 53% (171/321)_bk;t=1781335325979 remote: Counting objects: 54% (174/321)_bk;t=1781335325979 remote: Counting objects: 55% (177/321)_bk;t=1781335325979 remote: Counting objects: 56% (180/321)_bk;t=1781335325979 remote: Counting objects: 57% (183/321)_bk;t=1781335325979 remote: Counting objects: 58% (187/321)_bk;t=1781335325979 remote: Counting objects: 59% (190/321)_bk;t=1781335325979 remote: Counting objects: 60% (193/321)_bk;t=1781335325979 remote: Counting objects: 61% (196/321)_bk;t=1781335325979 remote: Counting objects: 62% (200/321)_bk;t=1781335325979 remote: Counting objects: 63% (203/321)_bk;t=1781335325979 remote: Counting objects: 64% (206/321)_bk;t=1781335325979 remote: Counting objects: 65% (209/321)_bk;t=1781335325979 remote: Counting objects: 66% (212/321)_bk;t=1781335325979 remote: Counting objects: 67% (216/321)_bk;t=1781335325980 remote: Counting objects: 68% (219/321)_bk;t=1781335325980 remote: Counting objects: 69% (222/321)_bk;t=1781335325980 remote: Counting objects: 70% (225/321)_bk;t=1781335325980 remote: Counting objects: 71% (228/321)_bk;t=1781335325980 remote: Counting objects: 72% (232/321)_bk;t=1781335325980 remote: Counting objects: 73% (235/321)_bk;t=1781335325980 remote: Counting objects: 74% (238/321)_bk;t=1781335325980 remote: Counting objects: 75% (241/321)_bk;t=1781335325980 remote: Counting objects: 76% (244/321)_bk;t=1781335325980 remote: Counting objects: 77% (248/321)_bk;t=1781335325980 remote: Counting objects: 78% (251/321)_bk;t=1781335325980 remote: Counting objects: 79% (254/321)_bk;t=1781335325980 remote: Counting objects: 80% (257/321)_bk;t=1781335325980 remote: Counting objects: 81% (261/321)_bk;t=1781335325980 remote: Counting objects: 82% (264/321)_bk;t=1781335325980 remote: Counting objects: 83% (267/321)_bk;t=1781335325980 remote: Counting objects: 84% (270/321)_bk;t=1781335325980 remote: Counting objects: 85% (273/321)_bk;t=1781335325980 remote: Counting objects: 86% (277/321)_bk;t=1781335325980 remote: Counting objects: 87% (280/321)_bk;t=1781335325980 remote: Counting objects: 88% (283/321)_bk;t=1781335325980 remote: Counting objects: 89% (286/321)_bk;t=1781335325980 remote: Counting objects: 90% (289/321)_bk;t=1781335325980 remote: Counting objects: 91% (293/321)_bk;t=1781335325980 remote: Counting objects: 92% (296/321)_bk;t=1781335325980 remote: Counting objects: 93% (299/321)_bk;t=1781335325980 remote: Counting objects: 94% (302/321)_bk;t=1781335325980 remote: Counting objects: 95% (305/321)_bk;t=1781335325980 remote: Counting objects: 96% (309/321)_bk;t=1781335325980 remote: Counting objects: 97% (312/321)_bk;t=1781335325980 remote: Counting objects: 98% (315/321)_bk;t=1781335325980 remote: Counting objects: 99% (318/321)_bk;t=1781335325980 remote: Counting objects: 100% (321/321)_bk;t=1781335325980 remote: Counting objects: 100% (321/321), done._bk;t=1781335325980 +_bk;t=1781335325980remote: Compressing objects: 0% (1/151)_bk;t=1781335325980 remote: Compressing objects: 1% (2/151)_bk;t=1781335325980 remote: Compressing objects: 2% (4/151)_bk;t=1781335325980 remote: Compressing objects: 3% (5/151)_bk;t=1781335325980 remote: Compressing objects: 4% (7/151)_bk;t=1781335325980 remote: Compressing objects: 5% (8/151)_bk;t=1781335325981 remote: Compressing objects: 6% (10/151)_bk;t=1781335325982 remote: Compressing objects: 7% (11/151)_bk;t=1781335325982 remote: Compressing objects: 8% (13/151)_bk;t=1781335325995 remote: Compressing objects: 9% (14/151)_bk;t=1781335325995 remote: Compressing objects: 10% (16/151)_bk;t=1781335325995 remote: Compressing objects: 11% (17/151)_bk;t=1781335325995 remote: Compressing objects: 12% (19/151)_bk;t=1781335325995 remote: Compressing objects: 13% (20/151)_bk;t=1781335325995 remote: Compressing objects: 14% (22/151)_bk;t=1781335325995 remote: Compressing objects: 15% (23/151)_bk;t=1781335325995 remote: Compressing objects: 16% (25/151)_bk;t=1781335325995 remote: Compressing objects: 17% (26/151)_bk;t=1781335325995 remote: Compressing objects: 18% (28/151)_bk;t=1781335325995 remote: Compressing objects: 19% (29/151)_bk;t=1781335325995 remote: Compressing objects: 20% (31/151)_bk;t=1781335325995 remote: Compressing objects: 21% (32/151)_bk;t=1781335325995 remote: Compressing objects: 22% (34/151)_bk;t=1781335325995 remote: Compressing objects: 23% (35/151)_bk;t=1781335325995 remote: Compressing objects: 24% (37/151)_bk;t=1781335325995 remote: Compressing objects: 25% (38/151)_bk;t=1781335325995 remote: Compressing objects: 26% (40/151)_bk;t=1781335325995 remote: Compressing objects: 27% (41/151)_bk;t=1781335325995 remote: Compressing objects: 28% (43/151)_bk;t=1781335325995 remote: Compressing objects: 29% (44/151)_bk;t=1781335325995 remote: Compressing objects: 30% (46/151)_bk;t=1781335325995 remote: Compressing objects: 31% (47/151)_bk;t=1781335325995 remote: Compressing objects: 32% (49/151)_bk;t=1781335325995 remote: Compressing objects: 33% (50/151)_bk;t=1781335325995 remote: Compressing objects: 34% (52/151)_bk;t=1781335325995 remote: Compressing objects: 35% (53/151)_bk;t=1781335325995 remote: Compressing objects: 36% (55/151)_bk;t=1781335325995 remote: Compressing objects: 37% (56/151)_bk;t=1781335325995 remote: Compressing objects: 38% (58/151)_bk;t=1781335325995 remote: Compressing objects: 39% (59/151)_bk;t=1781335325995 remote: Compressing objects: 40% (61/151)_bk;t=1781335325995 remote: Compressing objects: 41% (62/151)_bk;t=1781335325995 remote: Compressing objects: 42% (64/151)_bk;t=1781335325995 remote: Compressing objects: 43% (65/151)_bk;t=1781335325995 remote: Compressing objects: 44% (67/151)_bk;t=1781335325995 remote: Compressing objects: 45% (68/151)_bk;t=1781335325995 remote: Compressing objects: 46% (70/151)_bk;t=1781335325995 remote: Compressing objects: 47% (71/151)_bk;t=1781335325995 remote: Compressing objects: 48% (73/151)_bk;t=1781335325995 remote: Compressing objects: 49% (74/151)_bk;t=1781335325995 remote: Compressing objects: 50% (76/151)_bk;t=1781335325995 remote: Compressing objects: 51% (78/151)_bk;t=1781335325995 remote: Compressing objects: 52% (79/151)_bk;t=1781335325995 remote: Compressing objects: 53% (81/151)_bk;t=1781335325995 remote: Compressing objects: 54% (82/151)_bk;t=1781335325995 remote: Compressing objects: 55% (84/151)_bk;t=1781335325995 remote: Compressing objects: 56% (85/151)_bk;t=1781335325995 remote: Compressing objects: 57% (87/151)_bk;t=1781335325995 remote: Compressing objects: 58% (88/151)_bk;t=1781335325995 remote: Compressing objects: 59% (90/151)_bk;t=1781335325995 remote: Compressing objects: 60% (91/151)_bk;t=1781335325995 remote: Compressing objects: 61% (93/151)_bk;t=1781335325995 remote: Compressing objects: 62% (94/151)_bk;t=1781335325995 remote: Compressing objects: 63% (96/151)_bk;t=1781335325995 remote: Compressing objects: 64% (97/151)_bk;t=1781335325995 remote: Compressing objects: 65% (99/151)_bk;t=1781335325995 remote: Compressing objects: 66% (100/151)_bk;t=1781335325995 remote: Compressing objects: 67% (102/151)_bk;t=1781335325995 remote: Compressing objects: 68% (103/151)_bk;t=1781335325995 remote: Compressing objects: 69% (105/151)_bk;t=1781335325995 remote: Compressing objects: 70% (106/151)_bk;t=1781335325995 remote: Compressing objects: 71% (108/151)_bk;t=1781335325995 remote: Compressing objects: 72% (109/151)_bk;t=1781335325995 remote: Compressing objects: 73% (111/151)_bk;t=1781335325995 remote: Compressing objects: 74% (112/151)_bk;t=1781335325995 remote: Compressing objects: 75% (114/151)_bk;t=1781335325995 remote: Compressing objects: 76% (115/151)_bk;t=1781335325995 remote: Compressing objects: 77% (117/151)_bk;t=1781335325995 remote: Compressing objects: 78% (118/151)_bk;t=1781335325995 remote: Compressing objects: 79% (120/151)_bk;t=1781335325995 remote: Compressing objects: 80% (121/151)_bk;t=1781335325995 remote: Compressing objects: 81% (123/151)_bk;t=1781335325995 remote: Compressing objects: 82% (124/151)_bk;t=1781335325995 remote: Compressing objects: 83% (126/151)_bk;t=1781335325995 remote: Compressing objects: 84% (127/151)_bk;t=1781335325995 remote: Compressing objects: 85% (129/151)_bk;t=1781335325995 remote: Compressing objects: 86% (130/151)_bk;t=1781335325995 remote: Compressing objects: 87% (132/151)_bk;t=1781335325995 remote: Compressing objects: 88% (133/151)_bk;t=1781335325995 remote: Compressing objects: 89% (135/151)_bk;t=1781335325995 remote: Compressing objects: 90% (136/151)_bk;t=1781335325995 remote: Compressing objects: 91% (138/151)_bk;t=1781335325996 remote: Compressing objects: 92% (139/151)_bk;t=1781335325996 remote: Compressing objects: 93% (141/151)_bk;t=1781335325996 remote: Compressing objects: 94% (142/151)_bk;t=1781335325996 remote: Compressing objects: 95% (144/151)_bk;t=1781335325996 remote: Compressing objects: 96% (145/151)_bk;t=1781335325996 remote: Compressing objects: 97% (147/151)_bk;t=1781335325996 remote: Compressing objects: 98% (148/151)_bk;t=1781335326003 remote: Compressing objects: 99% (150/151)_bk;t=1781335326003 remote: Compressing objects: 100% (151/151)_bk;t=1781335326003 remote: Compressing objects: 100% (151/151), done._bk;t=1781335326003 +_bk;t=1781335326005Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) Receiving objects: 96% (2136/2225) remote: Total 2225 (delta 206), reused 170 (delta 169), pack-reused 1904 (from 3)_bk;t=1781335326094 +_bk;t=1781335326094Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.74 KiB | 6.17 MiB/s, done. +_bk;t=1781335326095Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (89/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (111/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (167/1109) Resolving deltas: 16% (179/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (211/1109) Resolving deltas: 20% (222/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (245/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (300/1109) Resolving deltas: 28% (312/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (355/1109) Resolving deltas: 33% (367/1109) Resolving deltas: 34% (378/1109) Resolving deltas: 35% (389/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (411/1109) Resolving deltas: 38% (423/1109) Resolving deltas: 39% (433/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (466/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (504/1109) Resolving deltas: 46% (511/1109) Resolving deltas: 47% (523/1109) Resolving deltas: 48% (533/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (555/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (599/1109) Resolving deltas: 55% (611/1109) Resolving deltas: 56% (622/1109) Resolving deltas: 57% (633/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (667/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (755/1109) Resolving deltas: 69% (766/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (788/1109) Resolving deltas: 72% (800/1109) Resolving deltas: 73% (811/1109) Resolving deltas: 74% (822/1109) Resolving deltas: 75% (832/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (867/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (921/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (999/1109) Resolving deltas: 91% (1010/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1098/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. +_bk;t=1781335326137# Checking out `v3.8.0` +_bk;t=1781335326137$ git checkout -f v3.8.0 +_bk;t=1781335326143Note: switching to 'v3.8.0'. +_bk;t=1781335326143 +_bk;t=1781335326143You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335326143changes and commit them, and you can discard any commits you make in this +_bk;t=1781335326143state without impacting any branches by switching back to a branch. +_bk;t=1781335326143 +_bk;t=1781335326143If you want to create a new branch to retain commits you create, you may +_bk;t=1781335326143do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335326143 +_bk;t=1781335326143 git switch -c +_bk;t=1781335326143 +_bk;t=1781335326143Or undo this operation with: +_bk;t=1781335326143 +_bk;t=1781335326143 git switch - +_bk;t=1781335326143 +_bk;t=1781335326143Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335326143 +_bk;t=1781335326143HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master +_bk;t=1781335326144# Moving temporary plugin directory to final location +_bk;t=1781335326144$ mv /etc/buildkite-agent/plugins/1918249943 /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 +_bk;t=1781335326144$ cd /var/lib/buildkite-agent/builds +_bk;t=1781335326144~~~ Running agent pre-checkout hook +_bk;t=1781335326144$ /etc/buildkite-agent/hooks/pre-checkout +_bk;t=1781335326161JOB_START_TIME: 1781335326161 +_bk;t=1781335326173Added: +_bk;t=1781335326173+ JOB_START_TIME +_bk;t=1781335326187~~~ Preparing working directory +_bk;t=1781335326187# Creating "/var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python" +_bk;t=1781335326187$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python +_bk;t=1781335326187$ cd /var/lib/gitmirrors +_bk;t=1781335326194# Updating existing repository mirror to find commit 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335326195# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously +_bk;t=1781335326195$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head +_bk;t=1781335326447remote: Enumerating objects: 2499, done._bk;t=1781335326447 +_bk;t=1781335326447remote: Counting objects: 0% (1/1588)_bk;t=1781335326447 remote: Counting objects: 1% (16/1588)_bk;t=1781335326447 remote: Counting objects: 2% (32/1588)_bk;t=1781335326447 remote: Counting objects: 3% (48/1588)_bk;t=1781335326447 remote: Counting objects: 4% (64/1588)_bk;t=1781335326447 remote: Counting objects: 5% (80/1588)_bk;t=1781335326447 remote: Counting objects: 6% (96/1588)_bk;t=1781335326447 remote: Counting objects: 7% (112/1588)_bk;t=1781335326447 remote: Counting objects: 8% (128/1588)_bk;t=1781335326447 remote: Counting objects: 9% (143/1588)_bk;t=1781335326447 remote: Counting objects: 10% (159/1588)_bk;t=1781335326447 remote: Counting objects: 11% (175/1588)_bk;t=1781335326447 remote: Counting objects: 12% (191/1588)_bk;t=1781335326447 remote: Counting objects: 13% (207/1588)_bk;t=1781335326447 remote: Counting objects: 14% (223/1588)_bk;t=1781335326447 remote: Counting objects: 15% (239/1588)_bk;t=1781335326447 remote: Counting objects: 16% (255/1588)_bk;t=1781335326447 remote: Counting objects: 17% (270/1588)_bk;t=1781335326447 remote: Counting objects: 18% (286/1588)_bk;t=1781335326447 remote: Counting objects: 19% (302/1588)_bk;t=1781335326447 remote: Counting objects: 20% (318/1588)_bk;t=1781335326447 remote: Counting objects: 21% (334/1588)_bk;t=1781335326447 remote: Counting objects: 22% (350/1588)_bk;t=1781335326447 remote: Counting objects: 23% (366/1588)_bk;t=1781335326447 remote: Counting objects: 24% (382/1588)_bk;t=1781335326447 remote: Counting objects: 25% (397/1588)_bk;t=1781335326447 remote: Counting objects: 26% (413/1588)_bk;t=1781335326447 remote: Counting objects: 27% (429/1588)_bk;t=1781335326447 remote: Counting objects: 28% (445/1588)_bk;t=1781335326447 remote: Counting objects: 29% (461/1588)_bk;t=1781335326447 remote: Counting objects: 30% (477/1588)_bk;t=1781335326447 remote: Counting objects: 31% (493/1588)_bk;t=1781335326447 remote: Counting objects: 32% (509/1588)_bk;t=1781335326447 remote: Counting objects: 33% (525/1588)_bk;t=1781335326447 remote: Counting objects: 34% (540/1588)_bk;t=1781335326447 remote: Counting objects: 35% (556/1588)_bk;t=1781335326447 remote: Counting objects: 36% (572/1588)_bk;t=1781335326447 remote: Counting objects: 37% (588/1588)_bk;t=1781335326447 remote: Counting objects: 38% (604/1588)_bk;t=1781335326447 remote: Counting objects: 39% (620/1588)_bk;t=1781335326447 remote: Counting objects: 40% (636/1588)_bk;t=1781335326447 remote: Counting objects: 41% (652/1588)_bk;t=1781335326447 remote: Counting objects: 42% (667/1588)_bk;t=1781335326447 remote: Counting objects: 43% (683/1588)_bk;t=1781335326447 remote: Counting objects: 44% (699/1588)_bk;t=1781335326447 remote: Counting objects: 45% (715/1588)_bk;t=1781335326447 remote: Counting objects: 46% (731/1588)_bk;t=1781335326447 remote: Counting objects: 47% (747/1588)_bk;t=1781335326447 remote: Counting objects: 48% (763/1588)_bk;t=1781335326447 remote: Counting objects: 49% (779/1588)_bk;t=1781335326447 remote: Counting objects: 50% (794/1588)_bk;t=1781335326447 remote: Counting objects: 51% (810/1588)_bk;t=1781335326447 remote: Counting objects: 52% (826/1588)_bk;t=1781335326447 remote: Counting objects: 53% (842/1588)_bk;t=1781335326447 remote: Counting objects: 54% (858/1588)_bk;t=1781335326447 remote: Counting objects: 55% (874/1588)_bk;t=1781335326447 remote: Counting objects: 56% (890/1588)_bk;t=1781335326447 remote: Counting objects: 57% (906/1588)_bk;t=1781335326447 remote: Counting objects: 58% (922/1588)_bk;t=1781335326447 remote: Counting objects: 59% (937/1588)_bk;t=1781335326447 remote: Counting objects: 60% (953/1588)_bk;t=1781335326447 remote: Counting objects: 61% (969/1588)_bk;t=1781335326447 remote: Counting objects: 62% (985/1588)_bk;t=1781335326447 remote: Counting objects: 63% (1001/1588)_bk;t=1781335326447 remote: Counting objects: 64% (1017/1588)_bk;t=1781335326447 remote: Counting objects: 65% (1033/1588)_bk;t=1781335326447 remote: Counting objects: 66% (1049/1588)_bk;t=1781335326447 remote: Counting objects: 67% (1064/1588)_bk;t=1781335326448 remote: Counting objects: 68% (1080/1588)_bk;t=1781335326448 remote: Counting objects: 69% (1096/1588)_bk;t=1781335326448 remote: Counting objects: 70% (1112/1588)_bk;t=1781335326448 remote: Counting objects: 71% (1128/1588)_bk;t=1781335326448 remote: Counting objects: 72% (1144/1588)_bk;t=1781335326448 remote: Counting objects: 73% (1160/1588)_bk;t=1781335326448 remote: Counting objects: 74% (1176/1588)_bk;t=1781335326448 remote: Counting objects: 75% (1191/1588)_bk;t=1781335326448 remote: Counting objects: 76% (1207/1588)_bk;t=1781335326448 remote: Counting objects: 77% (1223/1588)_bk;t=1781335326448 remote: Counting objects: 78% (1239/1588)_bk;t=1781335326448 remote: Counting objects: 79% (1255/1588)_bk;t=1781335326448 remote: Counting objects: 80% (1271/1588)_bk;t=1781335326448 remote: Counting objects: 81% (1287/1588)_bk;t=1781335326448 remote: Counting objects: 82% (1303/1588)_bk;t=1781335326448 remote: Counting objects: 83% (1319/1588)_bk;t=1781335326448 remote: Counting objects: 84% (1334/1588)_bk;t=1781335326448 remote: Counting objects: 85% (1350/1588)_bk;t=1781335326448 remote: Counting objects: 86% (1366/1588)_bk;t=1781335326448 remote: Counting objects: 87% (1382/1588)_bk;t=1781335326448 remote: Counting objects: 88% (1398/1588)_bk;t=1781335326448 remote: Counting objects: 89% (1414/1588)_bk;t=1781335326448 remote: Counting objects: 90% (1430/1588)_bk;t=1781335326448 remote: Counting objects: 91% (1446/1588)_bk;t=1781335326448 remote: Counting objects: 92% (1461/1588)_bk;t=1781335326448 remote: Counting objects: 93% (1477/1588)_bk;t=1781335326448 remote: Counting objects: 94% (1493/1588)_bk;t=1781335326448 remote: Counting objects: 95% (1509/1588)_bk;t=1781335326448 remote: Counting objects: 96% (1525/1588)_bk;t=1781335326448 remote: Counting objects: 97% (1541/1588)_bk;t=1781335326448 remote: Counting objects: 98% (1557/1588)_bk;t=1781335326448 remote: Counting objects: 99% (1573/1588)_bk;t=1781335326448 remote: Counting objects: 100% (1588/1588)_bk;t=1781335326448 remote: Counting objects: 100% (1588/1588), done._bk;t=1781335326448 +_bk;t=1781335326448remote: Compressing objects: 0% (1/439)_bk;t=1781335326448 remote: Compressing objects: 1% (5/439)_bk;t=1781335326448 remote: Compressing objects: 2% (9/439)_bk;t=1781335326448 remote: Compressing objects: 3% (14/439)_bk;t=1781335326448 remote: Compressing objects: 4% (18/439)_bk;t=1781335326448 remote: Compressing objects: 5% (22/439)_bk;t=1781335326448 remote: Compressing objects: 6% (27/439)_bk;t=1781335326448 remote: Compressing objects: 7% (31/439)_bk;t=1781335326448 remote: Compressing objects: 8% (36/439)_bk;t=1781335326448 remote: Compressing objects: 9% (40/439)_bk;t=1781335326448 remote: Compressing objects: 10% (44/439)_bk;t=1781335326448 remote: Compressing objects: 11% (49/439)_bk;t=1781335326448 remote: Compressing objects: 12% (53/439)_bk;t=1781335326448 remote: Compressing objects: 13% (58/439)_bk;t=1781335326448 remote: Compressing objects: 14% (62/439)_bk;t=1781335326448 remote: Compressing objects: 15% (66/439)_bk;t=1781335326448 remote: Compressing objects: 16% (71/439)_bk;t=1781335326448 remote: Compressing objects: 17% (75/439)_bk;t=1781335326448 remote: Compressing objects: 18% (80/439)_bk;t=1781335326448 remote: Compressing objects: 19% (84/439)_bk;t=1781335326448 remote: Compressing objects: 20% (88/439)_bk;t=1781335326448 remote: Compressing objects: 21% (93/439)_bk;t=1781335326448 remote: Compressing objects: 22% (97/439)_bk;t=1781335326448 remote: Compressing objects: 23% (101/439)_bk;t=1781335326448 remote: Compressing objects: 24% (106/439)_bk;t=1781335326448 remote: Compressing objects: 25% (110/439)_bk;t=1781335326448 remote: Compressing objects: 26% (115/439)_bk;t=1781335326448 remote: Compressing objects: 27% (119/439)_bk;t=1781335326448 remote: Compressing objects: 28% (123/439)_bk;t=1781335326448 remote: Compressing objects: 29% (128/439)_bk;t=1781335326448 remote: Compressing objects: 30% (132/439)_bk;t=1781335326448 remote: Compressing objects: 31% (137/439)_bk;t=1781335326448 remote: Compressing objects: 32% (141/439)_bk;t=1781335326448 remote: Compressing objects: 33% (145/439)_bk;t=1781335326448 remote: Compressing objects: 34% (150/439)_bk;t=1781335326448 remote: Compressing objects: 35% (154/439)_bk;t=1781335326448 remote: Compressing objects: 36% (159/439)_bk;t=1781335326448 remote: Compressing objects: 37% (163/439)_bk;t=1781335326448 remote: Compressing objects: 38% (167/439)_bk;t=1781335326448 remote: Compressing objects: 39% (172/439)_bk;t=1781335326448 remote: Compressing objects: 40% (176/439)_bk;t=1781335326448 remote: Compressing objects: 41% (180/439)_bk;t=1781335326448 remote: Compressing objects: 42% (185/439)_bk;t=1781335326449 remote: Compressing objects: 43% (189/439)_bk;t=1781335326449 remote: Compressing objects: 44% (194/439)_bk;t=1781335326449 remote: Compressing objects: 45% (198/439)_bk;t=1781335326449 remote: Compressing objects: 46% (202/439)_bk;t=1781335326449 remote: Compressing objects: 47% (207/439)_bk;t=1781335326449 remote: Compressing objects: 48% (211/439)_bk;t=1781335326449 remote: Compressing objects: 49% (216/439)_bk;t=1781335326449 remote: Compressing objects: 50% (220/439)_bk;t=1781335326449 remote: Compressing objects: 51% (224/439)_bk;t=1781335326449 remote: Compressing objects: 52% (229/439)_bk;t=1781335326449 remote: Compressing objects: 53% (233/439)_bk;t=1781335326449 remote: Compressing objects: 54% (238/439)_bk;t=1781335326449 remote: Compressing objects: 55% (242/439)_bk;t=1781335326449 remote: Compressing objects: 56% (246/439)_bk;t=1781335326449 remote: Compressing objects: 57% (251/439)_bk;t=1781335326449 remote: Compressing objects: 58% (255/439)_bk;t=1781335326449 remote: Compressing objects: 59% (260/439)_bk;t=1781335326449 remote: Compressing objects: 60% (264/439)_bk;t=1781335326449 remote: Compressing objects: 61% (268/439)_bk;t=1781335326449 remote: Compressing objects: 62% (273/439)_bk;t=1781335326449 remote: Compressing objects: 63% (277/439)_bk;t=1781335326449 remote: Compressing objects: 64% (281/439)_bk;t=1781335326449 remote: Compressing objects: 65% (286/439)_bk;t=1781335326449 remote: Compressing objects: 66% (290/439)_bk;t=1781335326449 remote: Compressing objects: 67% (295/439)_bk;t=1781335326449 remote: Compressing objects: 68% (299/439)_bk;t=1781335326449 remote: Compressing objects: 69% (303/439)_bk;t=1781335326449 remote: Compressing objects: 70% (308/439)_bk;t=1781335326449 remote: Compressing objects: 71% (312/439)_bk;t=1781335326449 remote: Compressing objects: 72% (317/439)_bk;t=1781335326449 remote: Compressing objects: 73% (321/439)_bk;t=1781335326449 remote: Compressing objects: 74% (325/439)_bk;t=1781335326449 remote: Compressing objects: 75% (330/439)_bk;t=1781335326449 remote: Compressing objects: 76% (334/439)_bk;t=1781335326449 remote: Compressing objects: 77% (339/439)_bk;t=1781335326449 remote: Compressing objects: 78% (343/439)_bk;t=1781335326449 remote: Compressing objects: 79% (347/439)_bk;t=1781335326449 remote: Compressing objects: 80% (352/439)_bk;t=1781335326449 remote: Compressing objects: 81% (356/439)_bk;t=1781335326449 remote: Compressing objects: 82% (360/439)_bk;t=1781335326449 remote: Compressing objects: 83% (365/439)_bk;t=1781335326449 remote: Compressing objects: 84% (369/439)_bk;t=1781335326449 remote: Compressing objects: 85% (374/439)_bk;t=1781335326449 remote: Compressing objects: 86% (378/439)_bk;t=1781335326449 remote: Compressing objects: 87% (382/439)_bk;t=1781335326449 remote: Compressing objects: 88% (387/439)_bk;t=1781335326449 remote: Compressing objects: 89% (391/439)_bk;t=1781335326449 remote: Compressing objects: 90% (396/439)_bk;t=1781335326449 remote: Compressing objects: 91% (400/439)_bk;t=1781335326449 remote: Compressing objects: 92% (404/439)_bk;t=1781335326449 remote: Compressing objects: 93% (409/439)_bk;t=1781335326449 remote: Compressing objects: 94% (413/439)_bk;t=1781335326449 remote: Compressing objects: 95% (418/439)_bk;t=1781335326449 remote: Compressing objects: 96% (422/439)_bk;t=1781335326449 remote: Compressing objects: 97% (426/439)_bk;t=1781335326449 remote: Compressing objects: 98% (431/439)_bk;t=1781335326449 remote: Compressing objects: 99% (435/439)_bk;t=1781335326449 remote: Compressing objects: 100% (439/439)_bk;t=1781335326449 remote: Compressing objects: 100% (439/439), done._bk;t=1781335326449 +_bk;t=1781335326450Receiving objects: 0% (1/2499) Receiving objects: 1% (25/2499) Receiving objects: 2% (50/2499) Receiving objects: 3% (75/2499) Receiving objects: 4% (100/2499) Receiving objects: 5% (125/2499) Receiving objects: 6% (150/2499) Receiving objects: 7% (175/2499) Receiving objects: 8% (200/2499) Receiving objects: 9% (225/2499) Receiving objects: 10% (250/2499) Receiving objects: 11% (275/2499) Receiving objects: 12% (300/2499) Receiving objects: 13% (325/2499) Receiving objects: 14% (350/2499) Receiving objects: 15% (375/2499) Receiving objects: 16% (400/2499) Receiving objects: 17% (425/2499) Receiving objects: 18% (450/2499) Receiving objects: 19% (475/2499) Receiving objects: 20% (500/2499) Receiving objects: 21% (525/2499) Receiving objects: 22% (550/2499) Receiving objects: 23% (575/2499) Receiving objects: 24% (600/2499) Receiving objects: 25% (625/2499) Receiving objects: 26% (650/2499) Receiving objects: 27% (675/2499) Receiving objects: 28% (700/2499) Receiving objects: 29% (725/2499) Receiving objects: 30% (750/2499) Receiving objects: 31% (775/2499) Receiving objects: 32% (800/2499) Receiving objects: 33% (825/2499) Receiving objects: 34% (850/2499) Receiving objects: 35% (875/2499) Receiving objects: 36% (900/2499) Receiving objects: 37% (925/2499) Receiving objects: 38% (950/2499) Receiving objects: 39% (975/2499) Receiving objects: 40% (1000/2499) Receiving objects: 41% (1025/2499) Receiving objects: 42% (1050/2499) Receiving objects: 43% (1075/2499) Receiving objects: 44% (1100/2499) Receiving objects: 45% (1125/2499) Receiving objects: 46% (1150/2499) Receiving objects: 47% (1175/2499) Receiving objects: 48% (1200/2499) Receiving objects: 49% (1225/2499) Receiving objects: 50% (1250/2499) Receiving objects: 51% (1275/2499) Receiving objects: 52% (1300/2499) Receiving objects: 53% (1325/2499) Receiving objects: 54% (1350/2499) Receiving objects: 55% (1375/2499) Receiving objects: 56% (1400/2499) Receiving objects: 57% (1425/2499) Receiving objects: 58% (1450/2499) Receiving objects: 59% (1475/2499) Receiving objects: 60% (1500/2499) Receiving objects: 61% (1525/2499) Receiving objects: 62% (1550/2499) Receiving objects: 63% (1575/2499) Receiving objects: 64% (1600/2499) Receiving objects: 65% (1625/2499) Receiving objects: 66% (1650/2499) Receiving objects: 67% (1675/2499) Receiving objects: 68% (1700/2499) Receiving objects: 69% (1725/2499) Receiving objects: 70% (1750/2499) Receiving objects: 71% (1775/2499) Receiving objects: 72% (1800/2499) Receiving objects: 73% (1825/2499) Receiving objects: 74% (1850/2499) Receiving objects: 75% (1875/2499) Receiving objects: 76% (1900/2499) Receiving objects: 77% (1925/2499) Receiving objects: 78% (1950/2499) Receiving objects: 79% (1975/2499) Receiving objects: 80% (2000/2499) Receiving objects: 81% (2025/2499) Receiving objects: 82% (2050/2499) Receiving objects: 83% (2075/2499) Receiving objects: 84% (2100/2499) Receiving objects: 85% (2125/2499) Receiving objects: 86% (2150/2499) Receiving objects: 87% (2175/2499) Receiving objects: 88% (2200/2499) Receiving objects: 89% (2225/2499) Receiving objects: 90% (2250/2499) Receiving objects: 91% (2275/2499) Receiving objects: 92% (2300/2499) Receiving objects: 93% (2325/2499) Receiving objects: 94% (2350/2499) Receiving objects: 95% (2375/2499) Receiving objects: 96% (2400/2499) remote: Total 2499 (delta 1360), reused 1209 (delta 1144), pack-reused 911 (from 3)_bk;t=1781335326585 +_bk;t=1781335326587Receiving objects: 97% (2425/2499) Receiving objects: 98% (2450/2499) Receiving objects: 99% (2475/2499) Receiving objects: 100% (2499/2499) Receiving objects: 100% (2499/2499), 1.57 MiB | 11.48 MiB/s, done. +_bk;t=1781335326587Resolving deltas: 0% (0/1525) Resolving deltas: 1% (16/1525) Resolving deltas: 2% (31/1525) Resolving deltas: 3% (46/1525) Resolving deltas: 4% (62/1525) Resolving deltas: 5% (77/1525) Resolving deltas: 6% (92/1525) Resolving deltas: 7% (107/1525) Resolving deltas: 8% (122/1525) Resolving deltas: 9% (138/1525) Resolving deltas: 10% (153/1525) Resolving deltas: 11% (169/1525) Resolving deltas: 12% (183/1525) Resolving deltas: 13% (199/1525) Resolving deltas: 14% (214/1525) Resolving deltas: 15% (229/1525) Resolving deltas: 16% (244/1525) Resolving deltas: 17% (260/1525) Resolving deltas: 18% (276/1525) Resolving deltas: 19% (290/1525) Resolving deltas: 20% (306/1525) Resolving deltas: 21% (323/1525) Resolving deltas: 22% (336/1525) Resolving deltas: 23% (351/1525) Resolving deltas: 24% (366/1525) Resolving deltas: 25% (382/1525) Resolving deltas: 26% (398/1525) Resolving deltas: 27% (413/1525) Resolving deltas: 28% (427/1525) Resolving deltas: 29% (445/1525) Resolving deltas: 30% (458/1525) Resolving deltas: 31% (473/1525) Resolving deltas: 32% (488/1525) Resolving deltas: 33% (504/1525) Resolving deltas: 34% (519/1525) Resolving deltas: 35% (534/1525) Resolving deltas: 36% (549/1525) Resolving deltas: 37% (565/1525) Resolving deltas: 38% (580/1525) Resolving deltas: 39% (595/1525) Resolving deltas: 40% (610/1525) Resolving deltas: 41% (626/1525) Resolving deltas: 42% (641/1525) Resolving deltas: 43% (656/1525) Resolving deltas: 44% (671/1525) Resolving deltas: 45% (687/1525) Resolving deltas: 46% (702/1525) Resolving deltas: 47% (717/1525) Resolving deltas: 48% (732/1525) Resolving deltas: 49% (748/1525) Resolving deltas: 50% (763/1525) Resolving deltas: 51% (778/1525) Resolving deltas: 52% (793/1525) Resolving deltas: 53% (809/1525) Resolving deltas: 54% (824/1525) Resolving deltas: 55% (839/1525) Resolving deltas: 56% (854/1525) Resolving deltas: 57% (870/1525) Resolving deltas: 58% (885/1525) Resolving deltas: 59% (900/1525) Resolving deltas: 60% (915/1525) Resolving deltas: 61% (931/1525) Resolving deltas: 62% (946/1525) Resolving deltas: 63% (961/1525) Resolving deltas: 64% (976/1525) Resolving deltas: 65% (992/1525) Resolving deltas: 66% (1007/1525) Resolving deltas: 67% (1022/1525) Resolving deltas: 68% (1037/1525) Resolving deltas: 69% (1053/1525) Resolving deltas: 70% (1068/1525) Resolving deltas: 71% (1083/1525) Resolving deltas: 72% (1098/1525) Resolving deltas: 73% (1114/1525) Resolving deltas: 74% (1129/1525) Resolving deltas: 75% (1144/1525) Resolving deltas: 76% (1159/1525) Resolving deltas: 77% (1175/1525) Resolving deltas: 78% (1190/1525) Resolving deltas: 79% (1205/1525) Resolving deltas: 80% (1220/1525) Resolving deltas: 81% (1236/1525) Resolving deltas: 82% (1251/1525) Resolving deltas: 83% (1266/1525) Resolving deltas: 84% (1281/1525) Resolving deltas: 85% (1297/1525) Resolving deltas: 86% (1312/1525) Resolving deltas: 87% (1327/1525) Resolving deltas: 88% (1342/1525) Resolving deltas: 89% (1358/1525) Resolving deltas: 90% (1373/1525) Resolving deltas: 91% (1388/1525) Resolving deltas: 92% (1403/1525) Resolving deltas: 93% (1419/1525) Resolving deltas: 94% (1434/1525) Resolving deltas: 95% (1449/1525) Resolving deltas: 96% (1464/1525) Resolving deltas: 97% (1480/1525) Resolving deltas: 98% (1495/1525) Resolving deltas: 99% (1510/1525) Resolving deltas: 100% (1525/1525) Resolving deltas: 100% (1525/1525), completed with 251 local objects. +_bk;t=1781335326735From https://github.com/bazel-contrib/rules_python +_bk;t=1781335326735 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335326737$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python +_bk;t=1781335326737$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335326738Cloning into '.'... +_bk;t=1781335326868POST git-upload-pack (175 bytes) +_bk;t=1781335326919POST git-upload-pack (gzip 2193 to 1014 bytes) +_bk;t=1781335326969remote: Enumerating objects: 2527, done._bk;t=1781335326969 +_bk;t=1781335326969remote: Counting objects: 0% (1/1589)_bk;t=1781335326969 remote: Counting objects: 1% (16/1589)_bk;t=1781335326969 remote: Counting objects: 2% (32/1589)_bk;t=1781335326969 remote: Counting objects: 3% (48/1589)_bk;t=1781335326969 remote: Counting objects: 4% (64/1589)_bk;t=1781335326969 remote: Counting objects: 5% (80/1589)_bk;t=1781335326969 remote: Counting objects: 6% (96/1589)_bk;t=1781335326969 remote: Counting objects: 7% (112/1589)_bk;t=1781335326969 remote: Counting objects: 8% (128/1589)_bk;t=1781335326969 remote: Counting objects: 9% (144/1589)_bk;t=1781335326969 remote: Counting objects: 10% (159/1589)_bk;t=1781335326969 remote: Counting objects: 11% (175/1589)_bk;t=1781335326969 remote: Counting objects: 12% (191/1589)_bk;t=1781335326969 remote: Counting objects: 13% (207/1589)_bk;t=1781335326969 remote: Counting objects: 14% (223/1589)_bk;t=1781335326969 remote: Counting objects: 15% (239/1589)_bk;t=1781335326969 remote: Counting objects: 16% (255/1589)_bk;t=1781335326969 remote: Counting objects: 17% (271/1589)_bk;t=1781335326969 remote: Counting objects: 18% (287/1589)_bk;t=1781335326969 remote: Counting objects: 19% (302/1589)_bk;t=1781335326969 remote: Counting objects: 20% (318/1589)_bk;t=1781335326969 remote: Counting objects: 21% (334/1589)_bk;t=1781335326969 remote: Counting objects: 22% (350/1589)_bk;t=1781335326969 remote: Counting objects: 23% (366/1589)_bk;t=1781335326969 remote: Counting objects: 24% (382/1589)_bk;t=1781335326969 remote: Counting objects: 25% (398/1589)_bk;t=1781335326969 remote: Counting objects: 26% (414/1589)_bk;t=1781335326969 remote: Counting objects: 27% (430/1589)_bk;t=1781335326969 remote: Counting objects: 28% (445/1589)_bk;t=1781335326969 remote: Counting objects: 29% (461/1589)_bk;t=1781335326969 remote: Counting objects: 30% (477/1589)_bk;t=1781335326969 remote: Counting objects: 31% (493/1589)_bk;t=1781335326969 remote: Counting objects: 32% (509/1589)_bk;t=1781335326969 remote: Counting objects: 33% (525/1589)_bk;t=1781335326969 remote: Counting objects: 34% (541/1589)_bk;t=1781335326969 remote: Counting objects: 35% (557/1589)_bk;t=1781335326969 remote: Counting objects: 36% (573/1589)_bk;t=1781335326969 remote: Counting objects: 37% (588/1589)_bk;t=1781335326969 remote: Counting objects: 38% (604/1589)_bk;t=1781335326969 remote: Counting objects: 39% (620/1589)_bk;t=1781335326969 remote: Counting objects: 40% (636/1589)_bk;t=1781335326969 remote: Counting objects: 41% (652/1589)_bk;t=1781335326969 remote: Counting objects: 42% (668/1589)_bk;t=1781335326969 remote: Counting objects: 43% (684/1589)_bk;t=1781335326969 remote: Counting objects: 44% (700/1589)_bk;t=1781335326969 remote: Counting objects: 45% (716/1589)_bk;t=1781335326969 remote: Counting objects: 46% (731/1589)_bk;t=1781335326969 remote: Counting objects: 47% (747/1589)_bk;t=1781335326969 remote: Counting objects: 48% (763/1589)_bk;t=1781335326969 remote: Counting objects: 49% (779/1589)_bk;t=1781335326969 remote: Counting objects: 50% (795/1589)_bk;t=1781335326969 remote: Counting objects: 51% (811/1589)_bk;t=1781335326969 remote: Counting objects: 52% (827/1589)_bk;t=1781335326969 remote: Counting objects: 53% (843/1589)_bk;t=1781335326969 remote: Counting objects: 54% (859/1589)_bk;t=1781335326969 remote: Counting objects: 55% (874/1589)_bk;t=1781335326969 remote: Counting objects: 56% (890/1589)_bk;t=1781335326969 remote: Counting objects: 57% (906/1589)_bk;t=1781335326969 remote: Counting objects: 58% (922/1589)_bk;t=1781335326969 remote: Counting objects: 59% (938/1589)_bk;t=1781335326969 remote: Counting objects: 60% (954/1589)_bk;t=1781335326969 remote: Counting objects: 61% (970/1589)_bk;t=1781335326969 remote: Counting objects: 62% (986/1589)_bk;t=1781335326969 remote: Counting objects: 63% (1002/1589)_bk;t=1781335326969 remote: Counting objects: 64% (1017/1589)_bk;t=1781335326969 remote: Counting objects: 65% (1033/1589)_bk;t=1781335326969 remote: Counting objects: 66% (1049/1589)_bk;t=1781335326969 remote: Counting objects: 67% (1065/1589)_bk;t=1781335326969 remote: Counting objects: 68% (1081/1589)_bk;t=1781335326969 remote: Counting objects: 69% (1097/1589)_bk;t=1781335326969 remote: Counting objects: 70% (1113/1589)_bk;t=1781335326969 remote: Counting objects: 71% (1129/1589)_bk;t=1781335326969 remote: Counting objects: 72% (1145/1589)_bk;t=1781335326969 remote: Counting objects: 73% (1160/1589)_bk;t=1781335326969 remote: Counting objects: 74% (1176/1589)_bk;t=1781335326969 remote: Counting objects: 75% (1192/1589)_bk;t=1781335326969 remote: Counting objects: 76% (1208/1589)_bk;t=1781335326969 remote: Counting objects: 77% (1224/1589)_bk;t=1781335326969 remote: Counting objects: 78% (1240/1589)_bk;t=1781335326969 remote: Counting objects: 79% (1256/1589)_bk;t=1781335326969 remote: Counting objects: 80% (1272/1589)_bk;t=1781335326969 remote: Counting objects: 81% (1288/1589)_bk;t=1781335326969 remote: Counting objects: 82% (1303/1589)_bk;t=1781335326969 remote: Counting objects: 83% (1319/1589)_bk;t=1781335326969 remote: Counting objects: 84% (1335/1589)_bk;t=1781335326969 remote: Counting objects: 85% (1351/1589)_bk;t=1781335326969 remote: Counting objects: 86% (1367/1589)_bk;t=1781335326969 remote: Counting objects: 87% (1383/1589)_bk;t=1781335326969 remote: Counting objects: 88% (1399/1589)_bk;t=1781335326969 remote: Counting objects: 89% (1415/1589)_bk;t=1781335326969 remote: Counting objects: 90% (1431/1589)_bk;t=1781335326969 remote: Counting objects: 91% (1446/1589)_bk;t=1781335326969 remote: Counting objects: 92% (1462/1589)_bk;t=1781335326969 remote: Counting objects: 93% (1478/1589)_bk;t=1781335326969 remote: Counting objects: 94% (1494/1589)_bk;t=1781335326969 remote: Counting objects: 95% (1510/1589)_bk;t=1781335326969 remote: Counting objects: 96% (1526/1589)_bk;t=1781335326969 remote: Counting objects: 97% (1542/1589)_bk;t=1781335326969 remote: Counting objects: 98% (1558/1589)_bk;t=1781335326969 remote: Counting objects: 99% (1574/1589)_bk;t=1781335326969 remote: Counting objects: 100% (1589/1589)_bk;t=1781335326969 remote: Counting objects: 100% (1589/1589), done._bk;t=1781335326969 +_bk;t=1781335326969remote: Compressing objects: 0% (1/375)_bk;t=1781335326969 remote: Compressing objects: 1% (4/375)_bk;t=1781335326969 remote: Compressing objects: 2% (8/375)_bk;t=1781335326969 remote: Compressing objects: 3% (12/375)_bk;t=1781335326969 remote: Compressing objects: 4% (15/375)_bk;t=1781335326969 remote: Compressing objects: 5% (19/375)_bk;t=1781335326969 remote: Compressing objects: 6% (23/375)_bk;t=1781335326969 remote: Compressing objects: 7% (27/375)_bk;t=1781335326969 remote: Compressing objects: 8% (30/375)_bk;t=1781335326969 remote: Compressing objects: 9% (34/375)_bk;t=1781335326969 remote: Compressing objects: 10% (38/375)_bk;t=1781335326969 remote: Compressing objects: 11% (42/375)_bk;t=1781335326969 remote: Compressing objects: 12% (45/375)_bk;t=1781335326969 remote: Compressing objects: 13% (49/375)_bk;t=1781335326969 remote: Compressing objects: 14% (53/375)_bk;t=1781335326969 remote: Compressing objects: 15% (57/375)_bk;t=1781335326969 remote: Compressing objects: 16% (60/375)_bk;t=1781335326969 remote: Compressing objects: 17% (64/375)_bk;t=1781335326969 remote: Compressing objects: 18% (68/375)_bk;t=1781335326969 remote: Compressing objects: 19% (72/375)_bk;t=1781335326969 remote: Compressing objects: 20% (75/375)_bk;t=1781335326969 remote: Compressing objects: 21% (79/375)_bk;t=1781335326969 remote: Compressing objects: 22% (83/375)_bk;t=1781335326969 remote: Compressing objects: 23% (87/375)_bk;t=1781335326969 remote: Compressing objects: 24% (90/375)_bk;t=1781335326969 remote: Compressing objects: 25% (94/375)_bk;t=1781335326969 remote: Compressing objects: 26% (98/375)_bk;t=1781335326969 remote: Compressing objects: 27% (102/375)_bk;t=1781335326969 remote: Compressing objects: 28% (105/375)_bk;t=1781335326969 remote: Compressing objects: 29% (109/375)_bk;t=1781335326969 remote: Compressing objects: 30% (113/375)_bk;t=1781335326969 remote: Compressing objects: 31% (117/375)_bk;t=1781335326969 remote: Compressing objects: 32% (120/375)_bk;t=1781335326969 remote: Compressing objects: 33% (124/375)_bk;t=1781335326969 remote: Compressing objects: 34% (128/375)_bk;t=1781335326969 remote: Compressing objects: 35% (132/375)_bk;t=1781335326969 remote: Compressing objects: 36% (135/375)_bk;t=1781335326969 remote: Compressing objects: 37% (139/375)_bk;t=1781335326970 remote: Compressing objects: 38% (143/375)_bk;t=1781335326970 remote: Compressing objects: 39% (147/375)_bk;t=1781335326970 remote: Compressing objects: 40% (150/375)_bk;t=1781335326970 remote: Compressing objects: 41% (154/375)_bk;t=1781335326970 remote: Compressing objects: 42% (158/375)_bk;t=1781335326970 remote: Compressing objects: 43% (162/375)_bk;t=1781335326970 remote: Compressing objects: 44% (165/375)_bk;t=1781335326970 remote: Compressing objects: 45% (169/375)_bk;t=1781335326970 remote: Compressing objects: 46% (173/375)_bk;t=1781335326981 remote: Compressing objects: 47% (177/375)_bk;t=1781335326981 remote: Compressing objects: 48% (180/375)_bk;t=1781335326981 remote: Compressing objects: 49% (184/375)_bk;t=1781335326981 remote: Compressing objects: 50% (188/375)_bk;t=1781335326981 remote: Compressing objects: 51% (192/375)_bk;t=1781335326981 remote: Compressing objects: 52% (195/375)_bk;t=1781335326981 remote: Compressing objects: 53% (199/375)_bk;t=1781335326981 remote: Compressing objects: 54% (203/375)_bk;t=1781335326981 remote: Compressing objects: 55% (207/375)_bk;t=1781335326981 remote: Compressing objects: 56% (210/375)_bk;t=1781335326981 remote: Compressing objects: 57% (214/375)_bk;t=1781335326981 remote: Compressing objects: 58% (218/375)_bk;t=1781335326981 remote: Compressing objects: 59% (222/375)_bk;t=1781335326981 remote: Compressing objects: 60% (225/375)_bk;t=1781335326981 remote: Compressing objects: 61% (229/375)_bk;t=1781335326981 remote: Compressing objects: 62% (233/375)_bk;t=1781335326981 remote: Compressing objects: 63% (237/375)_bk;t=1781335326981 remote: Compressing objects: 64% (240/375)_bk;t=1781335326981 remote: Compressing objects: 65% (244/375)_bk;t=1781335326981 remote: Compressing objects: 66% (248/375)_bk;t=1781335326981 remote: Compressing objects: 67% (252/375)_bk;t=1781335326981 remote: Compressing objects: 68% (255/375)_bk;t=1781335326981 remote: Compressing objects: 69% (259/375)_bk;t=1781335326981 remote: Compressing objects: 70% (263/375)_bk;t=1781335326981 remote: Compressing objects: 71% (267/375)_bk;t=1781335326981 remote: Compressing objects: 72% (270/375)_bk;t=1781335326981 remote: Compressing objects: 73% (274/375)_bk;t=1781335326981 remote: Compressing objects: 74% (278/375)_bk;t=1781335326981 remote: Compressing objects: 75% (282/375)_bk;t=1781335326981 remote: Compressing objects: 76% (285/375)_bk;t=1781335326981 remote: Compressing objects: 77% (289/375)_bk;t=1781335326981 remote: Compressing objects: 78% (293/375)_bk;t=1781335326981 remote: Compressing objects: 79% (297/375)_bk;t=1781335326981 remote: Compressing objects: 80% (300/375)_bk;t=1781335326981 remote: Compressing objects: 81% (304/375)_bk;t=1781335326981 remote: Compressing objects: 82% (308/375)_bk;t=1781335326981 remote: Compressing objects: 83% (312/375)_bk;t=1781335326981 remote: Compressing objects: 84% (315/375)_bk;t=1781335326981 remote: Compressing objects: 85% (319/375)_bk;t=1781335326981 remote: Compressing objects: 86% (323/375)_bk;t=1781335326981 remote: Compressing objects: 87% (327/375)_bk;t=1781335326981 remote: Compressing objects: 88% (330/375)_bk;t=1781335326981 remote: Compressing objects: 89% (334/375)_bk;t=1781335326981 remote: Compressing objects: 90% (338/375)_bk;t=1781335326981 remote: Compressing objects: 91% (342/375)_bk;t=1781335326981 remote: Compressing objects: 92% (345/375)_bk;t=1781335326981 remote: Compressing objects: 93% (349/375)_bk;t=1781335326981 remote: Compressing objects: 94% (353/375)_bk;t=1781335326981 remote: Compressing objects: 95% (357/375)_bk;t=1781335326981 remote: Compressing objects: 96% (360/375)_bk;t=1781335326981 remote: Compressing objects: 97% (364/375)_bk;t=1781335326981 remote: Compressing objects: 98% (368/375)_bk;t=1781335326981 remote: Compressing objects: 99% (372/375)_bk;t=1781335326981 remote: Compressing objects: 100% (375/375)_bk;t=1781335326981 remote: Compressing objects: 100% (375/375), done._bk;t=1781335326981 +_bk;t=1781335326994Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1413), reused 1218 (delta 1214), pack-reused 938 (from 3)_bk;t=1781335327112 +_bk;t=1781335327113Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.58 MiB | 13.16 MiB/s, done. +_bk;t=1781335327115Resolving deltas: 0% (0/1586) Resolving deltas: 1% (16/1586) Resolving deltas: 2% (32/1586) Resolving deltas: 3% (48/1586) Resolving deltas: 4% (64/1586) Resolving deltas: 5% (80/1586) Resolving deltas: 6% (96/1586) Resolving deltas: 7% (112/1586) Resolving deltas: 8% (127/1586) Resolving deltas: 9% (143/1586) Resolving deltas: 10% (159/1586) Resolving deltas: 11% (175/1586) Resolving deltas: 12% (191/1586) Resolving deltas: 13% (207/1586) Resolving deltas: 14% (223/1586) Resolving deltas: 15% (238/1586) Resolving deltas: 16% (254/1586) Resolving deltas: 17% (270/1586) Resolving deltas: 18% (286/1586) Resolving deltas: 19% (302/1586) Resolving deltas: 20% (318/1586) Resolving deltas: 21% (334/1586) Resolving deltas: 22% (349/1586) Resolving deltas: 23% (365/1586) Resolving deltas: 24% (381/1586) Resolving deltas: 25% (397/1586) Resolving deltas: 26% (413/1586) Resolving deltas: 27% (429/1586) Resolving deltas: 28% (445/1586) Resolving deltas: 29% (460/1586) Resolving deltas: 30% (476/1586) Resolving deltas: 31% (492/1586) Resolving deltas: 32% (508/1586) Resolving deltas: 33% (524/1586) Resolving deltas: 34% (540/1586) Resolving deltas: 35% (556/1586) Resolving deltas: 36% (571/1586) Resolving deltas: 37% (587/1586) Resolving deltas: 38% (603/1586) Resolving deltas: 39% (619/1586) Resolving deltas: 40% (635/1586) Resolving deltas: 41% (651/1586) Resolving deltas: 42% (667/1586) Resolving deltas: 43% (682/1586) Resolving deltas: 44% (698/1586) Resolving deltas: 45% (714/1586) Resolving deltas: 46% (730/1586) Resolving deltas: 47% (746/1586) Resolving deltas: 48% (762/1586) Resolving deltas: 49% (778/1586) Resolving deltas: 50% (793/1586) Resolving deltas: 51% (809/1586) Resolving deltas: 52% (825/1586) Resolving deltas: 53% (841/1586) Resolving deltas: 54% (857/1586) Resolving deltas: 55% (873/1586) Resolving deltas: 56% (889/1586) Resolving deltas: 57% (905/1586) Resolving deltas: 58% (920/1586) Resolving deltas: 59% (936/1586) Resolving deltas: 60% (952/1586) Resolving deltas: 61% (968/1586) Resolving deltas: 62% (984/1586) Resolving deltas: 63% (1000/1586) Resolving deltas: 64% (1016/1586) Resolving deltas: 65% (1031/1586) Resolving deltas: 66% (1047/1586) Resolving deltas: 67% (1063/1586) Resolving deltas: 68% (1079/1586) Resolving deltas: 69% (1095/1586) Resolving deltas: 70% (1111/1586) Resolving deltas: 71% (1127/1586) Resolving deltas: 72% (1142/1586) Resolving deltas: 73% (1158/1586) Resolving deltas: 74% (1174/1586) Resolving deltas: 75% (1190/1586) Resolving deltas: 76% (1206/1586) Resolving deltas: 77% (1222/1586) Resolving deltas: 78% (1238/1586) Resolving deltas: 79% (1253/1586) Resolving deltas: 80% (1269/1586) Resolving deltas: 81% (1285/1586) Resolving deltas: 82% (1301/1586) Resolving deltas: 83% (1317/1586) Resolving deltas: 84% (1333/1586) Resolving deltas: 85% (1349/1586) Resolving deltas: 86% (1364/1586) Resolving deltas: 87% (1380/1586) Resolving deltas: 88% (1396/1586) Resolving deltas: 89% (1412/1586) Resolving deltas: 90% (1428/1586) Resolving deltas: 91% (1444/1586) Resolving deltas: 92% (1460/1586) Resolving deltas: 93% (1475/1586) Resolving deltas: 94% (1491/1586) Resolving deltas: 95% (1507/1586) Resolving deltas: 96% (1523/1586) Resolving deltas: 97% (1539/1586) Resolving deltas: 98% (1555/1586) Resolving deltas: 99% (1571/1586) Resolving deltas: 100% (1586/1586) Resolving deltas: 100% (1586/1586), completed with 268 local objects. +_bk;t=1781335327392$ git clean -ffxdq +_bk;t=1781335327399# Fetch and checkout pull request head from GitHub +_bk;t=1781335327399$ git fetch -v --prune -- origin refs/pull/3812/head 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335327525POST git-upload-pack (395 bytes) +_bk;t=1781335327571From https://github.com/bazel-contrib/rules_python +_bk;t=1781335327571 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335327571 * branch 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -> FETCH_HEAD +_bk;t=1781335327577# FETCH_HEAD is now `92c48e57c6353feb0452ad82f7cfc2c744616fa4` +_bk;t=1781335327577$ git checkout -f 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335327641Note: switching to '92c48e57c6353feb0452ad82f7cfc2c744616fa4'. +_bk;t=1781335327641 +_bk;t=1781335327641You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335327641changes and commit them, and you can discard any commits you make in this +_bk;t=1781335327641state without impacting any branches by switching back to a branch. +_bk;t=1781335327641 +_bk;t=1781335327641If you want to create a new branch to retain commits you create, you may +_bk;t=1781335327641do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335327641 +_bk;t=1781335327641 git switch -c +_bk;t=1781335327641 +_bk;t=1781335327641Or undo this operation with: +_bk;t=1781335327641 +_bk;t=1781335327641 git switch - +_bk;t=1781335327641 +_bk;t=1781335327641Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335327641 +_bk;t=1781335327641HEAD is now at 92c48e57 feat(skills): Output swarm summary and job IDs in monitor_remote_ci +_bk;t=1781335327641# Cleaning again to catch any post-checkout changes +_bk;t=1781335327641$ git clean -ffxdq +_bk;t=1781335327648# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335327648# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335327648~~~ Running agent post-checkout hook +_bk;t=1781335327648$ /etc/buildkite-agent/hooks/post-checkout +_bk;t=1781335327679CHECKOUT_END_TIME: 1781335327665 +_bk;t=1781335327679CHECKOUT_DURATION_S: 1.504 +_bk;t=1781335327690Added: +_bk;t=1781335327690+ CHECKOUT_END_TIME +_bk;t=1781335327703Added: +_bk;t=1781335327703+ CHECKOUT_DURATION_S +_bk;t=1781335327718~~~ Running agent pre-command hook +_bk;t=1781335327718$ /etc/buildkite-agent/hooks/pre-command +_bk;t=1781335327747PREP_DURATION_S: 0.068 +_bk;t=1781335327759Added: +_bk;t=1781335327759+ PREP_DURATION_S +_bk;t=1781335327775~~~ Running plugin docker-buildkite-plugin command hook +_bk;t=1781335327775$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command +_bk;t=1781335327826--- :docker: Pulling gcr.io/bazel-public/ubuntu2204 +_bk;t=1781335327838Using default tag: latest +_bk;t=1781335329281latest: Pulling from bazel-public/ubuntu2204 +_bk;t=1781335329333Digest: sha256:3024b6fbc873688940dfe144c5f1a6cfe0c450bd287748c6f170db01e2459981 +_bk;t=1781335329333Status: Image is up to date for gcr.io/bazel-public/ubuntu2204:latest +_bk;t=1781335329334gcr.io/bazel-public/ubuntu2204:latest +_bk;t=1781335329350docker network host already exists +_bk;t=1781335329350--- :docker: Running command in gcr.io/bazel-public/ubuntu2204 +_bk;t=1781335329350$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_REPO --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --env BUILDKITE_JOB_ID --env BUILDKITE_COMMAND --env BUILDKITE_STEP_ID --env BUILDKITE_REBUILT_FROM_BUILD_ID --env CI --env BUILDKITE --env BUILDKITE_RETRY_COUNT --env BUILDKITE_SOURCE --env BUILDKITE_TAG --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_PULL_REQUEST --env BUILDKITE_PIPELINE_NAME --env BUILDKITE_COMMIT --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_BRANCH --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_STEP_KEY --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_PLUGINS --env BUILDKITE_BUILD_URL --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_TIMEOUT --env BUILDKITE_AGENT_NAME --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_ID --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_AGENT_ID --env BUILDKITE_PIPELINE_ID --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_MESSAGE --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_ORGANIZATION_SLUG --env BUILDKITE_LABEL --env BUILDKITE_COMPUTE_TYPE --network host --label com.buildkite.job-id=019ebfdb-dffb-4f9a-b540-dce4625e2d98 gcr.io/bazel-public/ubuntu2204 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py\npython3 bazelci.py runner --task=ubuntu_rolling' +_bk;t=1781335330290 +_bk;t=1781335330290 +_bk;t=1781335330290--- :bazel: Using Bazel version rolling +_bk;t=1781335330290 +_bk;t=1781335330290 +_bk;t=1781335330290bazel --version +_bk;t=17813353305432026/06/13 07:22:10 Downloading https://releases.bazel.build/10.0.0/rolling/10.0.0-pre.20260601.1/bazel-10.0.0-pre.20260601.1-linux-x86_64... +_bk;t=1781335330559 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 4 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 9 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 14 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 19 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 21 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 24 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 26 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 27 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 29 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 31 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 32 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 34 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 36 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 37 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 39 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 41 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 42 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 44 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (74%) Downloading: 46 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 47 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 49 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 50 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 52 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 54 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 55 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 57 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 59 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 60 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) +_bk;t=1781335331099bazel 10.0.0-pre.20260601.1 +_bk;t=1781335331101bazel info output_base +_bk;t=1781335331243Extracting Bazel installation... +_bk;t=1781335332539Starting local Bazel server (10.0.0-pre.20260601.1) and connecting to it... +_bk;t=1781335333916WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335333922WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335333922WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335333922WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335333922WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335333922WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335333922INFO: Invocation ID: a585cc88-3ea1-47d9-beae-ba23a70013d2 +_bk;t=1781335333967 +_bk;t=1781335333967 +_bk;t=1781335333967--- :information_source: Bazel Info +_bk;t=1781335333967 +_bk;t=1781335333967 +_bk;t=1781335333967bazel --nosystem_rc --nohome_rc version +_bk;t=1781335334166WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335334166WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335334166WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335334166WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335334166INFO: Invocation ID: 4fe99a9f-4c47-47f5-9078-9f78721f870c +_bk;t=1781335334171Bazelisk version: v1.28.1 +_bk;t=1781335334171Build label: 10.0.0-pre.20260601.1 +_bk;t=1781335334171Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer +_bk;t=1781335334171Build time: Thu Jun 11 17:11:25 2026 (1781197885) +_bk;t=1781335334171Build timestamp: 1781197885 +_bk;t=1781335334171Build timestamp as int: 1781197885 +_bk;t=1781335334171 +_bk;t=1781335334171bazel --nosystem_rc --nohome_rc info +_bk;t=1781335334363WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335334363WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335334363WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335334363WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335334363WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335334363WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335334363INFO: Invocation ID: fce045d9-eccb-4075-8977-cf30655c0d8d +_bk;t=1781335334487WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335335551WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335551WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335551WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335551WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336221bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335336222bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335336222bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335336222character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 +_bk;t=1781335336223command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log +_bk;t=1781335336223committed-heap-size: 117MB +_bk;t=1781335336224execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main +_bk;t=1781335336224gc-count: 14 +_bk;t=1781335336225gc-time: 47ms +_bk;t=1781335336225install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d +_bk;t=1781335336226java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d/embedded_tools/jdk +_bk;t=1781335336226java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335336227java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335336227local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335336228max-heap-size: 31658MB +_bk;t=1781335336228output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 +_bk;t=1781335336229output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out +_bk;t=1781335336229package_path: %workspace% +_bk;t=1781335336229release: release 10.0.0-pre.20260601.1 +_bk;t=1781335336231repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335336231server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-072212.45 +_bk;t=1781335336232server_pid: 45 +_bk;t=1781335336233used-heap-size: 91MB +_bk;t=1781335336233workspace: /workdir +_bk;t=1781335336249 +_bk;t=1781335336252 +_bk;t=1781335336252--- :information_source: Environment Variables +_bk;t=1781335336252 +_bk;t=1781335336252 +_bk;t=1781335336252BUILDKITE_PULL_REQUEST_LABELS=() +_bk;t=1781335336252BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) +_bk;t=1781335336252LANGUAGE=(C.UTF-8) +_bk;t=1781335336252BUILDKITE_ARTIFACT_PATHS=() +_bk;t=1781335336252BUILDKITE_TRIGGERED_FROM_BUILD_ID=() +_bk;t=1781335336252BUILDKITE_BUILD_CREATOR=(Richard Levasseur) +_bk;t=1781335336252CI=(true) +_bk;t=1781335336252HOSTNAME=(bk-docker-p2kk) +_bk;t=1781335336252BUILDKITE_GITHUB_ACTION=(synchronize) +_bk;t=1781335336252BUILDKITE_AGENT_ID=(019ebfce-538c-4036-b6c9-2025afeb657d) +_bk;t=1781335336252BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) +_bk;t=1781335336252BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) +_bk;t=1781335336252BUILDKITE_AGENT_META_DATA_QUEUE=(default) +_bk;t=1781335336252BUILDKITE_BUILD_ID=(019ebfdb-afc0-4350-be53-56e1e1dcf7df) +_bk;t=1781335336252HOME=(/var/lib/buildkite-agent) +_bk;t=1781335336252BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() +_bk;t=1781335336252BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335336252BUILDKITE_STEP_KEY=() +_bk;t=1781335336252BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) +_bk;t=1781335336252BUILDKITE=(true) +_bk;t=1781335336252BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) +_bk;t=1781335336252BUILDKITE_COMPUTE_TYPE=(self-hosted) +_bk;t=1781335336252BUILDKITE_BUILD_NUMBER=(15720) +_bk;t=1781335336252BUILDKITE_PIPELINE_PROVIDER=(github) +_bk;t=1781335336252BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() +_bk;t=1781335336252BUILDKITE_TAG=() +_bk;t=1781335336252BUILDKITE_AGENT_META_DATA_OS=(linux) +_bk;t=1781335336252BUILDKITE_JOB_ID=(019ebfdb-dffb-4f9a-b540-dce4625e2d98) +_bk;t=1781335336252BUILDKITE_COMMIT=(92c48e57c6353feb0452ad82f7cfc2c744616fa4) +_bk;t=1781335336252BUILDKITE_PULL_REQUEST=(3812) +_bk;t=1781335336252TERM=(xterm) +_bk;t=1781335336252BUILDKITE_PIPELINE_SLUG=(rules-python-python) +_bk;t=1781335336252BUILDKITE_COMMIT_RESOLVED=(true) +_bk;t=1781335336252BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) +_bk;t=1781335336252PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) +_bk;t=1781335336252PREP_DURATION_S=(0.068) +_bk;t=1781335336252CHECKOUT_DURATION_S=(1.504) +_bk;t=1781335336252BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) +_bk;t=1781335336252BUILDKITE_GITHUB_EVENT=(pull_request) +_bk;t=1781335336252BUILDKITE_SOURCE=(webhook) +_bk;t=1781335336252BUILDKITE_RETRY_COUNT=(0) +_bk;t=1781335336252BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) +_bk;t=1781335336252LANG=(C.UTF-8) +_bk;t=1781335336252BUILDKITE_REBUILT_FROM_BUILD_ID=() +_bk;t=1781335336252BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/ubuntu2204","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) +_bk;t=1781335336252BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98) +_bk;t=1781335336252DEBIAN_FRONTEND=(noninteractive) +_bk;t=1781335336252BUILDKITE_LABEL=(Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS) +_bk;t=1781335336252BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) +_bk;t=1781335336252BUILDKITE_PROJECT_PROVIDER=(github) +_bk;t=1781335336252BUILDKITE_ORGANIZATION_SLUG=(bazel) +_bk;t=1781335336252BUILDKITE_AGENT_META_DATA_KIND=(docker) +_bk;t=1781335336252BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() +_bk;t=1781335336252BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335336252BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py +_bk;t=1781335336252python3 bazelci.py runner --task=ubuntu_rolling) +_bk;t=1781335336252BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15720) +_bk;t=1781335336252BUILDKITE_TIMEOUT=(480) +_bk;t=1781335336252BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) +_bk;t=1781335336252BUILDKITE_STEP_ID=(019ebfdb-decb-45d9-8cdb-a5611b685fae) +_bk;t=1781335336252BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py +_bk;t=1781335336252python3 bazelci.py runner --task=ubuntu_rolling) +_bk;t=1781335336252BUILDKITE_PIPELINE_NAME=(rules_python :python:) +_bk;t=1781335336252LC_ALL=(C.UTF-8) +_bk;t=1781335336252JAVA_HOME=(/usr/lib/jvm/java-21-openjdk-amd64) +_bk;t=1781335336252PWD=(/workdir) +_bk;t=1781335336252ANDROID_HOME=(/opt/android-sdk-linux) +_bk;t=1781335336252BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) +_bk;t=1781335336252BUILDKITE_AGENT_NAME=(bk-docker-p2kk) +_bk;t=1781335336252BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) +_bk;t=1781335336252BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) +_bk;t=1781335336252ANDROID_NDK_HOME=(/opt/android-ndk-r15c) +_bk;t=1781335336252BAZELCI_TASK=(ubuntu_rolling) +_bk;t=1781335336252BAZELISK_USER_AGENT=(Bazelisk/BazelCI) +_bk;t=1781335336252USE_BAZEL_VERSION=(rolling) +_bk;t=1781335336252OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) +_bk;t=1781335336252 +_bk;t=1781335336252 +_bk;t=1781335336252--- :dart: Calculating targets +_bk;t=1781335336252 +_bk;t=1781335336252 +_bk;t=1781335336254curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmpdwhkjv8z/bazelci-agent +_bk;t=1781335336254 +_bk;t=1781335336254 +_bk;t=1781335336254--- :bazel: Computing flags for test step +_bk;t=1781335336254 +_bk;t=1781335336254 +_bk;t=1781335336254Adding to platform cache key: b'bazel' +_bk;t=1781335336254Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335336254Adding to platform cache key: b'ubuntu2204' +_bk;t=1781335336255 +_bk;t=1781335336255 +_bk;t=1781335336255+++ :bazel: Test (10.0.0-pre.20260601.1) +_bk;t=1781335336255 +_bk;t=1781335336255 +_bk;t=1781335336255bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmpdwhkjv8z/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --keep_going --test_tag_filters=-integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=USE_BAZEL_VERSION --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- //tests/... +_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335336588(07:22:16) WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335336588(07:22:16) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335336588(07:22:16) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335336588(07:22:16) INFO: Invocation ID: fbdda209-4c6d-46f6-bc64-b5077668d829 +_bk;t=1781335336588(07:22:16) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/fbdda209-4c6d-46f6-bc64-b5077668d829 +_bk;t=1781335336589(07:22:16) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks +_bk;t=1781335336589(07:22:16) INFO: Options provided by the client: +_bk;t=1781335336589 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: +_bk;t=1781335336589 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335336589 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335336589 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335336589 'test' options: --test_output=errors +_bk;t=1781335336589(07:22:16) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335336623(07:22:16) INFO: Current date is 2026-06-13 +_bk;t=1781335336623(07:22:16) +_bk;t=1781335336624 _bk;t=1781335336624(07:22:16) Computing main repo mapping: +_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336697(07:22:16) Computing main repo mapping: +_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336697(07:22:16) Computing main repo mapping: +_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336697(07:22:16) Computing main repo mapping: +_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336697(07:22:16) Computing main repo mapping: +_bk;t=1781335336768/tmp/tmpdwhkjv8z/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmpdwhkjv8z/test_bep.json +_bk;t=1781335337316 _bk;t=1781335337316(07:22:17) Loading: +_bk;t=1781335337333 _bk;t=1781335337333(07:22:17) Loading: 1 packages loaded +_bk;t=1781335340014 _bk;t=1781335340014(07:22:20) Analyzing: 590 targets (132 packages loaded, 0 targets configured) +_bk;t=1781335340028 _bk;t=1781335340028(07:22:20) Analyzing: 590 targets (132 packages loaded, 0 targets configured) +_bk;t=1781335340028 currently loading: @@platforms// +_bk;t=1781335340028 +_bk;t=1781335346601 _bk;t=1781335346601 _bk;t=1781335346601 _bk;t=1781335346601(07:22:26) Analyzing: 590 targets (214 packages loaded, 461,557 targets configured) +_bk;t=1781335346601 currently loading: tools/launcher +_bk;t=1781335346601 +_bk;t=1781335351629 _bk;t=1781335351629 _bk;t=1781335351629 _bk;t=1781335351629(07:22:31) Analyzing: 590 targets (309 packages loaded, 527,413 targets configured, 3 aspect applications) +_bk;t=1781335351629 Fetching repository @@+python+python_3_12_4_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_10_4_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_12_13_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_12_0_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_13_9_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335351629 Fetching repository @@+python+python_3_11_6_x86_64-unknown-linux-gnu; starting 4s ... (39 fetches) +_bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635(07:22:36) Analyzing: 590 targets (408 packages loaded, 663,166 targets configured, 3 aspect applications) +_bk;t=1781335356635 currently loading: @@+pip+rules_python_publish_deps_311_keyring_py3_none_any_552a3f7a// ... (2 packages) +_bk;t=1781335356635 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335356635 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335356635 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335356635 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335356635 Fetching ...ython+python_3_14_1_x86_64-unknown-linux-gnu; Extracting cpython-3.14.1_20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +_bk;t=1781335356635 Fetching repository @@+python+python_3_11_7_x86_64-unknown-linux-gnu; starting +_bk;t=1781335356635 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting +_bk;t=1781335356635 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting ... (42 fetches) +_bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335359056value of: string +_bk;t=1781335359056expected: 3.10.20 +_bk;t=1781335359056actual: 3.11.15 +_bk;t=1781335359056 +_bk;t=1781335359056(07:22:39) Analyzing: 590 targets (458 packages loaded, 760,511 targets configured, 97 aspect applications) +_bk;t=1781335359056[53 / 121] checking cached actions +_bk;t=1781335359056 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359056 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359056 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359056 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359056 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359056 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359056 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359056 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335359076value of: string +_bk;t=1781335359076expected: 3.12.13 +_bk;t=1781335359076actual: 3.11.15 +_bk;t=1781335359076 +_bk;t=1781335359076(07:22:39) Analyzing: 590 targets (458 packages loaded, 760,875 targets configured, 99 aspect applications) +_bk;t=1781335359076[60 / 133] 6 actions, 3 running +_bk;t=1781335359076 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local +_bk;t=1781335359076 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local +_bk;t=1781335359076 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local +_bk;t=1781335359076 [Prepa] Writing repo mapping manifest for //tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename +_bk;t=1781335359076 [Prepa] Writing script tests/get_release_info/test_file_url.sh +_bk;t=1781335359076 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359076 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359076 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359076 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359076 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359076 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359076 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359076 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335359084value of: string +_bk;t=1781335359084expected: 3.13.13 +_bk;t=1781335359084actual: 3.11.15 +_bk;t=1781335359084 +_bk;t=1781335359084(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,304 targets configured, 102 aspect applications) +_bk;t=1781335359084[66 / 147] 5 actions, 4 running +_bk;t=1781335359084 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local +_bk;t=1781335359084 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local +_bk;t=1781335359084 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local +_bk;t=1781335359084 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local +_bk;t=1781335359084 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh +_bk;t=1781335359084 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359084 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359084 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359084 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359084 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359084 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359084 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359084 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335359085value of: string +_bk;t=1781335359085expected: 3.14.4 +_bk;t=1781335359085actual: 3.11.15 +_bk;t=1781335359085 +_bk;t=1781335359085(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,336 targets configured, 102 aspect applications) +_bk;t=1781335359085[66 / 150] 5 actions, 4 running +_bk;t=1781335359085 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local +_bk;t=1781335359085 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local +_bk;t=1781335359085 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local +_bk;t=1781335359085 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local +_bk;t=1781335359085 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh +_bk;t=1781335359085 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359085 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359085 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359085 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335359085 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359085 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359085 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359085 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335359088value of: string +_bk;t=1781335359088expected: 3.15.0a8 +_bk;t=1781335359088actual: 3.11.15 +_bk;t=1781335359088 +_bk;t=1781335359088(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,368 targets configured, 102 aspect applications) +_bk;t=1781335359088[66 / 154] 5 actions, 4 running +_bk;t=1781335359088 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local +_bk;t=1781335359088 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local +_bk;t=1781335359088 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local +_bk;t=1781335359088 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local +_bk;t=1781335359088 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh +_bk;t=1781335359088 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359088 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359088 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359088 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335359088 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359088 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359088 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359088 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335359094value of: string +_bk;t=1781335359094expected: 3.9.25 +_bk;t=1781335359094actual: 3.11.15 +_bk;t=1781335359094 +_bk;t=1781335359094(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,487 targets configured, 102 aspect applications) +_bk;t=1781335359094[66 / 156] 7 actions, 4 running +_bk;t=1781335359094 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local +_bk;t=1781335359094 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local +_bk;t=1781335359094 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local +_bk;t=1781335359094 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local +_bk;t=1781335359094 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh +_bk;t=1781335359094 [Prepa] Writing script tests/envsubst/test_envsubst_nested_braces_inner_var.sh +_bk;t=1781335359094 [Prepa] Writing script tests/py_runtime/test_interpreter_binary_with_single_output_and_runfiles.sh +_bk;t=1781335359094 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359094 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359094 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359094 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335359094 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359094 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359094 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359094 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178(07:22:39) DEBUG: /workdir/python/private/repo_utils.bzl:101:16: +_bk;t=1781335359178rules_python:unit-test WARNING: Could not find a whl or an sdist with sha256=deadbeef +_bk;t=1781335359178(07:22:39) Analyzing: 590 targets (458 packages loaded, 762,919 targets configured, 108 aspect applications) +_bk;t=1781335359178[86 / 194] checking cached actions +_bk;t=1781335359178 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359178 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359178 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s +_bk;t=1781335359178 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335359178 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335359179 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359179 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335359179 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) +_bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215(07:22:42) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335362215====================================================================== +_bk;t=1781335362215WARNING: Target: @@//tests/bootstrap_impls:_run_binary_bootstrap_script_zip_yes_test_bin +_bk;t=1781335362215 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335362215 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335362215 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335362215 instructions and guide, see: +_bk;t=1781335362215 +_bk;t=1781335362215 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335362215====================================================================== +_bk;t=1781335362215(07:22:42) Analyzing: 590 targets (503 packages loaded, 795,690 targets configured, 133 aspect applications) +_bk;t=1781335362215 currently loading: @@+pip+dev_pip_314_sphinxcontrib_devhelp_py3_none_any_aefb8b83// +_bk;t=1781335362215[1,918 / 2,809] 2 actions running +_bk;t=1781335362215 //tests/venv_site_packages_libs:whl_scripts_runnable_test; 0s local +_bk;t=1781335362215 Creating source manifest for //tests/pypi/select_whl:test_select_cp312; 0s local +_bk;t=1781335362215 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335362215 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335362215 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335362215 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362215 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362215 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362215 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362215 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 8s ... (30 fetches) +_bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251(07:22:42) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335362251====================================================================== +_bk;t=1781335362251WARNING: Target: @@//tests/bootstrap_impls:_run_binary_zip_yes_test_bin +_bk;t=1781335362251 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335362251 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335362251 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335362251 instructions and guide, see: +_bk;t=1781335362251 +_bk;t=1781335362251 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335362251====================================================================== +_bk;t=1781335362251(07:22:42) Analyzing: 590 targets (504 packages loaded, 796,375 targets configured, 133 aspect applications) +_bk;t=1781335362251 currently loading: @@+pip+dev_pip_314_sphinxcontrib_devhelp_py3_none_any_aefb8b83// +_bk;t=1781335362251[1,952 / 2,818] //tests/venv_site_packages_libs:whl_scripts_runnable_test; 0s local +_bk;t=1781335362251 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335362251 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335362251 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335362251 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362251 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362251 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362251 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335362251 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 8s ... (30 fetches) +_bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335363431value of: string +_bk;t=1781335363431expected: 3.10.20 +_bk;t=1781335363431actual: 3.11.15 +_bk;t=1781335363431 +_bk;t=1781335363431(07:22:43) Analyzing: 590 targets (513 packages loaded, 833,139 targets configured, 140 aspect applications) +_bk;t=1781335363431[2,518 / 3,401] 21 actions, 19 running +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 0s local +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 0s local +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local +_bk;t=1781335363431 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local +_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... +_bk;t=1781335363431 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335363431 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363431 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363431 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363431 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363431 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363431 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363431 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) +_bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335363435value of: string +_bk;t=1781335363435expected: 3.12.13 +_bk;t=1781335363435actual: 3.11.15 +_bk;t=1781335363435 +_bk;t=1781335363435(07:22:43) Analyzing: 590 targets (513 packages loaded, 833,728 targets configured, 140 aspect applications) +_bk;t=1781335363435[2,518 / 3,401] 21 actions, 19 running +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 0s local +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local +_bk;t=1781335363435 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local +_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... +_bk;t=1781335363435 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335363435 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363435 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363435 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363435 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363435 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363435 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363435 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) +_bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335363445value of: string +_bk;t=1781335363445expected: 3.13.13 +_bk;t=1781335363445actual: 3.11.15 +_bk;t=1781335363445 +_bk;t=1781335363445(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,576 targets configured, 140 aspect applications) +_bk;t=1781335363445[2,518 / 3,403] 22 actions, 19 running +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local +_bk;t=1781335363445 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local +_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... +_bk;t=1781335363445 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335363445 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363445 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363445 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363446 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) +_bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335363447value of: string +_bk;t=1781335363447expected: 3.14.4 +_bk;t=1781335363447actual: 3.11.15 +_bk;t=1781335363447 +_bk;t=1781335363447(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,643 targets configured, 140 aspect applications) +_bk;t=1781335363447[2,518 / 3,403] 22 actions, 19 running +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local +_bk;t=1781335363447 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... +_bk;t=1781335363447 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335363447 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) +_bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335363447value of: string +_bk;t=1781335363447expected: 3.15.0a8 +_bk;t=1781335363447actual: 3.11.15 +_bk;t=1781335363447 +_bk;t=1781335363447(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,701 targets configured, 140 aspect applications) +_bk;t=1781335363447[2,518 / 3,403] 22 actions, 19 running +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local +_bk;t=1781335363447 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... +_bk;t=1781335363447 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335363447 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) +_bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335363447value of: string +_bk;t=1781335363447expected: 3.9.25 +_bk;t=1781335363447actual: 3.11.15 +_bk;t=1781335363447 +_bk;t=1781335363447(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,808 targets configured, 140 aspect applications) +_bk;t=1781335363447[2,518 / 3,403] 22 actions, 19 running +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local +_bk;t=1781335363447 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local +_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... +_bk;t=1781335363447 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335363447 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335363447 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) +_bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825(07:22:46) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335366825====================================================================== +_bk;t=1781335366825WARNING: Target: @@//tests/base_rules/py_binary:test_basic_zip_subject +_bk;t=1781335366825 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335366825 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335366825 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335366825 instructions and guide, see: +_bk;t=1781335366825 +_bk;t=1781335366825 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335366825====================================================================== +_bk;t=1781335366825(07:22:46) Analyzing: 590 targets (583 packages loaded, 1,062,304 targets configured, 149 aspect applications) +_bk;t=1781335366825[2,971 / 3,663] 22 / 522 tests; 30 actions, 23 running; last test: //tests/pypi/python_tag:test_without_version +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_inputs.test.runfiles; 3s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 3s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/sys_executable_inherits_sys_path.runfiles; 2s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-3271d464a94a/bin/tests/toolchains/python_3.14.3_test.runfiles; 2s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_find_runfiles_test.runfiles; 2s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-0d25393956b6/bin/tests/toolchains/python_3.11.5_test.runfiles; 2s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-aae3369793a7/bin/tests/toolchains/python_3.11.3_test.runfiles; 1s local +_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/main_module_test.runfiles; 1s local ... +_bk;t=1781335366825 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335366825 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335366825 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335366825 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335366825 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335366825 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 12s +_bk;t=1781335366825 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 12s +_bk;t=1781335366825 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 12s ... (39 fetches) +_bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639(07:22:49) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log) +_bk;t=1781335369639(07:22:49) Analyzing: 590 targets (587 packages loaded, 1,081,983 targets configured, 153 aspect applications) +_bk;t=1781335369639[3,081 / 3,736] 59 / 523 tests; 28 actions, 23 running; last test: //tests/pypi/pep508:test_env_defaults +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/main_module_test.runfiles; 4s local +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/bootstrap_script_zipapp_test.runfiles; 4s local +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-10b3c6159941/bin/tests/toolchains/custom_platform_toolchain_test.runfiles; 4s local +_bk;t=1781335369639 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/interpreter_args_test.runfiles; 3s local +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 3s local +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 3s local +_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 3s local ... +_bk;t=1781335369639 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335369639 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335369639 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335369639 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335369639 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335369639 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335369639 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335369639 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 14s ... (44 fetches) +_bk;t=1781335369855buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log +_bk;t=17813353698802026-06-13 07:22:49 INFO  Found 1 files that match "tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log" +_bk;t=17813353698822026-06-13 07:22:49 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration +_bk;t=17813353698822026-06-13 07:22:49 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353699932026-06-13 07:22:49 INFO  Uploading 019ebfdc-a8ea-41c1-a702-92acfe2d2d53 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log (1.0 KiB) +_bk;t=17813353702722026-06-13 07:22:50 INFO  Artifact uploads completed successfully +_bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438(07:22:50) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log) +_bk;t=1781335370438(07:22:50) Analyzing: 590 targets (589 packages loaded, 1,083,879 targets configured, 153 aspect applications) +_bk;t=1781335370438 currently loading: @@+python+python_3_13_11_x86_64-unknown-linux-gnu// +_bk;t=1781335370438[3,113 / 3,761] 69 / 523 tests; 27 actions, 21 running; last test: //tests/builders:test_string_dict +_bk;t=1781335370438 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/interpreter_args_test.runfiles; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local +_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local ... +_bk;t=1781335370438 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335370438 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335370438 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335370438 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335370438 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335370438 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335370438 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335370438 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (46 fetches) +_bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128(07:22:51) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log) +_bk;t=1781335371128(07:22:51) Analyzing: 590 targets (590 packages loaded, 1,085,752 targets configured, 153 aspect applications) +_bk;t=1781335371128[3,150 / 3,790] 79 / 525 tests; 30 actions, 23 running; last test: //tests/base_rules/py_test:test_py_info_propagation +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 5s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 5s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 5s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/uv/lock/requirements_run_tests.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 4s local ... +_bk;t=1781335371128 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 18s +_bk;t=1781335371128 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371128 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371128 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371128 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371128 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371128 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371128 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (44 fetches) +_bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 +_bk;t=1781335371128FAILED: //tests/toolchains/transitions:test_minor_versions (Summary) +_bk;t=1781335371128 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log +_bk;t=1781335371128 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log +_bk;t=1781335371128 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log +_bk;t=1781335371128(07:22:51) Analyzing: 590 targets (590 packages loaded, 1,085,752 targets configured, 153 aspect applications) +_bk;t=1781335371128[3,150 / 3,790] 81 / 525 tests, 1 failed; 30 actions, 23 running; last test: //tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 5s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 5s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 5s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/uv/lock/requirements_run_tests.runfiles; 4s local +_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 4s local ... +_bk;t=1781335371128 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 18s +_bk;t=1781335371128 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371128 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371130 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371130 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371130 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371130 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371130 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (44 fetches) +_bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137(07:22:51) INFO: From Testing //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335371137==================== Test output for //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.10.20 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.12.13 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.13.13 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.14.4 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.15.0a8 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.9.25 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137================================================================================ +_bk;t=1781335371137==================== Test output for //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.10.20 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.12.13 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.13.13 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.14.4 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.15.0a8 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.9.25 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137================================================================================ +_bk;t=1781335371137==================== Test output for //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.10.20 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.12.13 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.13.13 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.14.4 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.15.0a8 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137value of: string +_bk;t=1781335371137expected: 3.9.25 +_bk;t=1781335371137actual: 3.11.15 +_bk;t=1781335371137 +_bk;t=1781335371137 +_bk;t=1781335371137================================================================================ +_bk;t=1781335371137(07:22:51) Analyzing: 590 targets (590 packages loaded, 1,085,752 targets configured, 153 aspect applications) +_bk;t=1781335371137[3,152 / 3,790] 81 / 525 tests, 1 failed; 30 actions, 23 running; last test: //tests/toolchains/transitions:test_minor_versions +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 5s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 5s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 5s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/uv/lock/requirements_run_tests.runfiles; 4s local +_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 4s local ... +_bk;t=1781335371137 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 18s +_bk;t=1781335371137 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371137 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371137 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335371137 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371137 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371137 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335371137 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (44 fetches) +_bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276(07:22:55) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335375276====================================================================== +_bk;t=1781335375276WARNING: Target: @@//tests/base_rules/py_test:test_basic_zip_subject +_bk;t=1781335375276 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335375276 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335375276 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335375276 instructions and guide, see: +_bk;t=1781335375276 +_bk;t=1781335375276 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335375276====================================================================== +_bk;t=1781335375276(07:22:55) Analyzing: 590 targets (605 packages loaded, 1,127,934 targets configured, 158 aspect applications) +_bk;t=1781335375276[3,246 / 3,837] 122 / 545 tests, 1 failed; 30 actions, 23 running; last test: //tests/pypi/integration:all_requirements_build_test +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 9s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/uv/toolchain/uv_help_test.runfiles; 6s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_requirements_in.test.runfiles; 5s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild-ST-b260b98f1953/bin/tests/toolchains/python_3.11.9_test.runfiles; 4s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-opt-exec/bin/python/private/py_console_script_gen_py.runfiles [for tool]; 4s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_pyproject_toml.test.runfiles; 4s local +_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/a/b/c/nested_dir_test.runfiles; 4s local ... +_bk;t=1781335375276 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 20s +_bk;t=1781335375276 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 19s +_bk;t=1781335375276 Fetching repository @@+python+python_3_13_6_x86_64-unknown-linux-gnu; starting 19s +_bk;t=1781335375276 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 16s +_bk;t=1781335375276 Fetching ...nown-linux-gnu-freethreaded; Extracting cpython-3.14.4_20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 15s +_bk;t=1781335375276 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 10s +_bk;t=1781335375276 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 10s +_bk;t=1781335375276 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 10s ... (52 fetches) +_bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123(07:22:57) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335377123value of: string +_bk;t=1781335377123expected: /mac/python3.12 +_bk;t=1781335377123actual: /linux/python3.12 +_bk;t=1781335377123 +_bk;t=1781335377123(07:22:57) Analyzing: 590 targets (610 packages loaded, 1,157,815 targets configured, 167 aspect applications) +_bk;t=1781335377123[3,318 / 3,898] 138 / 554 tests, 1 failed; 30 actions, 23 running; last test: //tests/pypi/render_pkg_aliases:test_empty +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 10s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_requirements_in.test.runfiles; 7s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-opt-exec/bin/python/private/py_console_script_gen_py.runfiles [for tool]; 6s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_pyproject_toml.test.runfiles; 6s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild-ST-b5065571892e/bin/tests/toolchains/python_3.10.15_test.runfiles; 5s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/venv_site_packages_libs/py_binary_other_module_test.runfiles; 4s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild-ST-02349822b801/bin/tests/runfiles/runfiles_min_python_test.runfiles; 4s local +_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 4s local ... +_bk;t=1781335377123 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335377123 Fetching ...nown-linux-gnu-freethreaded; Extracting cpython-3.14.4_20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 16s +_bk;t=1781335377123 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 12s +_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 12s +_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 12s +_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 12s +_bk;t=1781335377123 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 11s +_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 11s ... (51 fetches) +_bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130(07:23:02) Analyzing: 590 targets (610 packages loaded, 1,157,816 targets configured, 167 aspect applications) +_bk;t=1781335382130[3,695 / 4,175] 239 / 557 tests, 1 failed; 24 actions, 16 running; last test: //tests/builders:test_fruit_rule +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-2b3caf6f0eeb/bin/tests/multi_pypi/pypi_alpha/pypi_alpha_test.runfiles; 4s local +_bk;t=1781335382130 //tests/venv_site_packages_libs:venvs_site_packages_libs_test; 4s local +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 3s local +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-94a285a69336/bin/tests/toolchains/python_3.13.6_test.runfiles; 2s local +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-f4eb966a3244/bin/tests/toolchains/python_3.13.10_test.runfiles; 2s local +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 2s local +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-17e7cbfb1f72/bin/tests/toolchains/python_3.13.11_test.runfiles; 2s local +_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 1s local ... +_bk;t=1781335382130 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335382130 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 17s +_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 17s +_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 17s +_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 17s +_bk;t=1781335382130 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 16s +_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 16s +_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 16s ... (47 fetches) +_bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969(07:23:02) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log) +_bk;t=1781335382969(07:23:02) Analyzing: 590 targets (611 packages loaded, 1,159,817 targets configured, 168 aspect applications) +_bk;t=1781335382969[3,752 / 4,203] 265 / 558 tests, 1 failed; 26 actions, 18 running; last test: //tests/pypi/env_marker_setting:test_custom_env_markers +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 4s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-17e7cbfb1f72/bin/tests/toolchains/python_3.13.11_test.runfiles; 2s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 2s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-051e7bd7bd61/bin/tests/toolchains/python_3.13.4_test.runfiles; 2s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 2s local +_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 1s local ... +_bk;t=1781335382969 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335382969 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 18s +_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 17s +_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 17s +_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 17s +_bk;t=1781335382969 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 17s +_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 17s +_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 17s ... (44 fetches) +_bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292(07:23:03) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log) +_bk;t=1781335383292(07:23:03) Analyzing: 590 targets (611 packages loaded, 1,159,817 targets configured, 168 aspect applications) +_bk;t=1781335383292 currently loading: @@+python+python_3_15_0a8_x86_64-apple-darwin// +_bk;t=1781335383292[3,782 / 4,220] 278 / 558 tests, 1 failed; 24 actions, 18 running; last test: .../py_binary:test_main_module_bootstrap_system_python +_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local +_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 2s local +_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild-ST-051e7bd7bd61/bin/tests/toolchains/python_3.13.4_test.runfiles; 2s local +_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local +_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 2s local +_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local +_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 1s local +_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 1s local ... +_bk;t=1781335383293 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335383293 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 18s +_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383293 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 17s +_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 17s ... (43 fetches) +_bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361(07:23:03) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log) +_bk;t=1781335383361(07:23:03) Analyzing: 590 targets (611 packages loaded, 1,159,817 targets configured, 168 aspect applications) +_bk;t=1781335383361 currently loading: @@+python+python_3_15_0a8_x86_64-apple-darwin// +_bk;t=1781335383361[3,785 / 4,220] 279 / 558 tests, 1 failed; 24 actions, 18 running; last test: //tests/cc/current_py_cc_headers:test_current_toolchain_headers +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 3s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-051e7bd7bd61/bin/tests/toolchains/python_3.13.4_test.runfiles; 3s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 2s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 1s local +_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 1s local ... +_bk;t=1781335383361 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335383361 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 18s +_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383362 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 17s +_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 17s ... (43 fetches) +_bk;t=1781335383796buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log +_bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799(07:23:03) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log) +_bk;t=1781335383799(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335383799[3,806 / 4,229] 289 / 560 tests, 1 failed; 28 actions, 18 running; last test: //tests/pypi/pep508:tokenize_tests +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... +_bk;t=1781335383799 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799(07:23:03) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log) +_bk;t=1781335383799(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335383799[3,806 / 4,229] 289 / 560 tests, 1 failed; 28 actions, 18 running; last test: //tests/pypi/pep508:tokenize_tests +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local +_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... +_bk;t=1781335383799 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 +_bk;t=1781335383799FAILED: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Summary) +_bk;t=1781335383799 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log +_bk;t=1781335383799 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log +_bk;t=1781335383799 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log +_bk;t=1781335383800(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335383800[3,806 / 4,229] 290 / 560 tests, 2 failed; 28 actions, 18 running; last test: ...c_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... +_bk;t=1781335383800 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800(07:23:03) INFO: From Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335383800==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335383800In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335383800value of: string +_bk;t=1781335383800expected: /mac/python3.12 +_bk;t=1781335383800actual: /linux/python3.12 +_bk;t=1781335383800 +_bk;t=1781335383800 +_bk;t=1781335383800================================================================================ +_bk;t=1781335383800==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335383800In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335383800value of: string +_bk;t=1781335383800expected: /mac/python3.12 +_bk;t=1781335383800actual: /linux/python3.12 +_bk;t=1781335383800 +_bk;t=1781335383800 +_bk;t=1781335383800================================================================================ +_bk;t=1781335383800==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335383800In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335383800value of: string +_bk;t=1781335383800expected: /mac/python3.12 +_bk;t=1781335383800actual: /linux/python3.12 +_bk;t=1781335383800 +_bk;t=1781335383800 +_bk;t=1781335383800================================================================================ +_bk;t=1781335383800(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335383800[3,806 / 4,229] 290 / 560 tests, 2 failed; 28 actions, 18 running; last test: ...c_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local +_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... +_bk;t=1781335383800 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=17813353838112026-06-13 07:23:03 INFO  Found 1 files that match "tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log" +_bk;t=17813353838122026-06-13 07:23:03 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration +_bk;t=17813353838122026-06-13 07:23:03 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353839112026-06-13 07:23:03 INFO  Uploading 019ebfdc-df48-4765-8f70-170b5556bd85 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log (423 B) +_bk;t=17813353841182026-06-13 07:23:04 INFO  Artifact uploads completed successfully +_bk;t=1781335384169buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log +_bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172(07:23:04) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log) +_bk;t=1781335384172(07:23:04) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335384172[3,864 / 4,259] 310 / 560 tests, 2 failed; 29 actions, 19 running; last test: //tests/python:test_ignore_unsupported_versions +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 2s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 2s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-51aeab549327/bin/tests/toolchains/python_3.12.11_test.runfiles; 2s local +_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 1s local ... +_bk;t=1781335384172 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335384172 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335384172 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 +_bk;t=1781335384173FAILED: //tests/toolchains/transitions:test_full_version (Summary) +_bk;t=1781335384173 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log +_bk;t=1781335384173 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log +_bk;t=1781335384173 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log +_bk;t=1781335384173(07:23:04) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335384173[3,865 / 4,259] 311 / 560 tests, 3 failed; 28 actions, 20 running; last test: //tests/toolchains/transitions:test_full_version +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 2s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 2s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-51aeab549327/bin/tests/toolchains/python_3.12.11_test.runfiles; 2s local +_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 1s local ... +_bk;t=1781335384174 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174(07:23:04) INFO: From Testing //tests/toolchains/transitions:test_full_version: +_bk;t=1781335384174==================== Test output for //tests/toolchains/transitions:test_full_version: +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.10.20 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.12.13 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.13.13 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.14.4 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.15.0a8 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.9.25 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174================================================================================ +_bk;t=1781335384174==================== Test output for //tests/toolchains/transitions:test_full_version: +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.10.20 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.12.13 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.13.13 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.14.4 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.15.0a8 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.9.25 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174================================================================================ +_bk;t=1781335384174==================== Test output for //tests/toolchains/transitions:test_full_version: +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.10.20 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.12.13 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.13.13 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.14.4 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.15.0a8 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335384174value of: string +_bk;t=1781335384174expected: 3.9.25 +_bk;t=1781335384174actual: 3.11.15 +_bk;t=1781335384174 +_bk;t=1781335384174 +_bk;t=1781335384174================================================================================ +_bk;t=1781335384174(07:23:04) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) +_bk;t=1781335384174[3,867 / 4,259] 311 / 560 tests, 3 failed; 28 actions, 19 running; last test: //tests/toolchains/transitions:test_full_version +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 2s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 2s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-51aeab549327/bin/tests/toolchains/python_3.12.11_test.runfiles; 2s local +_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 1s local ... +_bk;t=1781335384174 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s +_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) +_bk;t=17813353842002026-06-13 07:23:04 INFO  Found 1 files that match "tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log" +_bk;t=17813353842012026-06-13 07:23:04 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration +_bk;t=17813353842012026-06-13 07:23:04 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353843102026-06-13 07:23:04 INFO  Uploading 019ebfdc-e0ce-4e9d-ac7e-0eef79d7041a tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log (1.0 KiB) +_bk;t=17813353845182026-06-13 07:23:04 INFO  Artifact uploads completed successfully +_bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218(07:23:09) Analyzing: 590 targets (618 packages loaded, 1,169,910 targets configured, 172 aspect applications) +_bk;t=1781335389218[4,311 / 4,593] 444 / 563 tests, 3 failed; 30 actions, 25 running; last test: //tests/pypi/parse_whl_name:test_real_numpy_wheel +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/repack_whl/repack_whl_test.runfiles; 4s local +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 3s local +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 3s local +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-ee2bd70c60e5/bin/tests/deprecated/versioned_py_test.runfiles; 3s local +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 3s local +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 3s local +_bk;t=1781335389218 //tests/bootstrap_impls:bazel_tools_importable_system_python_test; 3s local +_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-7b5864bfaccb/bin/tests/toolchains/python_3.10.8_test.runfiles; 3s local ... +_bk;t=1781335389218 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s +_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 24s +_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335389218 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 23s +_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 23s +_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 23s +_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 22s ... (34 fetches) +_bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306(07:23:14) Analyzing: 590 targets (621 packages loaded, 1,182,606 targets configured, 175 aspect applications) +_bk;t=1781335394306[4,795 / 5,554] 489 / 566 tests, 3 failed; 30 actions, 12 running; last test: //tests/multiple_inputs:multiple_pyproject_toml.test +_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 8s local +_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 8s local +_bk;t=1781335394306 //tests/deprecated:versioned_compile_pip_requirements.test; 8s local +_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/implicit_namespace_packages/namespace_packages_test.runfiles; 5s local +_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild-ST-6e5f5c2fa7f9/bin/.../venv_site_packages_libs/importlib_metadata_test.runfiles; 5s local +_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-opt-exec-ST-a6fae3158ae9/bin/docs/sphinx-build.runfiles [for tool]; 4s local +_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-opt-exec/bin/external/sphinxdocs+/sphinxdocs/private/proto_to_markdown.runfiles [for tool]; 4s local +_bk;t=1781335394306 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 2s linux-sandbox ... +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 29s +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 29s +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 29s +_bk;t=1781335394306 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 29s +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 28s +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 28s +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 27s +_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 27s ... (27 fetches) +_bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747(07:23:21) Analyzing: 590 targets (640 packages loaded, 1,230,280 targets configured, 198 aspect applications) +_bk;t=1781335401747[5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: ...m_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded +_bk;t=1781335402429 _bk;t=1781335402429 _bk;t=1781335402429(07:23:22) INFO: Analyzed 590 targets (640 packages loaded, 1,230,281 targets configured, 198 aspect applications). +_bk;t=1781335402429(07:23:22) [5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: ...n:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded +_bk;t=1781335402498 _bk;t=1781335402498(07:23:22) INFO: Found 590 test targets... +_bk;t=1781335402498(07:23:22) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization +_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: Elapsed time: 66.093s, Critical Path: 12.71s +_bk;t=1781335402550(07:23:22) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization +_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: 5819 processes: 1920 remote cache hit, 4473 internal, 23 linux-sandbox. +_bk;t=1781335402550(07:23:22) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization +_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: Build completed, 3 tests FAILED, 5819 total actions +_bk;t=1781335402550(07:23:22) INFO: +_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: +_bk;t=1781335402558 _bk;t=1781335402558//tests:bzl_libraries_build_test (cached) PASSED in 0.6s +_bk;t=1781335402558(07:23:22) INFO: +_bk;t=1781335402559 _bk;t=1781335402559//tests/api/py_common:test_merge_py_infos (cached) PASSED in 0.2s +_bk;t=1781335402559(07:23:22) INFO: +_bk;t=1781335402559 _bk;t=1781335402559//tests/base_rules/precompile:test_precompile_attr_inherit_pyc_collection_disabled_precompile_flag_enabled (cached) PASSED in 0.7s +_bk;t=1781335402559(07:23:22) INFO: +_bk;t=1781335402559 _bk;t=1781335402559//tests/base_rules/precompile:test_precompile_enabled_py_binary (cached) PASSED in 0.8s +_bk;t=1781335402559(07:23:22) INFO: +_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_disabled (cached) PASSED in 0.9s +_bk;t=1781335402560(07:23:22) INFO: +_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_enabled (cached) PASSED in 0.4s +_bk;t=1781335402560(07:23:22) INFO: +_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_enabled_py_test (cached) PASSED in 0.5s +_bk;t=1781335402560(07:23:22) INFO: +_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_disabled (cached) PASSED in 0.2s +_bk;t=1781335402560(07:23:22) INFO: +_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.8s +_bk;t=1781335402561(07:23:22) INFO: +_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_disabled (cached) PASSED in 0.7s +_bk;t=1781335402561(07:23:22) INFO: +_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.4s +_bk;t=1781335402561(07:23:22) INFO: +_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompiler_action (cached) PASSED in 0.3s +_bk;t=1781335402561(07:23:22) INFO: +_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_pyc_collection_disabled_library_omit_source (cached) PASSED in 0.4s +_bk;t=1781335402561(07:23:22) INFO: +_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/precompile:test_pyc_collection_include_dep_omit_source (cached) PASSED in 0.6s +_bk;t=1781335402562(07:23:22) INFO: +_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/precompile:test_pyc_only (cached) PASSED in 0.5s +_bk;t=1781335402562(07:23:22) INFO: +_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/py_binary:test_basic_windows (cached) PASSED in 0.6s +_bk;t=1781335402562(07:23:22) INFO: +_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/py_binary:test_basic_zip (cached) PASSED in 0.3s +_bk;t=1781335402562(07:23:22) INFO: +_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_config_settings_extra_toolchains (cached) PASSED in 0.4s +_bk;t=1781335402563(07:23:22) INFO: +_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_cross_compile_to_unix (cached) PASSED in 0.3s +_bk;t=1781335402563(07:23:22) INFO: +_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_data_sets_uses_shared_library (cached) PASSED in 0.3s +_bk;t=1781335402563(07:23:22) INFO: +_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_debugger (cached) PASSED in 0.7s +_bk;t=1781335402563(07:23:22) INFO: +_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_can_be_generated (cached) PASSED in 0.5s +_bk;t=1781335402564(07:23:22) INFO: +_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s +_bk;t=1781335402564(07:23:22) INFO: +_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.7s +_bk;t=1781335402564(07:23:22) INFO: +_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_must_be_in_srcs (cached) PASSED in 0.4s +_bk;t=1781335402564(07:23:22) INFO: +_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_default_outputs (cached) PASSED in 0.3s +_bk;t=1781335402565(07:23:22) INFO: +_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_executable_in_runfiles (cached) PASSED in 0.1s +_bk;t=1781335402565(07:23:22) INFO: +_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_explicit_main (cached) PASSED in 0.2s +_bk;t=1781335402565(07:23:22) INFO: +_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.1s +_bk;t=1781335402565(07:23:22) INFO: +_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_main_module_bootstrap_script (cached) PASSED in 0.4s +_bk;t=1781335402565(07:23:22) INFO: +_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_main_module_bootstrap_system_python (cached) PASSED in 0.8s +_bk;t=1781335402565(07:23:22) INFO: +_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_name_cannot_end_in_py (cached) PASSED in 0.5s +_bk;t=1781335402566(07:23:22) INFO: +_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_py_info_populated (cached) PASSED in 0.2s +_bk;t=1781335402566(07:23:22) INFO: +_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_py_info_propagation (cached) PASSED in 0.2s +_bk;t=1781335402566(07:23:22) INFO: +_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_py_runtime_info_provided (cached) PASSED in 0.2s +_bk;t=1781335402566(07:23:22) INFO: +_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_requires_provider (cached) PASSED in 0.3s +_bk;t=1781335402566(07:23:22) INFO: +_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_binary:test_tags_can_be_tuple (cached) PASSED in 0.3s +_bk;t=1781335402567(07:23:22) INFO: +_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_binary:test_windows_target_with_path_separators (cached) PASSED in 0.4s +_bk;t=1781335402567(07:23:22) INFO: +_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_info:test_py_info_builder (cached) PASSED in 0.3s +_bk;t=1781335402567(07:23:22) INFO: +_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_info:test_py_info_create (cached) PASSED in 0.5s +_bk;t=1781335402567(07:23:22) INFO: +_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_library:test_data_sets_uses_shared_library (cached) PASSED in 0.4s +_bk;t=1781335402567(07:23:22) INFO: +_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_default_outputs (cached) PASSED in 0.1s +_bk;t=1781335402568(07:23:22) INFO: +_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_files_to_compile (cached) PASSED in 0.4s +_bk;t=1781335402568(07:23:22) INFO: +_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_py_info_populated (cached) PASSED in 0.4s +_bk;t=1781335402568(07:23:22) INFO: +_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_py_info_propagation (cached) PASSED in 0.3s +_bk;t=1781335402568(07:23:22) INFO: +_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_py_runtime_info_not_present (cached) PASSED in 0.2s +_bk;t=1781335402568(07:23:22) INFO: +_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_requires_provider (cached) PASSED in 0.7s +_bk;t=1781335402569(07:23:22) INFO: +_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_srcs_can_contain_rule_generating_py_and_nonpy_files (cached) PASSED in 0.1s +_bk;t=1781335402569(07:23:22) INFO: +_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_srcs_generating_no_py_files_is_error (cached) PASSED in 0.3s +_bk;t=1781335402569(07:23:22) INFO: +_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_tags_can_be_tuple (cached) PASSED in 0.1s +_bk;t=1781335402569(07:23:22) INFO: +_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_test:test_basic_windows (cached) PASSED in 0.3s +_bk;t=1781335402570(07:23:22) INFO: +_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_basic_zip (cached) PASSED in 0.5s +_bk;t=1781335402570(07:23:22) INFO: +_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_config_settings_extra_toolchains (cached) PASSED in 0.6s +_bk;t=1781335402570(07:23:22) INFO: +_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_cross_compile_to_unix (cached) PASSED in 0.7s +_bk;t=1781335402570(07:23:22) INFO: +_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_data_sets_uses_shared_library (cached) PASSED in 0.6s +_bk;t=1781335402570(07:23:22) INFO: +_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_debugger (cached) PASSED in 0.4s +_bk;t=1781335402570(07:23:22) INFO: +_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_can_be_generated (cached) PASSED in 0.4s +_bk;t=1781335402571(07:23:22) INFO: +_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s +_bk;t=1781335402571(07:23:22) INFO: +_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.5s +_bk;t=1781335402571(07:23:22) INFO: +_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_must_be_in_srcs (cached) PASSED in 0.6s +_bk;t=1781335402571(07:23:22) INFO: +_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_outputs (cached) PASSED in 0.3s +_bk;t=1781335402571(07:23:22) INFO: +_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_executable_in_runfiles (cached) PASSED in 0.2s +_bk;t=1781335402572(07:23:22) INFO: +_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_explicit_main (cached) PASSED in 0.3s +_bk;t=1781335402572(07:23:22) INFO: +_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.5s +_bk;t=1781335402572(07:23:22) INFO: +_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_mac_requires_darwin_for_execution (cached) PASSED in 0.3s +_bk;t=1781335402572(07:23:22) INFO: +_bk;t=1781335402572 _bk;t=1781335402573//tests/base_rules/py_test:test_main_module_bootstrap_script (cached) PASSED in 0.3s +_bk;t=1781335402573(07:23:22) INFO: +_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_main_module_bootstrap_system_python (cached) PASSED in 0.1s +_bk;t=1781335402573(07:23:22) INFO: +_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_name_cannot_end_in_py (cached) PASSED in 0.3s +_bk;t=1781335402573(07:23:22) INFO: +_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_non_mac_doesnt_require_darwin_for_execution (cached) PASSED in 0.2s +_bk;t=1781335402573(07:23:22) INFO: +_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_py_info_populated (cached) PASSED in 0.6s +_bk;t=1781335402573(07:23:22) INFO: +_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_py_info_propagation (cached) PASSED in 0.5s +_bk;t=1781335402574(07:23:22) INFO: +_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_py_runtime_info_provided (cached) PASSED in 0.3s +_bk;t=1781335402574(07:23:22) INFO: +_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_requires_provider (cached) PASSED in 0.2s +_bk;t=1781335402574(07:23:22) INFO: +_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_tags_can_be_tuple (cached) PASSED in 0.3s +_bk;t=1781335402574(07:23:22) INFO: +_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_windows_target_with_path_separators (cached) PASSED in 0.6s +_bk;t=1781335402574(07:23:22) INFO: +_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:bazel_tools_importable_system_python_test (cached) PASSED in 0.9s +_bk;t=1781335402575(07:23:22) INFO: +_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:bootstrap_script_zipapp_test (cached) PASSED in 2.2s +_bk;t=1781335402575(07:23:22) INFO: +_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:external_binary_test (cached) PASSED in 3.2s +_bk;t=1781335402575(07:23:22) INFO: +_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:inherit_pythonsafepath_env_test (cached) PASSED in 1.3s +_bk;t=1781335402575(07:23:22) INFO: +_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:interpreter_args_test (cached) PASSED in 0.8s +_bk;t=1781335402575(07:23:22) INFO: +_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:main_module_test (cached) PASSED in 1.2s +_bk;t=1781335402576(07:23:22) INFO: +_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:relative_path_test (cached) PASSED in 0.5s +_bk;t=1781335402576(07:23:22) INFO: +_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_bootstrap_script_find_runfiles_test (cached) PASSED in 1.4s +_bk;t=1781335402576(07:23:22) INFO: +_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_bootstrap_script_zip_no_test (cached) PASSED in 1.2s +_bk;t=1781335402576(07:23:22) INFO: +_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test (cached) PASSED in 1.9s +_bk;t=1781335402576(07:23:22) INFO: +_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_find_runfiles_test (cached) PASSED in 1.1s +_bk;t=1781335402576(07:23:22) INFO: +_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:run_binary_venvs_use_declare_symlink_no_test (cached) PASSED in 0.9s +_bk;t=1781335402577(07:23:22) INFO: +_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:run_binary_zip_no_test (cached) PASSED in 1.1s +_bk;t=1781335402577(07:23:22) INFO: +_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:run_binary_zip_yes_test (cached) PASSED in 2.2s +_bk;t=1781335402577(07:23:22) INFO: +_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:sys_executable_inherits_sys_path (cached) PASSED in 0.6s +_bk;t=1781335402577(07:23:22) INFO: +_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:sys_path_order_bootstrap_script_test (cached) PASSED in 1.1s +_bk;t=1781335402577(07:23:22) INFO: +_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test (cached) PASSED in 0.9s +_bk;t=1781335402577(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls:system_python_nodeps_test (cached) PASSED in 1.2s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls/a/b/c:nested_dir_test (cached) PASSED in 1.2s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls/bin_calls_bin:bootstrap_script_python_test (cached) PASSED in 0.8s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls/bin_calls_bin:bootstrap_system_python_test (cached) PASSED in 0.6s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/builders:test_bool (cached) PASSED in 0.7s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/builders:test_cfg_arg (cached) PASSED in 0.4s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402578 _bk;t=1781335402578//tests/builders:test_depset_builder (cached) PASSED in 0.2s +_bk;t=1781335402578(07:23:22) INFO: +_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_exec_group (cached) PASSED in 0.3s +_bk;t=1781335402579(07:23:22) INFO: +_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_fruit_rule (cached) PASSED in 0.2s +_bk;t=1781335402579(07:23:22) INFO: +_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_int (cached) PASSED in 0.4s +_bk;t=1781335402579(07:23:22) INFO: +_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_int_list (cached) PASSED in 0.2s +_bk;t=1781335402579(07:23:22) INFO: +_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_label (cached) PASSED in 0.2s +_bk;t=1781335402579(07:23:22) INFO: +_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_label_keyed_string_dict (cached) PASSED in 0.8s +_bk;t=1781335402579(07:23:22) INFO: +_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_label_list (cached) PASSED in 0.2s +_bk;t=1781335402580(07:23:22) INFO: +_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_output (cached) PASSED in 0.3s +_bk;t=1781335402580(07:23:22) INFO: +_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_output_list (cached) PASSED in 0.4s +_bk;t=1781335402580(07:23:22) INFO: +_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_rule_api (cached) PASSED in 0.4s +_bk;t=1781335402580(07:23:22) INFO: +_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_rule_with_immutable_attrs (cached) PASSED in 0.4s +_bk;t=1781335402580(07:23:22) INFO: +_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_rule_with_toolchains (cached) PASSED in 0.4s +_bk;t=1781335402580(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_runfiles_builder (cached) PASSED in 0.2s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string (cached) PASSED in 0.2s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_dict (cached) PASSED in 0.3s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_keyed_label_dict (cached) PASSED in 0.2s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_list (cached) PASSED in 0.8s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_list_dict (cached) PASSED in 0.2s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_toolchain_type (cached) PASSED in 0.7s +_bk;t=1781335402581(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_headers:test_current_toolchain_headers (cached) PASSED in 0.3s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_headers:test_current_toolchain_headers_abi3 (cached) PASSED in 0.4s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_headers:test_toolchain_is_registered_by_default (cached) PASSED in 0.3s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:python_abi3_libs_linking_test (cached) PASSED in 0.5s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:python_libs_linking_test (cached) PASSED in 0.4s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:test_current_toolchain_libs (cached) PASSED in 0.4s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:test_toolchain_is_registered_by_default (cached) PASSED in 0.6s +_bk;t=1781335402582(07:23:22) INFO: +_bk;t=1781335402583 _bk;t=1781335402583//tests/cc/py_cc_toolchain:test_libs_optional (cached) PASSED in 0.4s +_bk;t=1781335402583(07:23:22) INFO: +_bk;t=1781335402583 _bk;t=1781335402583//tests/cc/py_cc_toolchain:test_py_cc_toolchain (cached) PASSED in 0.9s +_bk;t=1781335402583(07:23:22) INFO: +_bk;t=1781335402583 _bk;t=1781335402583//tests/config_settings:test_latest_micro_version_matching (cached) PASSED in 0.3s +_bk;t=1781335402583(07:23:22) INFO: +_bk;t=1781335402583 _bk;t=1781335402583//tests/config_settings:test_minor_version_matching (cached) PASSED in 0.9s +_bk;t=1781335402583(07:23:22) INFO: +_bk;t=1781335402583 _bk;t=1781335402583//tests/config_settings/transition:test_kwargs_get_consumed (cached) PASSED in 0.0s +_bk;t=1781335402583(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_args_default (cached) PASSED in 0.9s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_binary_windows_build_python_zip_false (cached) PASSED in 0.9s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_binary_with_transition (cached) PASSED in 0.1s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_test_with_transition (cached) PASSED in 0.3s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/coverage_deps:test_unsupported_python_version_warns (cached) PASSED in 0.8s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/coverage_deps:test_windows_platform_is_silent (cached) PASSED in 0.0s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402584 _bk;t=1781335402584//tests/deprecated:build_test (cached) PASSED in 0.4s +_bk;t=1781335402584(07:23:22) INFO: +_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:hub_compile_pip_requirements.test (cached) PASSED in 10.5s +_bk;t=1781335402585(07:23:22) INFO: +_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:hub_py_test (cached) PASSED in 0.9s +_bk;t=1781335402585(07:23:22) INFO: +_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:transition_py_test (cached) PASSED in 0.8s +_bk;t=1781335402585(07:23:22) INFO: +_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:versioned_compile_pip_requirements.test (cached) PASSED in 22.6s +_bk;t=1781335402585(07:23:22) INFO: +_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:versioned_py_test (cached) PASSED in 0.6s +_bk;t=1781335402585(07:23:22) INFO: +_bk;t=1781335402585 _bk;t=1781335402585//tests/docs:docs_build_test (cached) PASSED in 0.0s +_bk;t=1781335402585(07:23:22) INFO: +_bk;t=1781335402586 _bk;t=1781335402586//tests/entry_points:build_entry_point (cached) PASSED in 0.7s +_bk;t=1781335402586(07:23:22) INFO: +_bk;t=1781335402586 _bk;t=1781335402586//tests/entry_points:py_console_script_gen_test (cached) PASSED in 1.0s +_bk;t=1781335402586(07:23:22) INFO: +_bk;t=1781335402586 _bk;t=1781335402586//tests/envsubst:test_envsubst_braceless (cached) PASSED in 0.5s +_bk;t=1781335402586(07:23:22) INFO: +_bk;t=1781335402586 _bk;t=1781335402586//tests/envsubst:test_envsubst_braces_with_default (cached) PASSED in 0.3s +_bk;t=1781335402586(07:23:22) INFO: +_bk;t=1781335402586 _bk;t=1781335402586//tests/envsubst:test_envsubst_braces_without_default (cached) PASSED in 0.4s +_bk;t=1781335402586(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_both_vars (cached) PASSED in 0.2s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_braces_inner_var (cached) PASSED in 0.3s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_no_vars (cached) PASSED in 0.2s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_outer_var (cached) PASSED in 0.2s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/get_release_info:test_astral_mirror (cached) PASSED in 0.7s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/get_release_info:test_astral_mirror_legacy (cached) PASSED in 0.4s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402587 _bk;t=1781335402587//tests/get_release_info:test_file_url (cached) PASSED in 0.3s +_bk;t=1781335402587(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/implicit_namespace_packages:namespace_packages_test (cached) PASSED in 0.8s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:interpreter_version_test_3.10 (cached) PASSED in 1.4s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:interpreter_version_test_3.11 (cached) PASSED in 1.3s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:interpreter_version_test_3.12 (cached) PASSED in 1.5s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:python_src_test_3.10 (cached) PASSED in 1.6s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:python_src_test_3.11 (cached) PASSED in 1.2s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:python_src_test_3.12 (cached) PASSED in 1.2s +_bk;t=1781335402588(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/multi_pypi/pypi_alpha:pypi_alpha_test (cached) PASSED in 1.4s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/multi_pypi/pypi_beta:pypi_beta_test (cached) PASSED in 1.1s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/multiple_inputs:multiple_inputs.test (cached) PASSED in 6.9s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/multiple_inputs:multiple_pyproject_toml.test (cached) PASSED in 10.5s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/multiple_inputs:multiple_requirements_in.test (cached) PASSED in 24.5s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/no_unsafe_paths:no_unsafe_paths_3.10_test (cached) PASSED in 1.1s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402589 _bk;t=1781335402589//tests/no_unsafe_paths:no_unsafe_paths_3.11_test (cached) PASSED in 1.4s +_bk;t=1781335402589(07:23:22) INFO: +_bk;t=1781335402590 _bk;t=1781335402590//tests/normalize_name:test_name_normalization (cached) PASSED in 0.1s +_bk;t=1781335402590(07:23:22) INFO: +_bk;t=1781335402590 _bk;t=1781335402590//tests/packaging:bin (cached) PASSED in 1.0s +_bk;t=1781335402590(07:23:22) INFO: +_bk;t=1781335402590 _bk;t=1781335402590//tests/packaging:bzl_libraries_build_test (cached) PASSED in 0.4s +_bk;t=1781335402590(07:23:22) INFO: +_bk;t=1781335402590 _bk;t=1781335402590//tests/py_exec_tools_toolchain:test_disable_exec_interpreter (cached) PASSED in 0.4s +_bk;t=1781335402590(07:23:22) INFO: +_bk;t=1781335402590 _bk;t=1781335402590//tests/py_runtime:test_bootstrap_template (cached) PASSED in 0.2s +_bk;t=1781335402590(07:23:22) INFO: +_bk;t=1781335402590 _bk;t=1781335402590//tests/py_runtime:test_cannot_have_both_inbuild_and_system_interpreter (cached) PASSED in 0.0s +_bk;t=1781335402590(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_cannot_specify_files_for_system_interpreter (cached) PASSED in 0.1s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_coverage_tool_executable (cached) PASSED in 0.3s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_coverage_tool_plain_files (cached) PASSED in 0.2s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_in_build_interpreter (cached) PASSED in 0.2s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_binary_with_multiple_outputs (cached) PASSED in 0.4s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_binary_with_single_output_and_runfiles (cached) PASSED in 0.2s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_major (cached) PASSED in 0.2s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_minor (cached) PASSED in 0.3s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_version_info_no_extraneous_keys (cached) PASSED in 0.3s +_bk;t=1781335402591(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_interpreter_version_info_parses_values_to_struct (cached) PASSED in 0.4s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_interpreter_version_info_sets_values_to_none_if_not_given (cached) PASSED in 0.3s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_must_have_either_inbuild_or_system_interpreter (cached) PASSED in 0.3s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_system_interpreter (cached) PASSED in 0.3s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_system_interpreter_must_be_absolute (cached) PASSED in 0.4s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_version_info_from_flag (cached) PASSED in 0.5s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info (cached) PASSED in 0.2s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime_pair:test_basic (cached) PASSED in 0.2s +_bk;t=1781335402592(07:23:22) INFO: +_bk;t=1781335402593 _bk;t=1781335402593//tests/py_runtime_pair:test_py_runtime_pair_and_binary (cached) PASSED in 0.6s +_bk;t=1781335402593(07:23:22) INFO: +_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_config_settings (cached) PASSED in 0.6s +_bk;t=1781335402593(07:23:22) INFO: +_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_content_type_from_attr (cached) PASSED in 0.6s +_bk;t=1781335402593(07:23:22) INFO: +_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_content_type_from_description (cached) PASSED in 0.3s +_bk;t=1781335402593(07:23:22) INFO: +_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_data (cached) PASSED in 0.3s +_bk;t=1781335402593(07:23:22) INFO: +_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_data_bad_path (cached) PASSED in 0.4s +_bk;t=1781335402593(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_wheel:test_data_bad_path_but_right_prefix (cached) PASSED in 0.2s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_wheel:test_metadata (cached) PASSED in 0.3s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_wheel/py_wheel:test_too_long_project_url_label (cached) PASSED in 0.2s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:system_python_zipapp_external_bootstrap_test (cached) PASSED in 4.8s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:system_python_zipapp_test (cached) PASSED in 2.2s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:venv_zipapp_compressed_test (cached) PASSED in 3.3s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:venv_zipapp_test (cached) PASSED in 1.9s +_bk;t=1781335402594(07:23:22) INFO: +_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/argparse:test_extra_index_url (cached) PASSED in 0.5s +_bk;t=1781335402595(07:23:22) INFO: +_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/argparse:test_index_url (cached) PASSED in 0.2s +_bk;t=1781335402595(07:23:22) INFO: +_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/argparse:test_platform (cached) PASSED in 0.4s +_bk;t=1781335402595(07:23:22) INFO: +_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/config_settings:test_legacy_default (cached) PASSED in 0.3s +_bk;t=1781335402595(07:23:22) INFO: +_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/config_settings:test_legacy_with_constraint_values (cached) PASSED in 0.1s +_bk;t=1781335402596(07:23:22) INFO: +_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/env_marker_setting:test_custom_env_markers (cached) PASSED in 0.6s +_bk;t=1781335402596(07:23:22) INFO: +_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/env_marker_setting:test_expr_python_full_version_lt_negative (cached) PASSED in 0.4s +_bk;t=1781335402596(07:23:22) INFO: +_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/env_marker_setting:test_expr_python_version_gte (cached) PASSED in 0.3s +_bk;t=1781335402596(07:23:22) INFO: +_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/extension:test_build_pipstar_platform (cached) PASSED in 0.7s +_bk;t=1781335402596(07:23:22) INFO: +_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/extension:test_simple (cached) PASSED in 0.3s +_bk;t=1781335402597(07:23:22) INFO: +_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/extension:test_simple_isolated (cached) PASSED in 0.2s +_bk;t=1781335402597(07:23:22) INFO: +_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/generate_group_library_build_bazel:test_in_hub (cached) PASSED in 0.3s +_bk;t=1781335402597(07:23:22) INFO: +_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/generate_group_library_build_bazel:test_simple (cached) PASSED in 0.5s +_bk;t=1781335402597(07:23:22) INFO: +_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/generate_whl_library_build_bazel:test_all (cached) PASSED in 0.4s +_bk;t=1781335402597(07:23:22) INFO: +_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/generate_whl_library_build_bazel:test_all_legacy (cached) PASSED in 0.3s +_bk;t=1781335402598(07:23:22) INFO: +_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/generate_whl_library_build_bazel:test_all_with_loads (cached) PASSED in 0.2s +_bk;t=1781335402598(07:23:22) INFO: +_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/generate_whl_library_build_bazel:test_all_workspace (cached) PASSED in 0.9s +_bk;t=1781335402598(07:23:22) INFO: +_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/hub_builder:test_download_only_multiple (cached) PASSED in 0.4s +_bk;t=1781335402598(07:23:22) INFO: +_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/hub_builder:test_err_duplicate_repos (cached) PASSED in 0.2s +_bk;t=1781335402598(07:23:22) INFO: +_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_index_url_precedence (cached) PASSED in 0.5s +_bk;t=1781335402599(07:23:22) INFO: +_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_optimum_sys_platform_extra (cached) PASSED in 0.2s +_bk;t=1781335402599(07:23:22) INFO: +_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_pipstar_platforms (cached) PASSED in 0.3s +_bk;t=1781335402599(07:23:22) INFO: +_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_pipstar_platforms_limit (cached) PASSED in 0.1s +_bk;t=1781335402599(07:23:22) INFO: +_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_simple (cached) PASSED in 0.5s +_bk;t=1781335402599(07:23:22) INFO: +_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_simple_extras_vs_no_extras (cached) PASSED in 0.3s +_bk;t=1781335402599(07:23:22) INFO: +_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_extras_vs_no_extras_simpleapi (cached) PASSED in 0.5s +_bk;t=1781335402600(07:23:22) INFO: +_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_get_index (cached) PASSED in 0.3s +_bk;t=1781335402600(07:23:22) INFO: +_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_multiple_python_versions (cached) PASSED in 0.4s +_bk;t=1781335402600(07:23:22) INFO: +_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_multiple_requirements (cached) PASSED in 0.6s +_bk;t=1781335402600(07:23:22) INFO: +_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_with_markers (cached) PASSED in 0.6s +_bk;t=1781335402600(07:23:22) INFO: +_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/hub_builder:test_torch_experimental_index_url (cached) PASSED in 0.1s +_bk;t=1781335402601(07:23:22) INFO: +_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/index_sources:test_no_simple_api_sources (cached) PASSED in 0.2s +_bk;t=1781335402601(07:23:22) INFO: +_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/index_sources:test_simple_api_sources (cached) PASSED in 0.1s +_bk;t=1781335402601(07:23:22) INFO: +_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/integration:all_requirements_build_test (cached) PASSED in 0.9s +_bk;t=1781335402601(07:23:22) INFO: +_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/namespace_pkgs:test_create_inits (cached) PASSED in 0.1s +_bk;t=1781335402601(07:23:22) INFO: +_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/namespace_pkgs:test_empty_case (cached) PASSED in 0.0s +_bk;t=1781335402601(07:23:22) INFO: +_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_find_correct_namespace_packages (cached) PASSED in 0.2s +_bk;t=1781335402602(07:23:22) INFO: +_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_ignores_empty_directories (cached) PASSED in 0.2s +_bk;t=1781335402602(07:23:22) INFO: +_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_ignores_non_module_files_in_directories (cached) PASSED in 0.5s +_bk;t=1781335402602(07:23:22) INFO: +_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_in_current_dir (cached) PASSED in 0.7s +_bk;t=1781335402602(07:23:22) INFO: +_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_nested_standard_pkgs (cached) PASSED in 0.2s +_bk;t=1781335402602(07:23:22) INFO: +_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_standard_pkgs (cached) PASSED in 0.3s +_bk;t=1781335402603(07:23:22) INFO: +_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_pkgs (cached) PASSED in 0.5s +_bk;t=1781335402603(07:23:22) INFO: +_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_recognized_all_nonstandard_module_types (cached) PASSED in 0.4s +_bk;t=1781335402603(07:23:22) INFO: +_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_skips_ignored_directories (cached) PASSED in 0.5s +_bk;t=1781335402603(07:23:22) INFO: +_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/parse_requirements:test_different_package_extras (cached) PASSED in 0.5s +_bk;t=1781335402603(07:23:22) INFO: +_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/parse_requirements:test_different_package_version (cached) PASSED in 0.1s +_bk;t=1781335402603(07:23:22) INFO: +_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_direct_urls_integration (cached) PASSED in 0.0s +_bk;t=1781335402604(07:23:22) INFO: +_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_direct_urls_no_extract (cached) PASSED in 0.3s +_bk;t=1781335402604(07:23:22) INFO: +_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_dupe_requirements (cached) PASSED in 0.4s +_bk;t=1781335402604(07:23:22) INFO: +_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_env_marker_resolution (cached) PASSED in 0.2s +_bk;t=1781335402604(07:23:22) INFO: +_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_extra_pip_args (cached) PASSED in 0.4s +_bk;t=1781335402605(07:23:22) INFO: +_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_get_index_urls_all_versions (cached) PASSED in 0.4s +_bk;t=1781335402605(07:23:22) INFO: +_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_get_index_urls_cross_platform (cached) PASSED in 0.6s +_bk;t=1781335402605(07:23:22) INFO: +_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_get_index_urls_different_versions (cached) PASSED in 0.3s +_bk;t=1781335402605(07:23:22) INFO: +_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_get_index_urls_single_py_version (cached) PASSED in 0.7s +_bk;t=1781335402606(07:23:22) INFO: +_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_git_sources (cached) PASSED in 0.0s +_bk;t=1781335402606(07:23:22) INFO: +_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_multi_os (cached) PASSED in 0.0s +_bk;t=1781335402606(07:23:22) INFO: +_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_multi_os_legacy (cached) PASSED in 0.3s +_bk;t=1781335402606(07:23:22) INFO: +_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_optional_hash (cached) PASSED in 0.3s +_bk;t=1781335402606(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements:test_overlapping_shas_with_index_results (cached) PASSED in 0.4s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements:test_select_requirement_none_platform (cached) PASSED in 0.9s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements:test_simple (cached) PASSED in 0.1s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_0 (cached) PASSED in 0.3s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_1 (cached) PASSED in 0.2s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_simpleapi_html:test_index (cached) PASSED in 0.1s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_simpleapi_html:test_sdist (cached) PASSED in 0.3s +_bk;t=1781335402607(07:23:22) INFO: +_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_simpleapi_html:test_whls (cached) PASSED in 0.1s +_bk;t=1781335402608(07:23:22) INFO: +_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_multiple_platforms (cached) PASSED in 0.0s +_bk;t=1781335402608(07:23:22) INFO: +_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_real_numpy_wheel (cached) PASSED in 0.4s +_bk;t=1781335402608(07:23:22) INFO: +_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_simple (cached) PASSED in 0.7s +_bk;t=1781335402608(07:23:22) INFO: +_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_with_build_tag (cached) PASSED in 0.3s +_bk;t=1781335402608(07:23:22) INFO: +_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/patch_whl:test_simple (cached) PASSED in 0.2s +_bk;t=1781335402608(07:23:22) INFO: +_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/patch_whl:test_simple_local_version (cached) PASSED in 0.5s +_bk;t=1781335402609(07:23:22) INFO: +_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_non_version_env_tests (cached) PASSED in 0.5s +_bk;t=1781335402609(07:23:22) INFO: +_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_partial_only_extra (cached) PASSED in 0.2s +_bk;t=1781335402609(07:23:22) INFO: +_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_platform_version_is_special (cached) PASSED in 0.3s +_bk;t=1781335402609(07:23:22) INFO: +_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_version_env_tests (cached) PASSED in 0.5s +_bk;t=1781335402609(07:23:22) INFO: +_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_with_aliases (cached) PASSED in 0.1s +_bk;t=1781335402609(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:logical_expression_tests (cached) PASSED in 0.2s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:misc_expressions (cached) PASSED in 0.9s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_all_markers_are_added (cached) PASSED in 0.3s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_can_add_os_specific_deps (cached) PASSED in 0.1s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_can_get_deps_based_on_specific_python_version (cached) PASSED in 0.3s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_deps_are_added_to_more_specialized_platforms (cached) PASSED in 0.5s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_env_defaults (cached) PASSED in 0.2s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_env_freebsd (cached) PASSED in 0.4s +_bk;t=1781335402610(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_env_macos (cached) PASSED in 0.2s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_extra_with_conditional_and_unconditional_markers (cached) PASSED in 0.2s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_extras_with_hyphens_are_normalized (cached) PASSED in 0.4s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_include_only_particular_deps (cached) PASSED in 0.1s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_requirement_line_parsing (cached) PASSED in 0.3s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_self_dependencies_can_come_in_any_order (cached) PASSED in 0.0s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_self_include_deps_from_previously_visited (cached) PASSED in 0.2s +_bk;t=1781335402611(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:test_self_is_ignored (cached) PASSED in 0.2s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:test_simple_deps (cached) PASSED in 0.1s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:test_span_all_python_versions (cached) PASSED in 0.1s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:tokenize_tests (cached) PASSED in 0.0s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pkg_aliases:test_config_setting_aliases (cached) PASSED in 0.6s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pkg_aliases:test_config_setting_aliases_many (cached) PASSED in 0.2s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pkg_aliases:test_config_settings_exist_legacy (cached) PASSED in 0.2s +_bk;t=1781335402612(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_group_aliases (cached) PASSED in 0.0s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_legacy_aliases (cached) PASSED in 0.3s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases (cached) PASSED in 0.2s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_empty (cached) PASSED in 0.2s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename (cached) PASSED in 0.2s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename_target_platforms (cached) PASSED in 0.1s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pypi_cache:test_memory_cache_hit (cached) PASSED in 0.5s +_bk;t=1781335402613(07:23:22) INFO: +_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_memory_cache_index_urls (cached) PASSED in 0.2s +_bk;t=1781335402614(07:23:22) INFO: +_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts (cached) PASSED in 0.2s +_bk;t=1781335402614(07:23:22) INFO: +_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts_drops_unaccessed_dists (cached) PASSED in 0.3s +_bk;t=1781335402614(07:23:22) INFO: +_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts (cached) PASSED in 0.3s +_bk;t=1781335402614(07:23:22) INFO: +_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_drops_unaccessed (cached) PASSED in 0.3s +_bk;t=1781335402614(07:23:22) INFO: +_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_incomplete (cached) PASSED in 1.0s +_bk;t=1781335402615(07:23:22) INFO: +_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/pypi_cache:test_pypi_cache_writes_index_urls_to_facts (cached) PASSED in 0.4s +_bk;t=1781335402615(07:23:22) INFO: +_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/pypi_cache:test_pypi_cache_writes_to_facts (cached) PASSED in 0.9s +_bk;t=1781335402615(07:23:22) INFO: +_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/python_tag:test_with_version (cached) PASSED in 0.2s +_bk;t=1781335402615(07:23:22) INFO: +_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/python_tag:test_without_version (cached) PASSED in 0.1s +_bk;t=1781335402615(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_aliases_are_created_for_all_wheels (cached) PASSED in 0.4s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_aliases_with_groups (cached) PASSED in 0.4s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_bzlmod_aliases (cached) PASSED in 0.3s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_empty (cached) PASSED in 0.2s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_empty_flag_versions (cached) PASSED in 0.3s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_get_flag_versions_from_alias_target_platforms (cached) PASSED in 0.2s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_get_python_versions (cached) PASSED in 0.3s +_bk;t=1781335402616(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/render_pkg_aliases:test_get_python_versions_with_target_platforms (cached) PASSED in 0.3s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/render_pkg_aliases:test_legacy_aliases (cached) PASSED in 0.1s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/repack_whl:repack_whl_test (cached) PASSED in 1.8s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_fail_download_only_bad_attr (cached) PASSED in 0.2s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_fail_duplicate_platforms (cached) PASSED in 0.2s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_fail_no_requirements (cached) PASSED in 0.2s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_host_only_lockfile (cached) PASSED in 0.3s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_host_only_multiple_os (cached) PASSED in 0.3s +_bk;t=1781335402617(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_host_only_os_with_fallback (cached) PASSED in 0.2s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_multi_os (cached) PASSED in 0.3s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_multi_os_download_only_platform (cached) PASSED in 0.3s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_os_arch_requirements_with_default (cached) PASSED in 0.2s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_simple (cached) PASSED in 0.4s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_simple_limited (cached) PASSED in 0.4s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_simple_with_python_version (cached) PASSED in 0.1s +_bk;t=1781335402618(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_android (cached) PASSED in 0.3s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_freethreaded_wheels (cached) PASSED in 0.3s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_ignore_unsupported (cached) PASSED in 0.2s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_legacy_manylinux (cached) PASSED in 0.2s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_manylinx_musllinux_pref (cached) PASSED in 0.2s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_match_abi_and_not_py_version (cached) PASSED in 0.3s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_multiple_musllinux (cached) PASSED in 0.3s +_bk;t=1781335402619(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_musllinux_exact_params (cached) PASSED in 0.5s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_mvs_match (cached) PASSED in 0.2s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_mvs_match_override_less_specific (cached) PASSED in 0.4s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_mvs_match_override_more_specific (cached) PASSED in 0.5s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_not_select_abi3 (cached) PASSED in 0.2s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_not_select_py2 (cached) PASSED in 0.2s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_pytags_all_possible (cached) PASSED in 0.3s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_select_by_supported_cp_version (cached) PASSED in 0.4s +_bk;t=1781335402620(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_select_by_supported_py_version (cached) PASSED in 0.2s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_select_cp312 (cached) PASSED in 0.5s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_select_filename_with_many_tags (cached) PASSED in 0.3s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_simplest (cached) PASSED in 0.3s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_supported_cp_version_manylinux (cached) PASSED in 0.4s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/simpleapi_download:test_download_envsubst_url (cached) PASSED in 0.2s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/simpleapi_download:test_download_url (cached) PASSED in 0.6s +_bk;t=1781335402621(07:23:22) INFO: +_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/simpleapi_download:test_download_url_parallel (cached) PASSED in 0.3s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/simpleapi_download:test_download_url_parallel_with_overrides (cached) PASSED in 0.4s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/simpleapi_download:test_index_overrides (cached) PASSED in 0.5s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/simpleapi_download:test_simple (cached) PASSED in 0.2s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/urllib:test_absolute_url (cached) PASSED in 0.1s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/urllib:test_strip_empty_path_segments (cached) PASSED in 0.4s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/version_from_filename:test_sdist_version_extraction (cached) PASSED in 0.3s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/version_from_filename:test_sdist_version_extraction_fail (cached) PASSED in 0.6s +_bk;t=1781335402622(07:23:22) INFO: +_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/version_from_filename:test_wheel_version_extraction (cached) PASSED in 0.4s +_bk;t=1781335402623(07:23:22) INFO: +_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_installer:arguments_test (cached) PASSED in 1.2s +_bk;t=1781335402623(07:23:22) INFO: +_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_library:whl_library_extras_test (cached) PASSED in 1.0s +_bk;t=1781335402623(07:23:22) INFO: +_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_library_targets:test_copy (cached) PASSED in 0.2s +_bk;t=1781335402623(07:23:22) INFO: +_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_library_targets:test_filegroups (cached) PASSED in 0.2s +_bk;t=1781335402623(07:23:22) INFO: +_bk;t=1781335402624 _bk;t=1781335402624//tests/pypi/whl_library_targets:test_group (cached) PASSED in 0.2s +_bk;t=1781335402624(07:23:22) INFO: +_bk;t=1781335402624 _bk;t=1781335402624//tests/pypi/whl_library_targets:test_platforms (cached) PASSED in 0.3s +_bk;t=1781335402624(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_library_targets:test_sdist_excludes_record (cached) PASSED in 0.4s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_library_targets:test_whl_and_library_deps (cached) PASSED in 0.1s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_library_targets:test_whl_and_library_deps_from_requires (cached) PASSED in 0.9s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_contains_dist_info_but_no_metadata (cached) PASSED in 0.3s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_contains_metadata (cached) PASSED in 0.4s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_empty (cached) PASSED in 0.7s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_parse_entry_points (cached) PASSED in 0.7s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_parse_entry_points_deduplicate (cached) PASSED in 0.4s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_parse_metadata_all (cached) PASSED in 0.4s +_bk;t=1781335402625(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_metadata:test_parse_metadata_basic (cached) PASSED in 0.3s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_metadata:test_parse_metadata_invalid (cached) PASSED in 0.2s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_metadata:test_parse_metadata_multiline_license (cached) PASSED in 0.2s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_name_with_percent (cached) PASSED in 0.3s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_name_with_plus (cached) PASSED in 0.4s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_platform_whl (cached) PASSED in 0.7s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_sdist (cached) PASSED in 0.2s +_bk;t=1781335402626(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_repo_name:test_sdist_no_sha (cached) PASSED in 0.5s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_repo_name:test_simple (cached) PASSED in 0.3s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_repo_name:test_simple_no_sha (cached) PASSED in 0.2s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_target_platforms:can_parse_existing_tags (cached) PASSED in 0.2s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_target_platforms:test_simple (cached) PASSED in 0.2s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_target_platforms:test_with_abi (cached) PASSED in 0.5s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/python:test_add_new_version (cached) PASSED in 0.2s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402627 _bk;t=1781335402627//tests/python:test_add_patches (cached) PASSED in 0.2s +_bk;t=1781335402627(07:23:22) INFO: +_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_add_target_settings (cached) PASSED in 0.2s +_bk;t=1781335402628(07:23:22) INFO: +_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_auth_overrides (cached) PASSED in 0.3s +_bk;t=1781335402628(07:23:22) INFO: +_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_defaults (cached) PASSED in 0.3s +_bk;t=1781335402628(07:23:22) INFO: +_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_defaults_env (cached) PASSED in 0.1s +_bk;t=1781335402628(07:23:22) INFO: +_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_defaults_file (cached) PASSED in 0.4s +_bk;t=1781335402628(07:23:22) INFO: +_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_rules_python_when_rules_python_is_not_root (cached) PASSED in 0.2s +_bk;t=1781335402628(07:23:22) INFO: +_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_default_from_rules_python_when_rules_python_is_root (cached) PASSED in 0.6s +_bk;t=1781335402629(07:23:22) INFO: +_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_default_from_single_toolchain (cached) PASSED in 0.4s +_bk;t=1781335402629(07:23:22) INFO: +_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_default_with_patch_version (cached) PASSED in 0.0s +_bk;t=1781335402629(07:23:22) INFO: +_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_defaults_overrides_single_toolchain (cached) PASSED in 0.6s +_bk;t=1781335402629(07:23:22) INFO: +_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_defaults_overrides_toolchains_setting_is_default (cached) PASSED in 0.2s +_bk;t=1781335402629(07:23:22) INFO: +_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_fail_two_overrides (cached) PASSED in 0.1s +_bk;t=1781335402629(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_first_occurance_of_the_toolchain_wins (cached) PASSED in 0.1s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_ignore_unsupported_versions (cached) PASSED in 0.3s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_register_all_versions (cached) PASSED in 0.7s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_single_version_override_errors (cached) PASSED in 0.4s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_single_version_platform_override_errors (cached) PASSED in 0.3s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_toolchain_ordering (cached) PASSED in 0.6s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python_bzlmod_ext:test_dynamic_manifest_files (cached) PASSED in 0.2s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402630 _bk;t=1781335402630//tests/python_bzlmod_ext:test_dynamic_manifest_toolchains (cached) PASSED in 0.2s +_bk;t=1781335402630(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/python_bzlmod_ext:test_parse_filename_baseline (cached) PASSED in 0.2s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/python_bzlmod_ext:test_parse_sha_manifest (cached) PASSED in 0.1s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/repl:repl_with_dep_test (cached) PASSED in 3.8s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/repl:repl_without_dep_test (cached) PASSED in 4.1s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/repo_utils:test_get_platforms_os_name (cached) PASSED in 0.2s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/repo_utils:test_is_relative_to (cached) PASSED in 0.1s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402631 _bk;t=1781335402631//tests/repo_utils:test_relative_to (cached) PASSED in 0.1s +_bk;t=1781335402631(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:pathlib_min_python_test (cached) PASSED in 1.6s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:pathlib_test (cached) PASSED in 2.1s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:publishing (cached) PASSED in 0.3s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:runfiles_min_python_test (cached) PASSED in 2.5s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:runfiles_test (cached) PASSED in 1.2s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runtime_env_toolchain:bootstrap_script_test (cached) PASSED in 1.6s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402632 _bk;t=1781335402632//tests/runtime_env_toolchain:test_runtime_env_toolchain_matches (cached) PASSED in 0.3s +_bk;t=1781335402632(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/runtime_env_toolchain:toolchain_runs_test (cached) PASSED in 1.0s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_file (cached) PASSED in 0.5s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_glob (cached) PASSED in 0.6s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_mctx (cached) PASSED in 0.5s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_module_and_tags (cached) PASSED in 0.6s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_path (cached) PASSED in 0.6s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_rctx (cached) PASSED in 0.3s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_select (cached) PASSED in 0.6s +_bk;t=1781335402633(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/text_util:test_render_alias (cached) PASSED in 0.7s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/text_util:test_render_tuple_dict (cached) PASSED in 0.3s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:build_test (cached) PASSED in 0.1s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:custom_platform_toolchain_test (cached) PASSED in 0.9s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.11_test (cached) PASSED in 1.2s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.12_test (cached) PASSED in 1.4s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.13_test (cached) PASSED in 0.8s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.14_test (cached) PASSED in 1.7s +_bk;t=1781335402634(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.15_test (cached) PASSED in 1.4s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.16_test (cached) PASSED in 1.4s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.18_test (cached) PASSED in 1.4s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.19_test (cached) PASSED in 1.6s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.20_test (cached) PASSED in 1.6s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.2_test (cached) PASSED in 0.8s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.4_test (cached) PASSED in 0.8s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.6_test (cached) PASSED in 0.8s +_bk;t=1781335402635(07:23:22) INFO: +_bk;t=1781335402635 _bk;t=1781335402636//tests/toolchains:python_3.10.8_test (cached) PASSED in 1.5s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.10.9_test (cached) PASSED in 1.2s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.10_test (cached) PASSED in 1.2s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.13_test (cached) PASSED in 1.0s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.14_test (cached) PASSED in 1.6s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.15_test (cached) PASSED in 1.4s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.1_test (cached) PASSED in 1.2s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.3_test (cached) PASSED in 1.5s +_bk;t=1781335402636(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.4_test (cached) PASSED in 1.5s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.5_test (cached) PASSED in 0.9s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.6_test (cached) PASSED in 0.9s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.7_test (cached) PASSED in 1.3s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.8_test (cached) PASSED in 1.6s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.9_test (cached) PASSED in 1.4s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.12.0_test (cached) PASSED in 1.8s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.12.11_test (cached) PASSED in 1.0s +_bk;t=1781335402637(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.12_test (cached) PASSED in 1.2s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.13_test (cached) PASSED in 1.7s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.1_test (cached) PASSED in 1.1s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.2_test (cached) PASSED in 2.1s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.3_test (cached) PASSED in 1.0s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.4_test (cached) PASSED in 1.7s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.7_test (cached) PASSED in 1.5s +_bk;t=1781335402638(07:23:22) INFO: +_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.8_test (cached) PASSED in 1.6s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.12.9_test (cached) PASSED in 0.8s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.0_test (cached) PASSED in 1.5s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.10_test (cached) PASSED in 1.4s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.11_test (cached) PASSED in 1.1s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.12_test (cached) PASSED in 1.1s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.13_test (cached) PASSED in 1.0s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.1_test (cached) PASSED in 1.6s +_bk;t=1781335402639(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.2_test (cached) PASSED in 1.0s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.4_test (cached) PASSED in 1.2s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.6_test (cached) PASSED in 1.0s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.9_test (cached) PASSED in 1.0s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.0_test (cached) PASSED in 0.8s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.1_test (cached) PASSED in 1.6s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.2_test (cached) PASSED in 1.3s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.3_test (cached) PASSED in 1.2s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.4_test (cached) PASSED in 1.5s +_bk;t=1781335402640(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.15.0a1_test (cached) PASSED in 1.4s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.15.0a2_test (cached) PASSED in 1.1s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.15.0a8_test (cached) PASSED in 1.1s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.9.25_test (cached) PASSED in 1.1s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin (cached) PASSED in 0.3s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc (cached) PASSED in 0.1s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335402641(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu (cached) PASSED in 0.0s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.0s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin (cached) PASSED in 0.9s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.6s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc (cached) PASSED in 0.8s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_musl (cached) PASSED in 0.7s +_bk;t=1781335402642(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin (cached) PASSED in 0.5s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.6s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc (cached) PASSED in 0.6s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.2s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu (cached) PASSED in 0.2s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.8s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin (cached) PASSED in 0.5s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc (cached) PASSED in 0.4s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.5s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.7s +_bk;t=1781335402643(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_musl (cached) PASSED in 0.0s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/toolchains/transitions:test_default (cached) PASSED in 0.8s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/tools:wheelmaker_test (cached) PASSED in 2.3s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/private/release:release_test (cached) PASSED in 1.5s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/zipapp:exe_zip_maker_test (cached) PASSED in 1.9s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/zipapp:zip_main_maker_test (cached) PASSED in 1.3s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/zipapp:zipper_test (cached) PASSED in 1.6s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/uv/lock:requirements_run_tests (cached) PASSED in 3.2s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402644 _bk;t=1781335402644//tests/uv/lock:requirements_test (cached) PASSED in 0.6s +_bk;t=1781335402644(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/lock/pyproject_toml:requirements_test (cached) PASSED in 0.3s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/lock/workspaces:requirements_test (cached) PASSED in 0.5s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/toolchain:uv_help_test (cached) PASSED in 1.1s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_complex_configuring (cached) PASSED in 0.5s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_default_building (cached) PASSED in 0.6s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_defaults (cached) PASSED in 0.3s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_manual_url_spec (cached) PASSED in 0.2s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_non_rules_python_non_root_is_ignored (cached) PASSED in 0.2s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_only_defaults (cached) PASSED in 0.2s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_rules_python_does_not_take_precedence (cached) PASSED in 0.2s +_bk;t=1781335402645(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/uv/uv:test_toolchain_precedence (cached) PASSED in 1.0s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:importlib_metadata_test (cached) PASSED in 1.3s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:py_binary_other_module_test (cached) PASSED in 0.8s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:shared_lib_loading_test (cached) PASSED in 3.8s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:venvs_site_packages_libs_test (cached) PASSED in 1.4s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:whl_scripts_runnable_test (cached) PASSED in 1.7s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs/app_files_building:test_complex_namespace_packages (cached) PASSED in 0.1s +_bk;t=1781335402646(07:23:22) INFO: +_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs/app_files_building:test_conflict_merging (cached) PASSED in 0.2s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_empty_and_trivial_inputs (cached) PASSED in 0.1s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_malformed_entry (cached) PASSED in 0.3s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_multiple_venv_symlink_kinds (cached) PASSED in 0.3s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_complex (cached) PASSED in 0.2s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_implicit_namespace_packages (cached) PASSED in 0.2s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_namespace_packages (cached) PASSED in 0.2s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_whls (cached) PASSED in 0.5s +_bk;t=1781335402647(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_single_toplevel (cached) PASSED in 0.1s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/venv_site_packages_libs/app_files_building:test_package_version_filtering (cached) PASSED in 0.3s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/venv_site_packages_libs/app_files_building:test_shared_library_symlinking (cached) PASSED in 0.2s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/version:test_normalization (cached) PASSED in 0.3s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/version:test_normalize_local (cached) PASSED in 0.7s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/version:test_ordering (cached) PASSED in 0.2s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/version_label:test_version_label_from_complex_version (cached) PASSED in 0.3s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402648 _bk;t=1781335402648//tests/version_label:test_version_label_from_major_minor_patch_version (cached) PASSED in 0.1s +_bk;t=1781335402648(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/version_label:test_version_label_from_major_minor_version (cached) PASSED in 0.4s +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/version_label:test_version_label_from_major_minor_version_custom_sep (cached) PASSED in 0.3s +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_filegroup:extract_wheel_files_test (cached) PASSED in 0.8s +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_filegroup:test_runfiles (cached) PASSED in 0.4s +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_filegroup:whl_headers_test (cached) PASSED in 0.4s +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_with_build_files:verify_files_test (cached) PASSED in 0.9s +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/base_rules/py_binary:test_py_info_propagation_builtin SKIPPED +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/base_rules/py_library:test_py_info_propagation_builtin SKIPPED +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/base_rules/py_test:test_py_info_propagation_builtin SKIPPED +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402649 _bk;t=1781335402649//tests/cc/current_py_cc_headers:abi3_headers_linkage_test_py SKIPPED +_bk;t=1781335402649(07:23:22) INFO: +_bk;t=1781335402650 _bk;t=1781335402650//tests/py_runtime_pair:test_builtin_py_info_accepted SKIPPED +_bk;t=1781335402650(07:23:22) INFO: +_bk;t=1781335402650 _bk;t=1781335402650//tests/build_data:build_data_test PASSED in 0.6s +_bk;t=1781335402650(07:23:22) INFO: +_bk;t=1781335402650 _bk;t=1781335402650//tests/exec_toolchain_matching:test_exec_matches_target_python_version FAILED in 3 out of 3 in 0.3s +_bk;t=1781335402650 Stats over 3 runs: max = 0.3s, min = 0.1s, avg = 0.2s, dev = 0.1s +_bk;t=1781335402650(07:23:22) INFO: +_bk;t=1781335402650 _bk;t=1781335402650 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log +_bk;t=1781335402650(07:23:22) INFO: +_bk;t=1781335402650 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651//tests/toolchains/transitions:test_full_version FAILED in 3 out of 3 in 0.3s +_bk;t=1781335402651 Stats over 3 runs: max = 0.3s, min = 0.2s, avg = 0.2s, dev = 0.0s +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651//tests/toolchains/transitions:test_minor_versions FAILED in 3 out of 3 in 0.6s +_bk;t=1781335402651 Stats over 3 runs: max = 0.6s, min = 0.1s, avg = 0.3s, dev = 0.2s +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log +_bk;t=1781335402651(07:23:22) INFO: +_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log +_bk;t=1781335402652(07:23:22) INFO: +_bk;t=1781335402652 _bk;t=1781335402652 +_bk;t=1781335402652(07:23:22) INFO: +_bk;t=1781335402652 _bk;t=1781335402652Executed 4 out of 590 tests: 582 tests pass, 3 fail locally, and 5 were skipped. +_bk;t=1781335402652(07:23:22) INFO: +_bk;t=1781335402897 _bk;t=1781335402899(07:23:22) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/fbdda209-4c6d-46f6-bc64-b5077668d829 +_bk;t=1781335402899bazel info output_base +_bk;t=1781335403154WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335403154WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335403154WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335403154WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335403154WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335403154WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335403154INFO: Invocation ID: 6ed95b0b-816d-45c4-b458-4f992890f827 +_bk;t=1781335403219 +_bk;t=1781335403219 +_bk;t=1781335403219--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=1781335403219 +_bk;t=1781335403219 +_bk;t=1781335403219buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=17813354032342026-06-13 07:23:23 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" +_bk;t=17813354032352026-06-13 07:23:23 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration +_bk;t=17813354032352026-06-13 07:23:23 INFO  Creating (0-1)/1 artifacts +_bk;t=17813354033412026-06-13 07:23:23 INFO  Uploading 019ebfdd-2b29-4fcc-99d9-bfb1b2d5d345 var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (170 KiB) +_bk;t=1781335403524buildkite-agent artifact upload /tmp/tmpdwhkjv8z/test_bep.json +_bk;t=17813354035482026-06-13 07:23:23 INFO  Found 1 files that match "/tmp/tmpdwhkjv8z/test_bep.json" +_bk;t=17813354035482026-06-13 07:23:23 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration +_bk;t=17813354035482026-06-13 07:23:23 INFO  Creating (0-1)/1 artifacts +_bk;t=17813354035552026-06-13 07:23:23 INFO  Artifact uploads completed successfully +_bk;t=17813354036482026-06-13 07:23:23 INFO  Uploading 019ebfdd-2c61-45dc-a4c9-6b06db342b04 tmp/tmpdwhkjv8z/test_bep.json (2.9 MiB) +_bk;t=17813354038722026-06-13 07:23:23 INFO  Artifact uploads completed successfully +_bk;t=1781335403874bazel test failed with exit code 3 +_bk;t=1781335428608^^^ +++ +_bk;t=1781335428608🚨 Error: The command exited with status 3 +_bk;t=1781335428608^^^ +++ +_bk;t=1781335428608user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 +_bk;t=1781335428609~~~ Running plugin docker-buildkite-plugin pre-exit hook +_bk;t=1781335428609$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log new file mode 100644 index 0000000000..45e847a9fd --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log @@ -0,0 +1,2647 @@ +_bk;t=1781335819495~~~ Running agent environment hook +_bk;t=1781335819495$ /etc/buildkite-agent/hooks/environment +_bk;t=1781335819526# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980" +_bk;t=1781335819526~~~ Preparing plugins +_bk;t=1781335819526# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" +_bk;t=1781335819527$ mktemp -dp /etc/buildkite-agent/plugins +_bk;t=1781335819527# Switching to the temporary plugin directory +_bk;t=1781335819527$ cd /etc/buildkite-agent/plugins/3247436658 +_bk;t=1781335819527$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . +_bk;t=1781335819529Cloning into '.'... +_bk;t=1781335819675POST git-upload-pack (175 bytes) +_bk;t=1781335819714POST git-upload-pack (gzip 3102 to 1570 bytes) +_bk;t=1781335819759remote: Enumerating objects: 2225, done._bk;t=1781335819759 +_bk;t=1781335819759remote: Counting objects: 0% (1/321)_bk;t=1781335819759 remote: Counting objects: 1% (4/321)_bk;t=1781335819759 remote: Counting objects: 2% (7/321)_bk;t=1781335819759 remote: Counting objects: 3% (10/321)_bk;t=1781335819759 remote: Counting objects: 4% (13/321)_bk;t=1781335819759 remote: Counting objects: 5% (17/321)_bk;t=1781335819759 remote: Counting objects: 6% (20/321)_bk;t=1781335819759 remote: Counting objects: 7% (23/321)_bk;t=1781335819759 remote: Counting objects: 8% (26/321)_bk;t=1781335819759 remote: Counting objects: 9% (29/321)_bk;t=1781335819759 remote: Counting objects: 10% (33/321)_bk;t=1781335819759 remote: Counting objects: 11% (36/321)_bk;t=1781335819759 remote: Counting objects: 12% (39/321)_bk;t=1781335819759 remote: Counting objects: 13% (42/321)_bk;t=1781335819759 remote: Counting objects: 14% (45/321)_bk;t=1781335819759 remote: Counting objects: 15% (49/321)_bk;t=1781335819759 remote: Counting objects: 16% (52/321)_bk;t=1781335819759 remote: Counting objects: 17% (55/321)_bk;t=1781335819759 remote: Counting objects: 18% (58/321)_bk;t=1781335819759 remote: Counting objects: 19% (61/321)_bk;t=1781335819759 remote: Counting objects: 20% (65/321)_bk;t=1781335819759 remote: Counting objects: 21% (68/321)_bk;t=1781335819759 remote: Counting objects: 22% (71/321)_bk;t=1781335819759 remote: Counting objects: 23% (74/321)_bk;t=1781335819759 remote: Counting objects: 24% (78/321)_bk;t=1781335819759 remote: Counting objects: 25% (81/321)_bk;t=1781335819759 remote: Counting objects: 26% (84/321)_bk;t=1781335819759 remote: Counting objects: 27% (87/321)_bk;t=1781335819759 remote: Counting objects: 28% (90/321)_bk;t=1781335819759 remote: Counting objects: 29% (94/321)_bk;t=1781335819759 remote: Counting objects: 30% (97/321)_bk;t=1781335819759 remote: Counting objects: 31% (100/321)_bk;t=1781335819759 remote: Counting objects: 32% (103/321)_bk;t=1781335819759 remote: Counting objects: 33% (106/321)_bk;t=1781335819759 remote: Counting objects: 34% (110/321)_bk;t=1781335819759 remote: Counting objects: 35% (113/321)_bk;t=1781335819759 remote: Counting objects: 36% (116/321)_bk;t=1781335819759 remote: Counting objects: 37% (119/321)_bk;t=1781335819759 remote: Counting objects: 38% (122/321)_bk;t=1781335819759 remote: Counting objects: 39% (126/321)_bk;t=1781335819759 remote: Counting objects: 40% (129/321)_bk;t=1781335819759 remote: Counting objects: 41% (132/321)_bk;t=1781335819759 remote: Counting objects: 42% (135/321)_bk;t=1781335819759 remote: Counting objects: 43% (139/321)_bk;t=1781335819759 remote: Counting objects: 44% (142/321)_bk;t=1781335819759 remote: Counting objects: 45% (145/321)_bk;t=1781335819759 remote: Counting objects: 46% (148/321)_bk;t=1781335819759 remote: Counting objects: 47% (151/321)_bk;t=1781335819759 remote: Counting objects: 48% (155/321)_bk;t=1781335819759 remote: Counting objects: 49% (158/321)_bk;t=1781335819759 remote: Counting objects: 50% (161/321)_bk;t=1781335819759 remote: Counting objects: 51% (164/321)_bk;t=1781335819759 remote: Counting objects: 52% (167/321)_bk;t=1781335819759 remote: Counting objects: 53% (171/321)_bk;t=1781335819759 remote: Counting objects: 54% (174/321)_bk;t=1781335819759 remote: Counting objects: 55% (177/321)_bk;t=1781335819759 remote: Counting objects: 56% (180/321)_bk;t=1781335819759 remote: Counting objects: 57% (183/321)_bk;t=1781335819759 remote: Counting objects: 58% (187/321)_bk;t=1781335819759 remote: Counting objects: 59% (190/321)_bk;t=1781335819759 remote: Counting objects: 60% (193/321)_bk;t=1781335819759 remote: Counting objects: 61% (196/321)_bk;t=1781335819759 remote: Counting objects: 62% (200/321)_bk;t=1781335819759 remote: Counting objects: 63% (203/321)_bk;t=1781335819759 remote: Counting objects: 64% (206/321)_bk;t=1781335819759 remote: Counting objects: 65% (209/321)_bk;t=1781335819759 remote: Counting objects: 66% (212/321)_bk;t=1781335819759 remote: Counting objects: 67% (216/321)_bk;t=1781335819759 remote: Counting objects: 68% (219/321)_bk;t=1781335819759 remote: Counting objects: 69% (222/321)_bk;t=1781335819759 remote: Counting objects: 70% (225/321)_bk;t=1781335819759 remote: Counting objects: 71% (228/321)_bk;t=1781335819759 remote: Counting objects: 72% (232/321)_bk;t=1781335819759 remote: Counting objects: 73% (235/321)_bk;t=1781335819759 remote: Counting objects: 74% (238/321)_bk;t=1781335819759 remote: Counting objects: 75% (241/321)_bk;t=1781335819759 remote: Counting objects: 76% (244/321)_bk;t=1781335819759 remote: Counting objects: 77% (248/321)_bk;t=1781335819759 remote: Counting objects: 78% (251/321)_bk;t=1781335819759 remote: Counting objects: 79% (254/321)_bk;t=1781335819759 remote: Counting objects: 80% (257/321)_bk;t=1781335819759 remote: Counting objects: 81% (261/321)_bk;t=1781335819759 remote: Counting objects: 82% (264/321)_bk;t=1781335819759 remote: Counting objects: 83% (267/321)_bk;t=1781335819759 remote: Counting objects: 84% (270/321)_bk;t=1781335819759 remote: Counting objects: 85% (273/321)_bk;t=1781335819759 remote: Counting objects: 86% (277/321)_bk;t=1781335819759 remote: Counting objects: 87% (280/321)_bk;t=1781335819759 remote: Counting objects: 88% (283/321)_bk;t=1781335819759 remote: Counting objects: 89% (286/321)_bk;t=1781335819759 remote: Counting objects: 90% (289/321)_bk;t=1781335819759 remote: Counting objects: 91% (293/321)_bk;t=1781335819759 remote: Counting objects: 92% (296/321)_bk;t=1781335819759 remote: Counting objects: 93% (299/321)_bk;t=1781335819759 remote: Counting objects: 94% (302/321)_bk;t=1781335819759 remote: Counting objects: 95% (305/321)_bk;t=1781335819759 remote: Counting objects: 96% (309/321)_bk;t=1781335819759 remote: Counting objects: 97% (312/321)_bk;t=1781335819759 remote: Counting objects: 98% (315/321)_bk;t=1781335819759 remote: Counting objects: 99% (318/321)_bk;t=1781335819759 remote: Counting objects: 100% (321/321)_bk;t=1781335819759 remote: Counting objects: 100% (321/321), done._bk;t=1781335819759 +_bk;t=1781335819759remote: Compressing objects: 0% (1/150)_bk;t=1781335819759 remote: Compressing objects: 1% (2/150)_bk;t=1781335819759 remote: Compressing objects: 2% (3/150)_bk;t=1781335819759 remote: Compressing objects: 3% (5/150)_bk;t=1781335819759 remote: Compressing objects: 4% (6/150)_bk;t=1781335819775 remote: Compressing objects: 5% (8/150)_bk;t=1781335819775 remote: Compressing objects: 6% (9/150)_bk;t=1781335819775 remote: Compressing objects: 7% (11/150)_bk;t=1781335819775 remote: Compressing objects: 8% (12/150)_bk;t=1781335819775 remote: Compressing objects: 9% (14/150)_bk;t=1781335819775 remote: Compressing objects: 10% (15/150)_bk;t=1781335819775 remote: Compressing objects: 11% (17/150)_bk;t=1781335819775 remote: Compressing objects: 12% (18/150)_bk;t=1781335819775 remote: Compressing objects: 13% (20/150)_bk;t=1781335819775 remote: Compressing objects: 14% (21/150)_bk;t=1781335819775 remote: Compressing objects: 15% (23/150)_bk;t=1781335819775 remote: Compressing objects: 16% (24/150)_bk;t=1781335819775 remote: Compressing objects: 17% (26/150)_bk;t=1781335819775 remote: Compressing objects: 18% (27/150)_bk;t=1781335819775 remote: Compressing objects: 19% (29/150)_bk;t=1781335819775 remote: Compressing objects: 20% (30/150)_bk;t=1781335819775 remote: Compressing objects: 21% (32/150)_bk;t=1781335819775 remote: Compressing objects: 22% (33/150)_bk;t=1781335819775 remote: Compressing objects: 23% (35/150)_bk;t=1781335819775 remote: Compressing objects: 24% (36/150)_bk;t=1781335819775 remote: Compressing objects: 25% (38/150)_bk;t=1781335819775 remote: Compressing objects: 26% (39/150)_bk;t=1781335819775 remote: Compressing objects: 27% (41/150)_bk;t=1781335819775 remote: Compressing objects: 28% (42/150)_bk;t=1781335819775 remote: Compressing objects: 29% (44/150)_bk;t=1781335819775 remote: Compressing objects: 30% (45/150)_bk;t=1781335819775 remote: Compressing objects: 31% (47/150)_bk;t=1781335819775 remote: Compressing objects: 32% (48/150)_bk;t=1781335819775 remote: Compressing objects: 33% (50/150)_bk;t=1781335819775 remote: Compressing objects: 34% (51/150)_bk;t=1781335819775 remote: Compressing objects: 35% (53/150)_bk;t=1781335819775 remote: Compressing objects: 36% (54/150)_bk;t=1781335819775 remote: Compressing objects: 37% (56/150)_bk;t=1781335819775 remote: Compressing objects: 38% (57/150)_bk;t=1781335819775 remote: Compressing objects: 39% (59/150)_bk;t=1781335819775 remote: Compressing objects: 40% (60/150)_bk;t=1781335819775 remote: Compressing objects: 41% (62/150)_bk;t=1781335819775 remote: Compressing objects: 42% (63/150)_bk;t=1781335819775 remote: Compressing objects: 43% (65/150)_bk;t=1781335819775 remote: Compressing objects: 44% (66/150)_bk;t=1781335819775 remote: Compressing objects: 45% (68/150)_bk;t=1781335819775 remote: Compressing objects: 46% (69/150)_bk;t=1781335819775 remote: Compressing objects: 47% (71/150)_bk;t=1781335819775 remote: Compressing objects: 48% (72/150)_bk;t=1781335819775 remote: Compressing objects: 49% (74/150)_bk;t=1781335819775 remote: Compressing objects: 50% (75/150)_bk;t=1781335819775 remote: Compressing objects: 51% (77/150)_bk;t=1781335819775 remote: Compressing objects: 52% (78/150)_bk;t=1781335819775 remote: Compressing objects: 53% (80/150)_bk;t=1781335819775 remote: Compressing objects: 54% (81/150)_bk;t=1781335819775 remote: Compressing objects: 55% (83/150)_bk;t=1781335819775 remote: Compressing objects: 56% (84/150)_bk;t=1781335819775 remote: Compressing objects: 57% (86/150)_bk;t=1781335819775 remote: Compressing objects: 58% (87/150)_bk;t=1781335819775 remote: Compressing objects: 59% (89/150)_bk;t=1781335819775 remote: Compressing objects: 60% (90/150)_bk;t=1781335819775 remote: Compressing objects: 61% (92/150)_bk;t=1781335819775 remote: Compressing objects: 62% (93/150)_bk;t=1781335819775 remote: Compressing objects: 63% (95/150)_bk;t=1781335819775 remote: Compressing objects: 64% (96/150)_bk;t=1781335819775 remote: Compressing objects: 65% (98/150)_bk;t=1781335819775 remote: Compressing objects: 66% (99/150)_bk;t=1781335819775 remote: Compressing objects: 67% (101/150)_bk;t=1781335819775 remote: Compressing objects: 68% (102/150)_bk;t=1781335819775 remote: Compressing objects: 69% (104/150)_bk;t=1781335819775 remote: Compressing objects: 70% (105/150)_bk;t=1781335819775 remote: Compressing objects: 71% (107/150)_bk;t=1781335819775 remote: Compressing objects: 72% (108/150)_bk;t=1781335819775 remote: Compressing objects: 73% (110/150)_bk;t=1781335819775 remote: Compressing objects: 74% (111/150)_bk;t=1781335819775 remote: Compressing objects: 75% (113/150)_bk;t=1781335819775 remote: Compressing objects: 76% (114/150)_bk;t=1781335819775 remote: Compressing objects: 77% (116/150)_bk;t=1781335819775 remote: Compressing objects: 78% (117/150)_bk;t=1781335819775 remote: Compressing objects: 79% (119/150)_bk;t=1781335819775 remote: Compressing objects: 80% (120/150)_bk;t=1781335819775 remote: Compressing objects: 81% (122/150)_bk;t=1781335819775 remote: Compressing objects: 82% (123/150)_bk;t=1781335819775 remote: Compressing objects: 83% (125/150)_bk;t=1781335819775 remote: Compressing objects: 84% (126/150)_bk;t=1781335819775 remote: Compressing objects: 85% (128/150)_bk;t=1781335819775 remote: Compressing objects: 86% (129/150)_bk;t=1781335819775 remote: Compressing objects: 87% (131/150)_bk;t=1781335819775 remote: Compressing objects: 88% (132/150)_bk;t=1781335819775 remote: Compressing objects: 89% (134/150)_bk;t=1781335819775 remote: Compressing objects: 90% (135/150)_bk;t=1781335819775 remote: Compressing objects: 91% (137/150)_bk;t=1781335819775 remote: Compressing objects: 92% (138/150)_bk;t=1781335819775 remote: Compressing objects: 93% (140/150)_bk;t=1781335819775 remote: Compressing objects: 94% (141/150)_bk;t=1781335819775 remote: Compressing objects: 95% (143/150)_bk;t=1781335819775 remote: Compressing objects: 96% (144/150)_bk;t=1781335819775 remote: Compressing objects: 97% (146/150)_bk;t=1781335819775 remote: Compressing objects: 98% (147/150)_bk;t=1781335819775 remote: Compressing objects: 99% (149/150)_bk;t=1781335819775 remote: Compressing objects: 100% (150/150)_bk;t=1781335819775 remote: Compressing objects: 100% (150/150), done._bk;t=1781335819782 +_bk;t=1781335819783Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) remote: Total 2225 (delta 206), reused 171 (delta 170), pack-reused 1904 (from 3)_bk;t=1781335819858 +_bk;t=1781335819858Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) Receiving objects: 96% (2136/2225) Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.77 KiB | 7.19 MiB/s, done. +_bk;t=1781335819860Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (90/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (111/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (167/1109) Resolving deltas: 16% (178/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (212/1109) Resolving deltas: 20% (224/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (244/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (300/1109) Resolving deltas: 28% (311/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (356/1109) Resolving deltas: 33% (366/1109) Resolving deltas: 34% (378/1109) Resolving deltas: 35% (389/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (413/1109) Resolving deltas: 38% (422/1109) Resolving deltas: 39% (433/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (466/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (500/1109) Resolving deltas: 46% (512/1109) Resolving deltas: 47% (522/1109) Resolving deltas: 48% (533/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (556/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (599/1109) Resolving deltas: 55% (610/1109) Resolving deltas: 56% (622/1109) Resolving deltas: 57% (633/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (666/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (756/1109) Resolving deltas: 69% (766/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (789/1109) Resolving deltas: 72% (799/1109) Resolving deltas: 73% (810/1109) Resolving deltas: 74% (822/1109) Resolving deltas: 75% (833/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (866/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (922/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (999/1109) Resolving deltas: 91% (1012/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1099/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. +_bk;t=1781335819903# Checking out `v3.8.0` +_bk;t=1781335819903$ git checkout -f v3.8.0 +_bk;t=1781335819908Note: switching to 'v3.8.0'. +_bk;t=1781335819908 +_bk;t=1781335819908You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335819908changes and commit them, and you can discard any commits you make in this +_bk;t=1781335819908state without impacting any branches by switching back to a branch. +_bk;t=1781335819908 +_bk;t=1781335819908If you want to create a new branch to retain commits you create, you may +_bk;t=1781335819908do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335819908 +_bk;t=1781335819908 git switch -c +_bk;t=1781335819908 +_bk;t=1781335819908Or undo this operation with: +_bk;t=1781335819908 +_bk;t=1781335819908 git switch - +_bk;t=1781335819908 +_bk;t=1781335819908Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335819908 +_bk;t=1781335819908HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master +_bk;t=1781335819908# Moving temporary plugin directory to final location +_bk;t=1781335819908$ mv /etc/buildkite-agent/plugins/3247436658 /etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 +_bk;t=1781335819908$ cd /var/lib/buildkite-agent/builds +_bk;t=1781335819908~~~ Running agent pre-checkout hook +_bk;t=1781335819909$ /etc/buildkite-agent/hooks/pre-checkout +_bk;t=1781335819925JOB_START_TIME: 1781335819925 +_bk;t=1781335819938Added: +_bk;t=1781335819939+ JOB_START_TIME +_bk;t=1781335819953~~~ Preparing working directory +_bk;t=1781335819953# Creating "/var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python" +_bk;t=1781335819954$ cd /var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python +_bk;t=1781335819954$ cd /var/lib/gitmirrors +_bk;t=1781335819962# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335819963# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously +_bk;t=1781335819963$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head +_bk;t=1781335820198remote: Enumerating objects: 2513, done._bk;t=1781335820198 +_bk;t=1781335820198remote: Counting objects: 0% (1/1602)_bk;t=1781335820198 remote: Counting objects: 1% (17/1602)_bk;t=1781335820198 remote: Counting objects: 2% (33/1602)_bk;t=1781335820198 remote: Counting objects: 3% (49/1602)_bk;t=1781335820198 remote: Counting objects: 4% (65/1602)_bk;t=1781335820198 remote: Counting objects: 5% (81/1602)_bk;t=1781335820198 remote: Counting objects: 6% (97/1602)_bk;t=1781335820198 remote: Counting objects: 7% (113/1602)_bk;t=1781335820198 remote: Counting objects: 8% (129/1602)_bk;t=1781335820198 remote: Counting objects: 9% (145/1602)_bk;t=1781335820198 remote: Counting objects: 10% (161/1602)_bk;t=1781335820199 remote: Counting objects: 11% (177/1602)_bk;t=1781335820199 remote: Counting objects: 12% (193/1602)_bk;t=1781335820199 remote: Counting objects: 13% (209/1602)_bk;t=1781335820199 remote: Counting objects: 14% (225/1602)_bk;t=1781335820199 remote: Counting objects: 15% (241/1602)_bk;t=1781335820199 remote: Counting objects: 16% (257/1602)_bk;t=1781335820199 remote: Counting objects: 17% (273/1602)_bk;t=1781335820199 remote: Counting objects: 18% (289/1602)_bk;t=1781335820199 remote: Counting objects: 19% (305/1602)_bk;t=1781335820199 remote: Counting objects: 20% (321/1602)_bk;t=1781335820199 remote: Counting objects: 21% (337/1602)_bk;t=1781335820199 remote: Counting objects: 22% (353/1602)_bk;t=1781335820199 remote: Counting objects: 23% (369/1602)_bk;t=1781335820199 remote: Counting objects: 24% (385/1602)_bk;t=1781335820199 remote: Counting objects: 25% (401/1602)_bk;t=1781335820199 remote: Counting objects: 26% (417/1602)_bk;t=1781335820199 remote: Counting objects: 27% (433/1602)_bk;t=1781335820199 remote: Counting objects: 28% (449/1602)_bk;t=1781335820199 remote: Counting objects: 29% (465/1602)_bk;t=1781335820199 remote: Counting objects: 30% (481/1602)_bk;t=1781335820199 remote: Counting objects: 31% (497/1602)_bk;t=1781335820199 remote: Counting objects: 32% (513/1602)_bk;t=1781335820199 remote: Counting objects: 33% (529/1602)_bk;t=1781335820199 remote: Counting objects: 34% (545/1602)_bk;t=1781335820199 remote: Counting objects: 35% (561/1602)_bk;t=1781335820199 remote: Counting objects: 36% (577/1602)_bk;t=1781335820199 remote: Counting objects: 37% (593/1602)_bk;t=1781335820199 remote: Counting objects: 38% (609/1602)_bk;t=1781335820199 remote: Counting objects: 39% (625/1602)_bk;t=1781335820199 remote: Counting objects: 40% (641/1602)_bk;t=1781335820199 remote: Counting objects: 41% (657/1602)_bk;t=1781335820199 remote: Counting objects: 42% (673/1602)_bk;t=1781335820199 remote: Counting objects: 43% (689/1602)_bk;t=1781335820199 remote: Counting objects: 44% (705/1602)_bk;t=1781335820199 remote: Counting objects: 45% (721/1602)_bk;t=1781335820199 remote: Counting objects: 46% (737/1602)_bk;t=1781335820199 remote: Counting objects: 47% (753/1602)_bk;t=1781335820199 remote: Counting objects: 48% (769/1602)_bk;t=1781335820199 remote: Counting objects: 49% (785/1602)_bk;t=1781335820199 remote: Counting objects: 50% (801/1602)_bk;t=1781335820199 remote: Counting objects: 51% (818/1602)_bk;t=1781335820199 remote: Counting objects: 52% (834/1602)_bk;t=1781335820199 remote: Counting objects: 53% (850/1602)_bk;t=1781335820199 remote: Counting objects: 54% (866/1602)_bk;t=1781335820199 remote: Counting objects: 55% (882/1602)_bk;t=1781335820199 remote: Counting objects: 56% (898/1602)_bk;t=1781335820199 remote: Counting objects: 57% (914/1602)_bk;t=1781335820199 remote: Counting objects: 58% (930/1602)_bk;t=1781335820199 remote: Counting objects: 59% (946/1602)_bk;t=1781335820199 remote: Counting objects: 60% (962/1602)_bk;t=1781335820199 remote: Counting objects: 61% (978/1602)_bk;t=1781335820199 remote: Counting objects: 62% (994/1602)_bk;t=1781335820199 remote: Counting objects: 63% (1010/1602)_bk;t=1781335820199 remote: Counting objects: 64% (1026/1602)_bk;t=1781335820199 remote: Counting objects: 65% (1042/1602)_bk;t=1781335820199 remote: Counting objects: 66% (1058/1602)_bk;t=1781335820199 remote: Counting objects: 67% (1074/1602)_bk;t=1781335820199 remote: Counting objects: 68% (1090/1602)_bk;t=1781335820199 remote: Counting objects: 69% (1106/1602)_bk;t=1781335820199 remote: Counting objects: 70% (1122/1602)_bk;t=1781335820199 remote: Counting objects: 71% (1138/1602)_bk;t=1781335820199 remote: Counting objects: 72% (1154/1602)_bk;t=1781335820199 remote: Counting objects: 73% (1170/1602)_bk;t=1781335820199 remote: Counting objects: 74% (1186/1602)_bk;t=1781335820199 remote: Counting objects: 75% (1202/1602)_bk;t=1781335820199 remote: Counting objects: 76% (1218/1602)_bk;t=1781335820199 remote: Counting objects: 77% (1234/1602)_bk;t=1781335820199 remote: Counting objects: 78% (1250/1602)_bk;t=1781335820199 remote: Counting objects: 79% (1266/1602)_bk;t=1781335820199 remote: Counting objects: 80% (1282/1602)_bk;t=1781335820199 remote: Counting objects: 81% (1298/1602)_bk;t=1781335820199 remote: Counting objects: 82% (1314/1602)_bk;t=1781335820199 remote: Counting objects: 83% (1330/1602)_bk;t=1781335820199 remote: Counting objects: 84% (1346/1602)_bk;t=1781335820199 remote: Counting objects: 85% (1362/1602)_bk;t=1781335820199 remote: Counting objects: 86% (1378/1602)_bk;t=1781335820199 remote: Counting objects: 87% (1394/1602)_bk;t=1781335820199 remote: Counting objects: 88% (1410/1602)_bk;t=1781335820199 remote: Counting objects: 89% (1426/1602)_bk;t=1781335820199 remote: Counting objects: 90% (1442/1602)_bk;t=1781335820199 remote: Counting objects: 91% (1458/1602)_bk;t=1781335820199 remote: Counting objects: 92% (1474/1602)_bk;t=1781335820199 remote: Counting objects: 93% (1490/1602)_bk;t=1781335820199 remote: Counting objects: 94% (1506/1602)_bk;t=1781335820199 remote: Counting objects: 95% (1522/1602)_bk;t=1781335820199 remote: Counting objects: 96% (1538/1602)_bk;t=1781335820199 remote: Counting objects: 97% (1554/1602)_bk;t=1781335820199 remote: Counting objects: 98% (1570/1602)_bk;t=1781335820199 remote: Counting objects: 99% (1586/1602)_bk;t=1781335820199 remote: Counting objects: 100% (1602/1602)_bk;t=1781335820199 remote: Counting objects: 100% (1602/1602), done._bk;t=1781335820199 +_bk;t=1781335820199remote: Compressing objects: 0% (1/449)_bk;t=1781335820199 remote: Compressing objects: 1% (5/449)_bk;t=1781335820199 remote: Compressing objects: 2% (9/449)_bk;t=1781335820199 remote: Compressing objects: 3% (14/449)_bk;t=1781335820199 remote: Compressing objects: 4% (18/449)_bk;t=1781335820199 remote: Compressing objects: 5% (23/449)_bk;t=1781335820199 remote: Compressing objects: 6% (27/449)_bk;t=1781335820199 remote: Compressing objects: 7% (32/449)_bk;t=1781335820199 remote: Compressing objects: 8% (36/449)_bk;t=1781335820199 remote: Compressing objects: 9% (41/449)_bk;t=1781335820199 remote: Compressing objects: 10% (45/449)_bk;t=1781335820199 remote: Compressing objects: 11% (50/449)_bk;t=1781335820199 remote: Compressing objects: 12% (54/449)_bk;t=1781335820199 remote: Compressing objects: 13% (59/449)_bk;t=1781335820199 remote: Compressing objects: 14% (63/449)_bk;t=1781335820199 remote: Compressing objects: 15% (68/449)_bk;t=1781335820199 remote: Compressing objects: 16% (72/449)_bk;t=1781335820199 remote: Compressing objects: 17% (77/449)_bk;t=1781335820199 remote: Compressing objects: 18% (81/449)_bk;t=1781335820199 remote: Compressing objects: 19% (86/449)_bk;t=1781335820199 remote: Compressing objects: 20% (90/449)_bk;t=1781335820199 remote: Compressing objects: 21% (95/449)_bk;t=1781335820199 remote: Compressing objects: 22% (99/449)_bk;t=1781335820199 remote: Compressing objects: 23% (104/449)_bk;t=1781335820199 remote: Compressing objects: 24% (108/449)_bk;t=1781335820199 remote: Compressing objects: 25% (113/449)_bk;t=1781335820199 remote: Compressing objects: 26% (117/449)_bk;t=1781335820199 remote: Compressing objects: 27% (122/449)_bk;t=1781335820199 remote: Compressing objects: 28% (126/449)_bk;t=1781335820199 remote: Compressing objects: 29% (131/449)_bk;t=1781335820199 remote: Compressing objects: 30% (135/449)_bk;t=1781335820199 remote: Compressing objects: 31% (140/449)_bk;t=1781335820199 remote: Compressing objects: 32% (144/449)_bk;t=1781335820199 remote: Compressing objects: 33% (149/449)_bk;t=1781335820199 remote: Compressing objects: 34% (153/449)_bk;t=1781335820199 remote: Compressing objects: 35% (158/449)_bk;t=1781335820199 remote: Compressing objects: 36% (162/449)_bk;t=1781335820199 remote: Compressing objects: 37% (167/449)_bk;t=1781335820199 remote: Compressing objects: 38% (171/449)_bk;t=1781335820199 remote: Compressing objects: 39% (176/449)_bk;t=1781335820199 remote: Compressing objects: 40% (180/449)_bk;t=1781335820199 remote: Compressing objects: 41% (185/449)_bk;t=1781335820199 remote: Compressing objects: 42% (189/449)_bk;t=1781335820199 remote: Compressing objects: 43% (194/449)_bk;t=1781335820199 remote: Compressing objects: 44% (198/449)_bk;t=1781335820199 remote: Compressing objects: 45% (203/449)_bk;t=1781335820199 remote: Compressing objects: 46% (207/449)_bk;t=1781335820199 remote: Compressing objects: 47% (212/449)_bk;t=1781335820199 remote: Compressing objects: 48% (216/449)_bk;t=1781335820199 remote: Compressing objects: 49% (221/449)_bk;t=1781335820199 remote: Compressing objects: 50% (225/449)_bk;t=1781335820199 remote: Compressing objects: 51% (229/449)_bk;t=1781335820200 remote: Compressing objects: 52% (234/449)_bk;t=1781335820200 remote: Compressing objects: 53% (238/449)_bk;t=1781335820200 remote: Compressing objects: 54% (243/449)_bk;t=1781335820200 remote: Compressing objects: 55% (247/449)_bk;t=1781335820200 remote: Compressing objects: 56% (252/449)_bk;t=1781335820200 remote: Compressing objects: 57% (256/449)_bk;t=1781335820200 remote: Compressing objects: 58% (261/449)_bk;t=1781335820200 remote: Compressing objects: 59% (265/449)_bk;t=1781335820200 remote: Compressing objects: 60% (270/449)_bk;t=1781335820200 remote: Compressing objects: 61% (274/449)_bk;t=1781335820200 remote: Compressing objects: 62% (279/449)_bk;t=1781335820200 remote: Compressing objects: 63% (283/449)_bk;t=1781335820200 remote: Compressing objects: 64% (288/449)_bk;t=1781335820200 remote: Compressing objects: 65% (292/449)_bk;t=1781335820200 remote: Compressing objects: 66% (297/449)_bk;t=1781335820200 remote: Compressing objects: 67% (301/449)_bk;t=1781335820200 remote: Compressing objects: 68% (306/449)_bk;t=1781335820200 remote: Compressing objects: 69% (310/449)_bk;t=1781335820200 remote: Compressing objects: 70% (315/449)_bk;t=1781335820200 remote: Compressing objects: 71% (319/449)_bk;t=1781335820200 remote: Compressing objects: 72% (324/449)_bk;t=1781335820200 remote: Compressing objects: 73% (328/449)_bk;t=1781335820200 remote: Compressing objects: 74% (333/449)_bk;t=1781335820200 remote: Compressing objects: 75% (337/449)_bk;t=1781335820200 remote: Compressing objects: 76% (342/449)_bk;t=1781335820200 remote: Compressing objects: 77% (346/449)_bk;t=1781335820200 remote: Compressing objects: 78% (351/449)_bk;t=1781335820200 remote: Compressing objects: 79% (355/449)_bk;t=1781335820200 remote: Compressing objects: 80% (360/449)_bk;t=1781335820200 remote: Compressing objects: 81% (364/449)_bk;t=1781335820200 remote: Compressing objects: 82% (369/449)_bk;t=1781335820200 remote: Compressing objects: 83% (373/449)_bk;t=1781335820200 remote: Compressing objects: 84% (378/449)_bk;t=1781335820200 remote: Compressing objects: 85% (382/449)_bk;t=1781335820200 remote: Compressing objects: 86% (387/449)_bk;t=1781335820200 remote: Compressing objects: 87% (391/449)_bk;t=1781335820200 remote: Compressing objects: 88% (396/449)_bk;t=1781335820200 remote: Compressing objects: 89% (400/449)_bk;t=1781335820200 remote: Compressing objects: 90% (405/449)_bk;t=1781335820200 remote: Compressing objects: 91% (409/449)_bk;t=1781335820200 remote: Compressing objects: 92% (414/449)_bk;t=1781335820200 remote: Compressing objects: 93% (418/449)_bk;t=1781335820210 remote: Compressing objects: 94% (423/449)_bk;t=1781335820210 remote: Compressing objects: 95% (427/449)_bk;t=1781335820210 remote: Compressing objects: 96% (432/449)_bk;t=1781335820210 remote: Compressing objects: 97% (436/449)_bk;t=1781335820210 remote: Compressing objects: 98% (441/449)_bk;t=1781335820210 remote: Compressing objects: 99% (445/449)_bk;t=1781335820210 remote: Compressing objects: 100% (449/449)_bk;t=1781335820210 remote: Compressing objects: 100% (449/449), done._bk;t=1781335820210 +_bk;t=1781335820224Receiving objects: 0% (1/2513) Receiving objects: 1% (26/2513) Receiving objects: 2% (51/2513) Receiving objects: 3% (76/2513) Receiving objects: 4% (101/2513) Receiving objects: 5% (126/2513) Receiving objects: 6% (151/2513) Receiving objects: 7% (176/2513) Receiving objects: 8% (202/2513) Receiving objects: 9% (227/2513) Receiving objects: 10% (252/2513) Receiving objects: 11% (277/2513) Receiving objects: 12% (302/2513) Receiving objects: 13% (327/2513) Receiving objects: 14% (352/2513) Receiving objects: 15% (377/2513) Receiving objects: 16% (403/2513) Receiving objects: 17% (428/2513) Receiving objects: 18% (453/2513) Receiving objects: 19% (478/2513) Receiving objects: 20% (503/2513) Receiving objects: 21% (528/2513) Receiving objects: 22% (553/2513) Receiving objects: 23% (578/2513) Receiving objects: 24% (604/2513) Receiving objects: 25% (629/2513) Receiving objects: 26% (654/2513) Receiving objects: 27% (679/2513) Receiving objects: 28% (704/2513) Receiving objects: 29% (729/2513) Receiving objects: 30% (754/2513) Receiving objects: 31% (780/2513) Receiving objects: 32% (805/2513) Receiving objects: 33% (830/2513) Receiving objects: 34% (855/2513) Receiving objects: 35% (880/2513) Receiving objects: 36% (905/2513) Receiving objects: 37% (930/2513) Receiving objects: 38% (955/2513) Receiving objects: 39% (981/2513) Receiving objects: 40% (1006/2513) Receiving objects: 41% (1031/2513) Receiving objects: 42% (1056/2513) Receiving objects: 43% (1081/2513) Receiving objects: 44% (1106/2513) Receiving objects: 45% (1131/2513) Receiving objects: 46% (1156/2513) Receiving objects: 47% (1182/2513) Receiving objects: 48% (1207/2513) Receiving objects: 49% (1232/2513) Receiving objects: 50% (1257/2513) Receiving objects: 51% (1282/2513) Receiving objects: 52% (1307/2513) Receiving objects: 53% (1332/2513) Receiving objects: 54% (1358/2513) Receiving objects: 55% (1383/2513) Receiving objects: 56% (1408/2513) Receiving objects: 57% (1433/2513) Receiving objects: 58% (1458/2513) Receiving objects: 59% (1483/2513) Receiving objects: 60% (1508/2513) Receiving objects: 61% (1533/2513) Receiving objects: 62% (1559/2513) Receiving objects: 63% (1584/2513) Receiving objects: 64% (1609/2513) Receiving objects: 65% (1634/2513) Receiving objects: 66% (1659/2513) Receiving objects: 67% (1684/2513) Receiving objects: 68% (1709/2513) Receiving objects: 69% (1734/2513) Receiving objects: 70% (1760/2513) Receiving objects: 71% (1785/2513) Receiving objects: 72% (1810/2513) Receiving objects: 73% (1835/2513) Receiving objects: 74% (1860/2513) Receiving objects: 75% (1885/2513) Receiving objects: 76% (1910/2513) Receiving objects: 77% (1936/2513) Receiving objects: 78% (1961/2513) Receiving objects: 79% (1986/2513) Receiving objects: 80% (2011/2513) Receiving objects: 81% (2036/2513) Receiving objects: 82% (2061/2513) Receiving objects: 83% (2086/2513) Receiving objects: 84% (2111/2513) Receiving objects: 85% (2137/2513) Receiving objects: 86% (2162/2513) Receiving objects: 87% (2187/2513) Receiving objects: 88% (2212/2513) Receiving objects: 89% (2237/2513) Receiving objects: 90% (2262/2513) Receiving objects: 91% (2287/2513) Receiving objects: 92% (2312/2513) Receiving objects: 93% (2338/2513) Receiving objects: 94% (2363/2513) Receiving objects: 95% (2388/2513) Receiving objects: 96% (2413/2513) remote: Total 2513 (delta 1370), reused 1217 (delta 1146), pack-reused 911 (from 3)_bk;t=1781335820360 +_bk;t=1781335820362Receiving objects: 97% (2438/2513) Receiving objects: 98% (2463/2513) Receiving objects: 99% (2488/2513) Receiving objects: 100% (2513/2513) Receiving objects: 100% (2513/2513), 1.58 MiB | 11.46 MiB/s, done. +_bk;t=1781335820362Resolving deltas: 0% (0/1537) Resolving deltas: 1% (16/1537) Resolving deltas: 2% (31/1537) Resolving deltas: 3% (47/1537) Resolving deltas: 4% (63/1537) Resolving deltas: 5% (77/1537) Resolving deltas: 6% (93/1537) Resolving deltas: 7% (110/1537) Resolving deltas: 8% (123/1537) Resolving deltas: 9% (139/1537) Resolving deltas: 10% (154/1537) Resolving deltas: 11% (171/1537) Resolving deltas: 12% (185/1537) Resolving deltas: 13% (200/1537) Resolving deltas: 14% (217/1537) Resolving deltas: 15% (231/1537) Resolving deltas: 16% (246/1537) Resolving deltas: 17% (262/1537) Resolving deltas: 18% (277/1537) Resolving deltas: 19% (293/1537) Resolving deltas: 20% (308/1537) Resolving deltas: 21% (323/1537) Resolving deltas: 22% (339/1537) Resolving deltas: 23% (354/1537) Resolving deltas: 24% (369/1537) Resolving deltas: 25% (385/1537) Resolving deltas: 26% (400/1537) Resolving deltas: 27% (415/1537) Resolving deltas: 28% (431/1537) Resolving deltas: 29% (446/1537) Resolving deltas: 30% (462/1537) Resolving deltas: 31% (477/1537) Resolving deltas: 32% (492/1537) Resolving deltas: 33% (508/1537) Resolving deltas: 34% (523/1537) Resolving deltas: 35% (538/1537) Resolving deltas: 36% (554/1537) Resolving deltas: 37% (569/1537) Resolving deltas: 38% (585/1537) Resolving deltas: 39% (600/1537) Resolving deltas: 40% (615/1537) Resolving deltas: 41% (631/1537) Resolving deltas: 42% (646/1537) Resolving deltas: 43% (661/1537) Resolving deltas: 44% (677/1537) Resolving deltas: 45% (692/1537) Resolving deltas: 46% (708/1537) Resolving deltas: 47% (723/1537) Resolving deltas: 48% (738/1537) Resolving deltas: 49% (754/1537) Resolving deltas: 50% (769/1537) Resolving deltas: 51% (784/1537) Resolving deltas: 52% (800/1537) Resolving deltas: 53% (815/1537) Resolving deltas: 54% (830/1537) Resolving deltas: 55% (846/1537) Resolving deltas: 56% (861/1537) Resolving deltas: 57% (877/1537) Resolving deltas: 58% (892/1537) Resolving deltas: 59% (907/1537) Resolving deltas: 60% (923/1537) Resolving deltas: 61% (938/1537) Resolving deltas: 62% (953/1537) Resolving deltas: 63% (969/1537) Resolving deltas: 64% (984/1537) Resolving deltas: 65% (1000/1537) Resolving deltas: 66% (1015/1537) Resolving deltas: 67% (1030/1537) Resolving deltas: 68% (1046/1537) Resolving deltas: 69% (1061/1537) Resolving deltas: 70% (1076/1537) Resolving deltas: 71% (1092/1537) Resolving deltas: 72% (1107/1537) Resolving deltas: 73% (1123/1537) Resolving deltas: 74% (1138/1537) Resolving deltas: 75% (1153/1537) Resolving deltas: 76% (1169/1537) Resolving deltas: 77% (1184/1537) Resolving deltas: 78% (1199/1537) Resolving deltas: 79% (1215/1537) Resolving deltas: 80% (1230/1537) Resolving deltas: 81% (1245/1537) Resolving deltas: 82% (1261/1537) Resolving deltas: 83% (1276/1537) Resolving deltas: 84% (1292/1537) Resolving deltas: 85% (1307/1537) Resolving deltas: 86% (1322/1537) Resolving deltas: 87% (1338/1537) Resolving deltas: 88% (1353/1537) Resolving deltas: 89% (1368/1537) Resolving deltas: 90% (1384/1537) Resolving deltas: 91% (1399/1537) Resolving deltas: 92% (1415/1537) Resolving deltas: 93% (1430/1537) Resolving deltas: 94% (1445/1537) Resolving deltas: 95% (1461/1537) Resolving deltas: 96% (1476/1537) Resolving deltas: 97% (1491/1537) Resolving deltas: 98% (1507/1537) Resolving deltas: 99% (1522/1537) Resolving deltas: 100% (1537/1537) Resolving deltas: 100% (1537/1537), completed with 253 local objects. +_bk;t=1781335820514From https://github.com/bazel-contrib/rules_python +_bk;t=1781335820514 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335820516$ cd /var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python +_bk;t=1781335820516$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335820518Cloning into '.'... +_bk;t=1781335820648POST git-upload-pack (175 bytes) +_bk;t=1781335820692POST git-upload-pack (gzip 2193 to 1014 bytes) +_bk;t=1781335820742remote: Enumerating objects: 2527, done._bk;t=1781335820742 +_bk;t=1781335820742remote: Counting objects: 0% (1/1595)_bk;t=1781335820742 remote: Counting objects: 1% (16/1595)_bk;t=1781335820742 remote: Counting objects: 2% (32/1595)_bk;t=1781335820742 remote: Counting objects: 3% (48/1595)_bk;t=1781335820742 remote: Counting objects: 4% (64/1595)_bk;t=1781335820742 remote: Counting objects: 5% (80/1595)_bk;t=1781335820742 remote: Counting objects: 6% (96/1595)_bk;t=1781335820742 remote: Counting objects: 7% (112/1595)_bk;t=1781335820742 remote: Counting objects: 8% (128/1595)_bk;t=1781335820742 remote: Counting objects: 9% (144/1595)_bk;t=1781335820742 remote: Counting objects: 10% (160/1595)_bk;t=1781335820742 remote: Counting objects: 11% (176/1595)_bk;t=1781335820742 remote: Counting objects: 12% (192/1595)_bk;t=1781335820742 remote: Counting objects: 13% (208/1595)_bk;t=1781335820742 remote: Counting objects: 14% (224/1595)_bk;t=1781335820742 remote: Counting objects: 15% (240/1595)_bk;t=1781335820742 remote: Counting objects: 16% (256/1595)_bk;t=1781335820742 remote: Counting objects: 17% (272/1595)_bk;t=1781335820742 remote: Counting objects: 18% (288/1595)_bk;t=1781335820742 remote: Counting objects: 19% (304/1595)_bk;t=1781335820742 remote: Counting objects: 20% (319/1595)_bk;t=1781335820742 remote: Counting objects: 21% (335/1595)_bk;t=1781335820742 remote: Counting objects: 22% (351/1595)_bk;t=1781335820742 remote: Counting objects: 23% (367/1595)_bk;t=1781335820742 remote: Counting objects: 24% (383/1595)_bk;t=1781335820742 remote: Counting objects: 25% (399/1595)_bk;t=1781335820742 remote: Counting objects: 26% (415/1595)_bk;t=1781335820742 remote: Counting objects: 27% (431/1595)_bk;t=1781335820742 remote: Counting objects: 28% (447/1595)_bk;t=1781335820742 remote: Counting objects: 29% (463/1595)_bk;t=1781335820742 remote: Counting objects: 30% (479/1595)_bk;t=1781335820742 remote: Counting objects: 31% (495/1595)_bk;t=1781335820742 remote: Counting objects: 32% (511/1595)_bk;t=1781335820742 remote: Counting objects: 33% (527/1595)_bk;t=1781335820742 remote: Counting objects: 34% (543/1595)_bk;t=1781335820742 remote: Counting objects: 35% (559/1595)_bk;t=1781335820742 remote: Counting objects: 36% (575/1595)_bk;t=1781335820742 remote: Counting objects: 37% (591/1595)_bk;t=1781335820742 remote: Counting objects: 38% (607/1595)_bk;t=1781335820742 remote: Counting objects: 39% (623/1595)_bk;t=1781335820742 remote: Counting objects: 40% (638/1595)_bk;t=1781335820742 remote: Counting objects: 41% (654/1595)_bk;t=1781335820742 remote: Counting objects: 42% (670/1595)_bk;t=1781335820742 remote: Counting objects: 43% (686/1595)_bk;t=1781335820742 remote: Counting objects: 44% (702/1595)_bk;t=1781335820742 remote: Counting objects: 45% (718/1595)_bk;t=1781335820742 remote: Counting objects: 46% (734/1595)_bk;t=1781335820742 remote: Counting objects: 47% (750/1595)_bk;t=1781335820742 remote: Counting objects: 48% (766/1595)_bk;t=1781335820742 remote: Counting objects: 49% (782/1595)_bk;t=1781335820742 remote: Counting objects: 50% (798/1595)_bk;t=1781335820742 remote: Counting objects: 51% (814/1595)_bk;t=1781335820742 remote: Counting objects: 52% (830/1595)_bk;t=1781335820742 remote: Counting objects: 53% (846/1595)_bk;t=1781335820742 remote: Counting objects: 54% (862/1595)_bk;t=1781335820742 remote: Counting objects: 55% (878/1595)_bk;t=1781335820742 remote: Counting objects: 56% (894/1595)_bk;t=1781335820742 remote: Counting objects: 57% (910/1595)_bk;t=1781335820742 remote: Counting objects: 58% (926/1595)_bk;t=1781335820742 remote: Counting objects: 59% (942/1595)_bk;t=1781335820742 remote: Counting objects: 60% (957/1595)_bk;t=1781335820742 remote: Counting objects: 61% (973/1595)_bk;t=1781335820742 remote: Counting objects: 62% (989/1595)_bk;t=1781335820742 remote: Counting objects: 63% (1005/1595)_bk;t=1781335820743 remote: Counting objects: 64% (1021/1595)_bk;t=1781335820743 remote: Counting objects: 65% (1037/1595)_bk;t=1781335820743 remote: Counting objects: 66% (1053/1595)_bk;t=1781335820743 remote: Counting objects: 67% (1069/1595)_bk;t=1781335820743 remote: Counting objects: 68% (1085/1595)_bk;t=1781335820743 remote: Counting objects: 69% (1101/1595)_bk;t=1781335820743 remote: Counting objects: 70% (1117/1595)_bk;t=1781335820743 remote: Counting objects: 71% (1133/1595)_bk;t=1781335820743 remote: Counting objects: 72% (1149/1595)_bk;t=1781335820743 remote: Counting objects: 73% (1165/1595)_bk;t=1781335820743 remote: Counting objects: 74% (1181/1595)_bk;t=1781335820743 remote: Counting objects: 75% (1197/1595)_bk;t=1781335820743 remote: Counting objects: 76% (1213/1595)_bk;t=1781335820743 remote: Counting objects: 77% (1229/1595)_bk;t=1781335820743 remote: Counting objects: 78% (1245/1595)_bk;t=1781335820743 remote: Counting objects: 79% (1261/1595)_bk;t=1781335820743 remote: Counting objects: 80% (1276/1595)_bk;t=1781335820743 remote: Counting objects: 81% (1292/1595)_bk;t=1781335820743 remote: Counting objects: 82% (1308/1595)_bk;t=1781335820743 remote: Counting objects: 83% (1324/1595)_bk;t=1781335820743 remote: Counting objects: 84% (1340/1595)_bk;t=1781335820743 remote: Counting objects: 85% (1356/1595)_bk;t=1781335820743 remote: Counting objects: 86% (1372/1595)_bk;t=1781335820743 remote: Counting objects: 87% (1388/1595)_bk;t=1781335820743 remote: Counting objects: 88% (1404/1595)_bk;t=1781335820743 remote: Counting objects: 89% (1420/1595)_bk;t=1781335820743 remote: Counting objects: 90% (1436/1595)_bk;t=1781335820743 remote: Counting objects: 91% (1452/1595)_bk;t=1781335820743 remote: Counting objects: 92% (1468/1595)_bk;t=1781335820743 remote: Counting objects: 93% (1484/1595)_bk;t=1781335820743 remote: Counting objects: 94% (1500/1595)_bk;t=1781335820743 remote: Counting objects: 95% (1516/1595)_bk;t=1781335820743 remote: Counting objects: 96% (1532/1595)_bk;t=1781335820743 remote: Counting objects: 97% (1548/1595)_bk;t=1781335820743 remote: Counting objects: 98% (1564/1595)_bk;t=1781335820743 remote: Counting objects: 99% (1580/1595)_bk;t=1781335820743 remote: Counting objects: 100% (1595/1595)_bk;t=1781335820743 remote: Counting objects: 100% (1595/1595), done._bk;t=1781335820743 +_bk;t=1781335820743remote: Compressing objects: 0% (1/384)_bk;t=1781335820743 remote: Compressing objects: 1% (4/384)_bk;t=1781335820743 remote: Compressing objects: 2% (8/384)_bk;t=1781335820743 remote: Compressing objects: 3% (12/384)_bk;t=1781335820743 remote: Compressing objects: 4% (16/384)_bk;t=1781335820743 remote: Compressing objects: 5% (20/384)_bk;t=1781335820743 remote: Compressing objects: 6% (24/384)_bk;t=1781335820743 remote: Compressing objects: 7% (27/384)_bk;t=1781335820743 remote: Compressing objects: 8% (31/384)_bk;t=1781335820743 remote: Compressing objects: 9% (35/384)_bk;t=1781335820743 remote: Compressing objects: 10% (39/384)_bk;t=1781335820743 remote: Compressing objects: 11% (43/384)_bk;t=1781335820743 remote: Compressing objects: 12% (47/384)_bk;t=1781335820743 remote: Compressing objects: 13% (50/384)_bk;t=1781335820743 remote: Compressing objects: 14% (54/384)_bk;t=1781335820743 remote: Compressing objects: 15% (58/384)_bk;t=1781335820743 remote: Compressing objects: 16% (62/384)_bk;t=1781335820743 remote: Compressing objects: 17% (66/384)_bk;t=1781335820743 remote: Compressing objects: 18% (70/384)_bk;t=1781335820743 remote: Compressing objects: 19% (73/384)_bk;t=1781335820743 remote: Compressing objects: 20% (77/384)_bk;t=1781335820743 remote: Compressing objects: 21% (81/384)_bk;t=1781335820743 remote: Compressing objects: 22% (85/384)_bk;t=1781335820743 remote: Compressing objects: 23% (89/384)_bk;t=1781335820743 remote: Compressing objects: 24% (93/384)_bk;t=1781335820743 remote: Compressing objects: 25% (96/384)_bk;t=1781335820743 remote: Compressing objects: 26% (100/384)_bk;t=1781335820743 remote: Compressing objects: 27% (104/384)_bk;t=1781335820743 remote: Compressing objects: 28% (108/384)_bk;t=1781335820743 remote: Compressing objects: 29% (112/384)_bk;t=1781335820743 remote: Compressing objects: 30% (116/384)_bk;t=1781335820743 remote: Compressing objects: 31% (120/384)_bk;t=1781335820743 remote: Compressing objects: 32% (123/384)_bk;t=1781335820743 remote: Compressing objects: 33% (127/384)_bk;t=1781335820743 remote: Compressing objects: 34% (131/384)_bk;t=1781335820743 remote: Compressing objects: 35% (135/384)_bk;t=1781335820743 remote: Compressing objects: 36% (139/384)_bk;t=1781335820743 remote: Compressing objects: 37% (143/384)_bk;t=1781335820743 remote: Compressing objects: 38% (146/384)_bk;t=1781335820743 remote: Compressing objects: 39% (150/384)_bk;t=1781335820743 remote: Compressing objects: 40% (154/384)_bk;t=1781335820743 remote: Compressing objects: 41% (158/384)_bk;t=1781335820743 remote: Compressing objects: 42% (162/384)_bk;t=1781335820743 remote: Compressing objects: 43% (166/384)_bk;t=1781335820743 remote: Compressing objects: 44% (169/384)_bk;t=1781335820743 remote: Compressing objects: 45% (173/384)_bk;t=1781335820743 remote: Compressing objects: 46% (177/384)_bk;t=1781335820743 remote: Compressing objects: 47% (181/384)_bk;t=1781335820743 remote: Compressing objects: 48% (185/384)_bk;t=1781335820743 remote: Compressing objects: 49% (189/384)_bk;t=1781335820743 remote: Compressing objects: 50% (192/384)_bk;t=1781335820743 remote: Compressing objects: 51% (196/384)_bk;t=1781335820743 remote: Compressing objects: 52% (200/384)_bk;t=1781335820743 remote: Compressing objects: 53% (204/384)_bk;t=1781335820743 remote: Compressing objects: 54% (208/384)_bk;t=1781335820743 remote: Compressing objects: 55% (212/384)_bk;t=1781335820743 remote: Compressing objects: 56% (216/384)_bk;t=1781335820754 remote: Compressing objects: 57% (219/384)_bk;t=1781335820754 remote: Compressing objects: 58% (223/384)_bk;t=1781335820754 remote: Compressing objects: 59% (227/384)_bk;t=1781335820754 remote: Compressing objects: 60% (231/384)_bk;t=1781335820754 remote: Compressing objects: 61% (235/384)_bk;t=1781335820754 remote: Compressing objects: 62% (239/384)_bk;t=1781335820754 remote: Compressing objects: 63% (242/384)_bk;t=1781335820754 remote: Compressing objects: 64% (246/384)_bk;t=1781335820754 remote: Compressing objects: 65% (250/384)_bk;t=1781335820754 remote: Compressing objects: 66% (254/384)_bk;t=1781335820754 remote: Compressing objects: 67% (258/384)_bk;t=1781335820754 remote: Compressing objects: 68% (262/384)_bk;t=1781335820754 remote: Compressing objects: 69% (265/384)_bk;t=1781335820754 remote: Compressing objects: 70% (269/384)_bk;t=1781335820754 remote: Compressing objects: 71% (273/384)_bk;t=1781335820754 remote: Compressing objects: 72% (277/384)_bk;t=1781335820754 remote: Compressing objects: 73% (281/384)_bk;t=1781335820754 remote: Compressing objects: 74% (285/384)_bk;t=1781335820754 remote: Compressing objects: 75% (288/384)_bk;t=1781335820754 remote: Compressing objects: 76% (292/384)_bk;t=1781335820754 remote: Compressing objects: 77% (296/384)_bk;t=1781335820754 remote: Compressing objects: 78% (300/384)_bk;t=1781335820754 remote: Compressing objects: 79% (304/384)_bk;t=1781335820754 remote: Compressing objects: 80% (308/384)_bk;t=1781335820754 remote: Compressing objects: 81% (312/384)_bk;t=1781335820754 remote: Compressing objects: 82% (315/384)_bk;t=1781335820754 remote: Compressing objects: 83% (319/384)_bk;t=1781335820754 remote: Compressing objects: 84% (323/384)_bk;t=1781335820754 remote: Compressing objects: 85% (327/384)_bk;t=1781335820754 remote: Compressing objects: 86% (331/384)_bk;t=1781335820754 remote: Compressing objects: 87% (335/384)_bk;t=1781335820754 remote: Compressing objects: 88% (338/384)_bk;t=1781335820754 remote: Compressing objects: 89% (342/384)_bk;t=1781335820754 remote: Compressing objects: 90% (346/384)_bk;t=1781335820754 remote: Compressing objects: 91% (350/384)_bk;t=1781335820754 remote: Compressing objects: 92% (354/384)_bk;t=1781335820754 remote: Compressing objects: 93% (358/384)_bk;t=1781335820754 remote: Compressing objects: 94% (361/384)_bk;t=1781335820754 remote: Compressing objects: 95% (365/384)_bk;t=1781335820754 remote: Compressing objects: 96% (369/384)_bk;t=1781335820754 remote: Compressing objects: 97% (373/384)_bk;t=1781335820754 remote: Compressing objects: 98% (377/384)_bk;t=1781335820754 remote: Compressing objects: 99% (381/384)_bk;t=1781335820754 remote: Compressing objects: 100% (384/384)_bk;t=1781335820754 remote: Compressing objects: 100% (384/384), done._bk;t=1781335820754 +_bk;t=1781335820767Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1421), reused 1216 (delta 1211), pack-reused 932 (from 3)_bk;t=1781335820884 +_bk;t=1781335820885Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.59 MiB | 13.38 MiB/s, done. +_bk;t=1781335820887Resolving deltas: 0% (0/1591) Resolving deltas: 1% (16/1591) Resolving deltas: 2% (32/1591) Resolving deltas: 3% (48/1591) Resolving deltas: 4% (64/1591) Resolving deltas: 5% (80/1591) Resolving deltas: 6% (96/1591) Resolving deltas: 7% (112/1591) Resolving deltas: 8% (128/1591) Resolving deltas: 9% (144/1591) Resolving deltas: 10% (160/1591) Resolving deltas: 11% (176/1591) Resolving deltas: 12% (191/1591) Resolving deltas: 13% (207/1591) Resolving deltas: 14% (223/1591) Resolving deltas: 15% (239/1591) Resolving deltas: 16% (255/1591) Resolving deltas: 17% (271/1591) Resolving deltas: 18% (287/1591) Resolving deltas: 19% (303/1591) Resolving deltas: 20% (319/1591) Resolving deltas: 21% (335/1591) Resolving deltas: 22% (351/1591) Resolving deltas: 23% (366/1591) Resolving deltas: 24% (382/1591) Resolving deltas: 25% (398/1591) Resolving deltas: 26% (414/1591) Resolving deltas: 27% (430/1591) Resolving deltas: 28% (446/1591) Resolving deltas: 29% (462/1591) Resolving deltas: 30% (478/1591) Resolving deltas: 31% (494/1591) Resolving deltas: 32% (510/1591) Resolving deltas: 33% (526/1591) Resolving deltas: 34% (541/1591) Resolving deltas: 35% (557/1591) Resolving deltas: 36% (573/1591) Resolving deltas: 37% (589/1591) Resolving deltas: 38% (605/1591) Resolving deltas: 39% (621/1591) Resolving deltas: 40% (637/1591) Resolving deltas: 41% (653/1591) Resolving deltas: 42% (669/1591) Resolving deltas: 43% (685/1591) Resolving deltas: 44% (701/1591) Resolving deltas: 45% (716/1591) Resolving deltas: 46% (732/1591) Resolving deltas: 47% (748/1591) Resolving deltas: 48% (764/1591) Resolving deltas: 49% (780/1591) Resolving deltas: 50% (796/1591) Resolving deltas: 51% (812/1591) Resolving deltas: 52% (828/1591) Resolving deltas: 53% (844/1591) Resolving deltas: 54% (860/1591) Resolving deltas: 55% (876/1591) Resolving deltas: 56% (891/1591) Resolving deltas: 57% (907/1591) Resolving deltas: 58% (923/1591) Resolving deltas: 59% (939/1591) Resolving deltas: 60% (955/1591) Resolving deltas: 61% (971/1591) Resolving deltas: 62% (987/1591) Resolving deltas: 63% (1003/1591) Resolving deltas: 64% (1019/1591) Resolving deltas: 65% (1035/1591) Resolving deltas: 66% (1051/1591) Resolving deltas: 67% (1066/1591) Resolving deltas: 68% (1082/1591) Resolving deltas: 69% (1098/1591) Resolving deltas: 70% (1114/1591) Resolving deltas: 71% (1130/1591) Resolving deltas: 72% (1146/1591) Resolving deltas: 73% (1162/1591) Resolving deltas: 74% (1178/1591) Resolving deltas: 75% (1194/1591) Resolving deltas: 76% (1210/1591) Resolving deltas: 77% (1226/1591) Resolving deltas: 78% (1241/1591) Resolving deltas: 79% (1257/1591) Resolving deltas: 80% (1273/1591) Resolving deltas: 81% (1289/1591) Resolving deltas: 82% (1305/1591) Resolving deltas: 83% (1321/1591) Resolving deltas: 84% (1337/1591) Resolving deltas: 85% (1353/1591) Resolving deltas: 86% (1369/1591) Resolving deltas: 87% (1385/1591) Resolving deltas: 88% (1401/1591) Resolving deltas: 89% (1416/1591) Resolving deltas: 90% (1432/1591) Resolving deltas: 91% (1448/1591) Resolving deltas: 92% (1464/1591) Resolving deltas: 93% (1480/1591) Resolving deltas: 94% (1496/1591) Resolving deltas: 95% (1512/1591) Resolving deltas: 96% (1528/1591) Resolving deltas: 97% (1544/1591) Resolving deltas: 98% (1560/1591) Resolving deltas: 99% (1576/1591) Resolving deltas: 100% (1591/1591) Resolving deltas: 100% (1591/1591), completed with 272 local objects. +_bk;t=1781335821163$ git clean -ffxdq +_bk;t=1781335821169# Fetch and checkout pull request head from GitHub +_bk;t=1781335821169$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335821301POST git-upload-pack (395 bytes) +_bk;t=1781335821351From https://github.com/bazel-contrib/rules_python +_bk;t=1781335821351 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335821351 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD +_bk;t=1781335821356# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` +_bk;t=1781335821356$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335821418Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. +_bk;t=1781335821418 +_bk;t=1781335821418You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335821418changes and commit them, and you can discard any commits you make in this +_bk;t=1781335821418state without impacting any branches by switching back to a branch. +_bk;t=1781335821418 +_bk;t=1781335821418If you want to create a new branch to retain commits you create, you may +_bk;t=1781335821418do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335821418 +_bk;t=1781335821418 git switch -c +_bk;t=1781335821418 +_bk;t=1781335821418Or undo this operation with: +_bk;t=1781335821418 +_bk;t=1781335821418 git switch - +_bk;t=1781335821418 +_bk;t=1781335821418Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335821418 +_bk;t=1781335821418HEAD is now at d6eeb759 feat(skills): Include Buildkite Build ID in monitor_remote_ci summary +_bk;t=1781335821419# Cleaning again to catch any post-checkout changes +_bk;t=1781335821419$ git clean -ffxdq +_bk;t=1781335821425# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335821425# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335821425~~~ Running agent post-checkout hook +_bk;t=1781335821426$ /etc/buildkite-agent/hooks/post-checkout +_bk;t=1781335821456CHECKOUT_END_TIME: 1781335821441 +_bk;t=1781335821456CHECKOUT_DURATION_S: 1.516 +_bk;t=1781335821469Added: +_bk;t=1781335821469+ CHECKOUT_END_TIME +_bk;t=1781335821482Added: +_bk;t=1781335821482+ CHECKOUT_DURATION_S +_bk;t=1781335821496~~~ Running agent pre-command hook +_bk;t=1781335821496$ /etc/buildkite-agent/hooks/pre-command +_bk;t=1781335821526PREP_DURATION_S: 0.071 +_bk;t=1781335821538Added: +_bk;t=1781335821538+ PREP_DURATION_S +_bk;t=1781335821554~~~ Running plugin docker-buildkite-plugin command hook +_bk;t=1781335821554$ /etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command +_bk;t=1781335821606--- :docker: Pulling gcr.io/bazel-public/ubuntu2204 +_bk;t=1781335821618Using default tag: latest +_bk;t=1781335823073latest: Pulling from bazel-public/ubuntu2204 +_bk;t=1781335823129Digest: sha256:3024b6fbc873688940dfe144c5f1a6cfe0c450bd287748c6f170db01e2459981 +_bk;t=1781335823129Status: Image is up to date for gcr.io/bazel-public/ubuntu2204:latest +_bk;t=1781335823130gcr.io/bazel-public/ubuntu2204:latest +_bk;t=1781335823145docker network host already exists +_bk;t=1781335823146--- :docker: Running command in gcr.io/bazel-public/ubuntu2204 +_bk;t=1781335823146$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_RETRY_COUNT --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_PIPELINE_ID --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_STEP_KEY --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_JOB_ID --env BUILDKITE_COMPUTE_TYPE --env BUILDKITE_PIPELINE_NAME --env BUILDKITE_STEP_ID --env BUILDKITE_MESSAGE --env BUILDKITE_REBUILT_FROM_BUILD_ID --env BUILDKITE_AGENT_NAME --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_ORGANIZATION_SLUG --env BUILDKITE_BRANCH --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_BUILD_ID --env BUILDKITE_COMMIT --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE --env BUILDKITE_LABEL --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_PULL_REQUEST --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_URL --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_SOURCE --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_COMMAND --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_TIMEOUT --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_AGENT_ID --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_REPO --env BUILDKITE_PLUGINS --env CI --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_TAG --network host --label com.buildkite.job-id=019ebfe3-639c-45e9-a409-b70bc82f1980 gcr.io/bazel-public/ubuntu2204 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py\npython3 bazelci.py runner --task=ubuntu_rolling' +_bk;t=1781335824142 +_bk;t=1781335824142 +_bk;t=1781335824142--- :bazel: Using Bazel version rolling +_bk;t=1781335824142 +_bk;t=1781335824142 +_bk;t=1781335824142bazel --version +_bk;t=17813358244112026/06/13 07:30:24 Downloading https://releases.bazel.build/10.0.0/rolling/10.0.0-pre.20260601.1/bazel-10.0.0-pre.20260601.1-linux-x86_64... +_bk;t=1781335824421 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 4 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 9 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 14 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 19 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 21 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 22 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 24 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 26 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 27 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 29 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 31 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 32 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 34 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 36 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 37 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 39 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 41 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 42 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 44 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 45 MB out of 62 MB (74%) Downloading: 46 MB out of 62 MB (74%) Downloading: 46 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 47 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 49 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 50 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 52 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 54 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 55 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 57 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 59 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 60 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) +_bk;t=1781335824894bazel 10.0.0-pre.20260601.1 +_bk;t=1781335824897bazel info output_base +_bk;t=1781335825072Extracting Bazel installation... +_bk;t=1781335826412Starting local Bazel server (10.0.0-pre.20260601.1) and connecting to it... +_bk;t=1781335827807WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335827810WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335827810WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335827810WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335827810WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335827810WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335827810INFO: Invocation ID: 11e14538-62a6-4e41-936c-078e4a61f122 +_bk;t=1781335827864 +_bk;t=1781335827864 +_bk;t=1781335827864--- :information_source: Bazel Info +_bk;t=1781335827864 +_bk;t=1781335827864 +_bk;t=1781335827864bazel --nosystem_rc --nohome_rc version +_bk;t=1781335828071WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335828071WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335828071WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335828071WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335828071INFO: Invocation ID: bff28257-2ed2-4206-a38f-bd3180b3be40 +_bk;t=1781335828077Bazelisk version: v1.28.1 +_bk;t=1781335828077Build label: 10.0.0-pre.20260601.1 +_bk;t=1781335828077Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer +_bk;t=1781335828077Build time: Thu Jun 11 17:11:25 2026 (1781197885) +_bk;t=1781335828077Build timestamp: 1781197885 +_bk;t=1781335828077Build timestamp as int: 1781197885 +_bk;t=1781335828077 +_bk;t=1781335828077bazel --nosystem_rc --nohome_rc info +_bk;t=1781335828283WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335828283WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335828283WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335828283WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335828283WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335828284WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335828284INFO: Invocation ID: 72ba5ce3-a292-4866-aab1-d70f65671844 +_bk;t=1781335828410WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335829477WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335829477WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335829477WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335829477WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335830077bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335830077bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335830078bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335830078character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 +_bk;t=1781335830078command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log +_bk;t=1781335830078committed-heap-size: 134MB +_bk;t=1781335830079execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main +_bk;t=1781335830080gc-count: 15 +_bk;t=1781335830080gc-time: 50ms +_bk;t=1781335830081install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d +_bk;t=1781335830082java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d/embedded_tools/jdk +_bk;t=1781335830082java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335830082java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335830083local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335830083max-heap-size: 31658MB +_bk;t=1781335830084output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 +_bk;t=1781335830084output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out +_bk;t=1781335830085package_path: %workspace% +_bk;t=1781335830085release: release 10.0.0-pre.20260601.1 +_bk;t=1781335830086repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335830087server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-h6l7.buildkite-agent.log.java.20260613-073026.46 +_bk;t=1781335830087server_pid: 46 +_bk;t=1781335830088used-heap-size: 59MB +_bk;t=1781335830089workspace: /workdir +_bk;t=1781335830107 +_bk;t=1781335830109 +_bk;t=1781335830109--- :information_source: Environment Variables +_bk;t=1781335830109 +_bk;t=1781335830109 +_bk;t=1781335830109BUILDKITE_PULL_REQUEST_LABELS=() +_bk;t=1781335830109BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) +_bk;t=1781335830109LANGUAGE=(C.UTF-8) +_bk;t=1781335830109BUILDKITE_BUILD_CREATOR=(Richard Levasseur) +_bk;t=1781335830109CI=(true) +_bk;t=1781335830109BUILDKITE_TRIGGERED_FROM_BUILD_ID=() +_bk;t=1781335830109BUILDKITE_ARTIFACT_PATHS=() +_bk;t=1781335830109HOSTNAME=(bk-docker-h6l7) +_bk;t=1781335830109BUILDKITE_GITHUB_ACTION=(synchronize) +_bk;t=1781335830109BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) +_bk;t=1781335830109BUILDKITE_AGENT_ID=(019ebfdd-75b2-413d-96a6-e79f53f78090) +_bk;t=1781335830109BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) +_bk;t=1781335830109BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) +_bk;t=1781335830109BUILDKITE_AGENT_META_DATA_QUEUE=(default) +_bk;t=1781335830109HOME=(/var/lib/buildkite-agent) +_bk;t=1781335830109BUILDKITE_STEP_KEY=() +_bk;t=1781335830109BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335830109BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() +_bk;t=1781335830109BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) +_bk;t=1781335830109BUILDKITE=(true) +_bk;t=1781335830109BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) +_bk;t=1781335830109BUILDKITE_COMPUTE_TYPE=(self-hosted) +_bk;t=1781335830109BUILDKITE_BUILD_NUMBER=(15722) +_bk;t=1781335830109BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() +_bk;t=1781335830109BUILDKITE_PIPELINE_PROVIDER=(github) +_bk;t=1781335830109BUILDKITE_TAG=() +_bk;t=1781335830109BUILDKITE_AGENT_META_DATA_OS=(linux) +_bk;t=1781335830109BUILDKITE_JOB_ID=(019ebfe3-639c-45e9-a409-b70bc82f1980) +_bk;t=1781335830109BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) +_bk;t=1781335830109BUILDKITE_PULL_REQUEST=(3812) +_bk;t=1781335830109TERM=(xterm) +_bk;t=1781335830109BUILDKITE_COMMIT_RESOLVED=(true) +_bk;t=1781335830109BUILDKITE_PIPELINE_SLUG=(rules-python-python) +_bk;t=1781335830109BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) +_bk;t=1781335830109PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) +_bk;t=1781335830109PREP_DURATION_S=(0.071) +_bk;t=1781335830109CHECKOUT_DURATION_S=(1.516) +_bk;t=1781335830109BUILDKITE_GITHUB_EVENT=(pull_request) +_bk;t=1781335830109BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) +_bk;t=1781335830109BUILDKITE_SOURCE=(webhook) +_bk;t=1781335830109BUILDKITE_RETRY_COUNT=(0) +_bk;t=1781335830109BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) +_bk;t=1781335830109LANG=(C.UTF-8) +_bk;t=1781335830109BUILDKITE_REBUILT_FROM_BUILD_ID=() +_bk;t=1781335830110BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/ubuntu2204","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) +_bk;t=1781335830110BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980) +_bk;t=1781335830110DEBIAN_FRONTEND=(noninteractive) +_bk;t=1781335830110BUILDKITE_LABEL=(Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS) +_bk;t=1781335830110BUILDKITE_PROJECT_PROVIDER=(github) +_bk;t=1781335830110BUILDKITE_ORGANIZATION_SLUG=(bazel) +_bk;t=1781335830110BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) +_bk;t=1781335830110BUILDKITE_AGENT_META_DATA_KIND=(docker) +_bk;t=1781335830110BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() +_bk;t=1781335830110BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335830110BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335830110python3 bazelci.py runner --task=ubuntu_rolling) +_bk;t=1781335830110BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) +_bk;t=1781335830110BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) +_bk;t=1781335830110BUILDKITE_TIMEOUT=(480) +_bk;t=1781335830110BUILDKITE_STEP_ID=(019ebfe3-6278-4f05-8b7f-898f079a660d) +_bk;t=1781335830110BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335830110python3 bazelci.py runner --task=ubuntu_rolling) +_bk;t=1781335830110BUILDKITE_PIPELINE_NAME=(rules_python :python:) +_bk;t=1781335830110LC_ALL=(C.UTF-8) +_bk;t=1781335830110JAVA_HOME=(/usr/lib/jvm/java-21-openjdk-amd64) +_bk;t=1781335830110PWD=(/workdir) +_bk;t=1781335830110ANDROID_HOME=(/opt/android-sdk-linux) +_bk;t=1781335830110BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) +_bk;t=1781335830110BUILDKITE_AGENT_NAME=(bk-docker-h6l7) +_bk;t=1781335830110BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) +_bk;t=1781335830110BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) +_bk;t=1781335830110ANDROID_NDK_HOME=(/opt/android-ndk-r15c) +_bk;t=1781335830110BAZELCI_TASK=(ubuntu_rolling) +_bk;t=1781335830110BAZELISK_USER_AGENT=(Bazelisk/BazelCI) +_bk;t=1781335830110USE_BAZEL_VERSION=(rolling) +_bk;t=1781335830110OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) +_bk;t=1781335830110 +_bk;t=1781335830110 +_bk;t=1781335830110--- :dart: Calculating targets +_bk;t=1781335830110 +_bk;t=1781335830110 +_bk;t=1781335830111curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmp1cesl66b/bazelci-agent +_bk;t=1781335830111 +_bk;t=1781335830111 +_bk;t=1781335830111--- :bazel: Computing flags for test step +_bk;t=1781335830111 +_bk;t=1781335830112 +_bk;t=1781335830112Adding to platform cache key: b'bazel' +_bk;t=1781335830112Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335830112Adding to platform cache key: b'ubuntu2204' +_bk;t=1781335830112 +_bk;t=1781335830112 +_bk;t=1781335830112+++ :bazel: Test (10.0.0-pre.20260601.1) +_bk;t=1781335830112 +_bk;t=1781335830112 +_bk;t=1781335830112bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp1cesl66b/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --keep_going --test_tag_filters=-integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=USE_BAZEL_VERSION --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- //tests/... +_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335830443(07:30:30) WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335830443(07:30:30) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335830443(07:30:30) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335830443(07:30:30) INFO: Invocation ID: 67eae3b6-d4bb-47df-8e18-c383944c297b +_bk;t=1781335830443(07:30:30) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/67eae3b6-d4bb-47df-8e18-c383944c297b +_bk;t=1781335830444(07:30:30) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks +_bk;t=1781335830444(07:30:30) INFO: Options provided by the client: +_bk;t=1781335830444 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: +_bk;t=1781335830444 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335830444 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335830444 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335830444 'test' options: --test_output=errors +_bk;t=1781335830444(07:30:30) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335830478(07:30:30) INFO: Current date is 2026-06-13 +_bk;t=1781335830478(07:30:30) +_bk;t=1781335830479 _bk;t=1781335830479(07:30:30) Computing main repo mapping: +_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335830542(07:30:30) Computing main repo mapping: +_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335830542(07:30:30) Computing main repo mapping: +_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335830542(07:30:30) Computing main repo mapping: +_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335830542(07:30:30) Computing main repo mapping: +_bk;t=1781335830680/tmp/tmp1cesl66b/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp1cesl66b/test_bep.json +_bk;t=1781335831113 _bk;t=1781335831113(07:30:31) Loading: +_bk;t=1781335831129 _bk;t=1781335831129(07:30:31) Loading: 1 packages loaded +_bk;t=1781335833710 _bk;t=1781335833710(07:30:33) Analyzing: 590 targets (132 packages loaded, 0 targets configured) +_bk;t=1781335833725 _bk;t=1781335833725(07:30:33) Analyzing: 590 targets (132 packages loaded, 0 targets configured) +_bk;t=1781335833725 currently loading: @@platforms// +_bk;t=1781335833725 +_bk;t=1781335840496 _bk;t=1781335840496 _bk;t=1781335840496 _bk;t=1781335840496(07:30:40) Analyzing: 590 targets (214 packages loaded, 427,393 targets configured) +_bk;t=1781335840499 +_bk;t=1781335845491 _bk;t=1781335845491 _bk;t=1781335845491(07:30:45) Analyzing: 590 targets (249 packages loaded, 495,166 targets configured, 2 aspect applications) +_bk;t=1781335845491 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_10_4_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_13_0_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_12_1_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335845491 Fetching repository @@+python+python_3_12_4_x86_64-unknown-linux-gnu; starting 4s ... (45 fetches) +_bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499(07:30:50) Analyzing: 590 targets (393 packages loaded, 567,617 targets configured, 2 aspect applications) +_bk;t=1781335850499 currently loading: @@+pip+rules_python_publish_deps_311_markdown_it_py_py3_none_any_87327c59// ... (3 packages) +_bk;t=1781335850499 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335850499 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335850499 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335850499 Fetching repository @@+python+python_3_12_0_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335850499 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335850499 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335850499 Fetching repository @@+python+python_3_10_15_x86_64-unknown-linux-gnu; starting 4s +_bk;t=1781335850499 Fetching repository @@+python+python_3_11_5_x86_64-unknown-linux-gnu; starting 4s ... (37 fetches) +_bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156(07:30:52) DEBUG: /workdir/python/private/repo_utils.bzl:101:16: +_bk;t=1781335852156rules_python:unit-test WARNING: Could not find a whl or an sdist with sha256=deadbeef +_bk;t=1781335852156(07:30:52) Analyzing: 590 targets (447 packages loaded, 625,171 targets configured, 29 aspect applications) +_bk;t=1781335852157[189 / 205] 7 actions, 1 running +_bk;t=1781335852157 Creating source manifest for //tests/repo_utils:test_is_relative_to; 0s local +_bk;t=1781335852157 Testing //tests/python:test_default_from_defaults_file; 0s remote-cache +_bk;t=1781335852157 Testing //tests/pypi/python_tag:test_without_version; 0s remote-cache +_bk;t=1781335852157 Testing //tests/pypi/pep508:test_env_freebsd; 0s remote-cache +_bk;t=1781335852157 Testing //tests/py_runtime:test_must_have_either_inbuild_or_system_interpreter; 0s remote-cache +_bk;t=1781335852157 Testing //tests/py_runtime:test_interpreter_version_info_parses_values_to_struct; 0s remote-cache +_bk;t=1781335852157 [Prepa] action 'SolibSymlink _solib_k8/_U_A_A+python+python_U3_U11_U15_Ux86_U64-unknown-linux-gnu_S_S_Clibpython___Ulib/libpython3.11.so' +_bk;t=1781335852157 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 8s +_bk;t=1781335852157 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335852157 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 6s +_bk;t=1781335852157 Fetching repository @@+python+python_3_10_15_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335852157 Fetching repository @@+python+python_3_11_5_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335852157 Fetching repository @@+python+python_3_10_6_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335852157 Fetching repository @@+python+python_3_12_8_x86_64-unknown-linux-gnu; starting 5s +_bk;t=1781335852157 Fetching repository @@+python+python_3_10_16_x86_64-unknown-linux-gnu; starting 5s ... (33 fetches) +_bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174(07:30:57) Analyzing: 590 targets (471 packages loaded, 834,716 targets configured, 102 aspect applications) +_bk;t=1781335857174[1,753 / 2,062] 91 / 482 tests; 24 actions, 21 running; last test: //tests/builders:test_bool +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-2b3caf6f0eeb/bin/tests/multi_pypi/pypi_alpha/pypi_alpha_test.runfiles; 3s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 2s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_inputs.test.runfiles; 2s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-94a285a69336/bin/tests/toolchains/python_3.13.6_test.runfiles; 2s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 1s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-d321e9b24e85/bin/tests/toolchains/python_3.10.13_test.runfiles; 1s local +_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-0b8c764f65d0/bin/tests/toolchains/python_3.13.0_test.runfiles; 1s local ... +_bk;t=1781335857174 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 11s +_bk;t=1781335857174 Fetching repository @@+python+python_3_12_8_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335857174 Fetching repository @@+python+python_3_10_16_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335857174 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 10s +_bk;t=1781335857174 Fetching repository @@+python+python_3_12_9_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335857174 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335857174 Fetching repository @@+python+python_3_10_18_x86_64-unknown-linux-gnu; starting 9s +_bk;t=1781335857174 Fetching repository @@+python+python_3_10_11_x86_64-unknown-linux-gnu; starting 8s ... (33 fetches) +_bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168(07:31:02) Analyzing: 590 targets (522 packages loaded, 1,058,716 targets configured, 131 aspect applications) +_bk;t=1781335862168[2,439 / 2,766] 161 / 509 tests; 28 actions, 21 running; last test: //tests/python:test_first_occurance_of_the_toolchain_wins +_bk;t=1781335862168 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 6s local +_bk;t=1781335862168 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_pyproject_toml.test.runfiles; 5s local +_bk;t=1781335862168 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/py_zipapp/venv_zipapp_compressed_test.runfiles; 4s local +_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 3s local +_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-opt-exec/bin/external/rules_pkg+/pkg/private/tar/build_tar.runfiles [for tool]; 3s local +_bk;t=1781335862169 //tests/venv_site_packages_libs:venvs_site_packages_libs_test; 2s local +_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-fastbuild-ST-0e926c7efe9d/bin/tests/repl/repl_without_dep_test.runfiles; 2s local +_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/py_zipapp/system_python_zipapp_test.runfiles; 2s local ... +_bk;t=1781335862169 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335862169 Fetching repository @@+python+python_3_10_18_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335862169 Fetching repository @@+python+python_3_9_25_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335862169 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 13s +_bk;t=1781335862169 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 12s +_bk;t=1781335862169 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 12s +_bk;t=1781335862169 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 12s +_bk;t=1781335862169 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 11s ... (49 fetches) +_bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308(07:31:04) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335864308====================================================================== +_bk;t=1781335864308WARNING: Target: @@//tests/bootstrap_impls:_run_binary_bootstrap_script_zip_yes_test_bin +_bk;t=1781335864308 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335864308 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335864308 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335864308 instructions and guide, see: +_bk;t=1781335864308 +_bk;t=1781335864308 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335864308====================================================================== +_bk;t=1781335864308(07:31:04) Analyzing: 590 targets (527 packages loaded, 1,061,221 targets configured, 131 aspect applications) +_bk;t=1781335864308[2,653 / 2,968] 187 / 509 tests; 30 actions, 24 running; last test: //tests/pypi/hub_builder:test_index_url_precedence +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 5s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 4s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 4s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-55bf77600316/bin/tests/toolchains/python_3.12.1_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-b260b98f1953/bin/tests/toolchains/python_3.11.9_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-2c23f58d0980/bin/tests/toolchains/python_3.11.8_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local ... +_bk;t=1781335864308 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335864308 Fetching repository @@+python+python_3_9_25_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335864308 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335864308 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_11_13_x86_64-unknown-linux-gnu; starting 13s ... (48 fetches) +_bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308(07:31:04) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335864308====================================================================== +_bk;t=1781335864308WARNING: Target: @@//tests/bootstrap_impls:_run_binary_zip_yes_test_bin +_bk;t=1781335864308 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335864308 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335864308 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335864308 instructions and guide, see: +_bk;t=1781335864308 +_bk;t=1781335864308 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335864308====================================================================== +_bk;t=1781335864308(07:31:04) Analyzing: 590 targets (527 packages loaded, 1,061,227 targets configured, 131 aspect applications) +_bk;t=1781335864308[2,653 / 2,968] 187 / 509 tests; 30 actions, 24 running; last test: //tests/pypi/hub_builder:test_index_url_precedence +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 5s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 4s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 4s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-55bf77600316/bin/tests/toolchains/python_3.12.1_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-b260b98f1953/bin/tests/toolchains/python_3.11.9_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-2c23f58d0980/bin/tests/toolchains/python_3.11.8_test.runfiles; 3s local +_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local ... +_bk;t=1781335864308 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335864308 Fetching repository @@+python+python_3_9_25_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335864308 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 15s +_bk;t=1781335864308 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 14s +_bk;t=1781335864308 Fetching repository @@+python+python_3_11_13_x86_64-unknown-linux-gnu; starting 13s ... (48 fetches) +_bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450(07:31:07) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335867450====================================================================== +_bk;t=1781335867450WARNING: Target: @@//tests/base_rules/py_binary:test_basic_zip_subject +_bk;t=1781335867450 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335867450 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335867450 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335867450 instructions and guide, see: +_bk;t=1781335867450 +_bk;t=1781335867450 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335867450====================================================================== +_bk;t=1781335867450(07:31:07) Analyzing: 590 targets (554 packages loaded, 1,084,781 targets configured, 132 aspect applications) +_bk;t=1781335867450[2,796 / 3,093] 232 / 518 tests; 25 actions, 22 running; last test: //tests/python:test_add_new_version +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 9s local +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 6s local +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_requirements_in.test.runfiles; 6s local +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_find_runfiles_test.runfiles; 5s local +_bk;t=1781335867450 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 5s local +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/transition_py_test.runfiles; 5s local +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/system_python_nodeps_test.runfiles; 4s local +_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild-ST-2e9a8fe06305/bin/tests/toolchains/python_3.14.1_test.runfiles; 4s local ... +_bk;t=1781335867450 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 19s +_bk;t=1781335867450 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335867450 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335867450 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335867450 Fetching repository @@+python+python_3_11_13_x86_64-unknown-linux-gnu; starting 17s +_bk;t=1781335867450 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s +_bk;t=1781335867450 Fetching ...python_3_13_13_x86_64-unknown-linux-gnu; Extracting cpython-3.13.13_20260414-x86_64-unknown-linux-gnu-install_only.tar.gz 16s +_bk;t=1781335867450 Fetching ...86_64-unknown-linux-gnu; Extracting cpython-3.14.2_20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 16s ... (47 fetches) +_bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876(07:31:11) DEBUG: /workdir/python/private/py_executable.bzl:385:18: +_bk;t=1781335871876====================================================================== +_bk;t=1781335871876WARNING: Target: @@//tests/base_rules/py_test:test_basic_zip_subject +_bk;t=1781335871876 The `--build_python_zip` flag and implicit zipapp output of `py_binary` +_bk;t=1781335871876 and `py_test` is deprecated and will be removed in a future release. +_bk;t=1781335871876 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration +_bk;t=1781335871876 instructions and guide, see: +_bk;t=1781335871876 +_bk;t=1781335871876 https://github.com/bazel-contrib/rules_python/issues/3567 +_bk;t=1781335871876====================================================================== +_bk;t=1781335871876(07:31:11) Analyzing: 590 targets (599 packages loaded, 1,135,361 targets configured, 141 aspect applications) +_bk;t=1781335871876[3,289 / 3,618] 282 / 539 tests; 27 actions, 26 running; last test: //tests/base_rules/py_test:test_default_main_cannot_be_ambiguous +_bk;t=1781335871876 //tests/deprecated:versioned_compile_pip_requirements.test; 7s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 5s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/py_zipapp/venv_zipapp_test.runfiles; 4s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild-ST-02349822b801/bin/tests/runfiles/runfiles_min_python_test.runfiles; 4s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 4s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_py_test.runfiles; 3s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild-ST-2a28657a2db7/bin/tests/interpreter/python_src_test_3.11.runfiles; 3s local +_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/inherit_pythonsafepath_env_test.runfiles; 3s local ... +_bk;t=1781335871876 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 22s +_bk;t=1781335871876 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 22s +_bk;t=1781335871876 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 21s +_bk;t=1781335871876 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 17s +_bk;t=1781335871876 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 16s +_bk;t=1781335871876 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 15s +_bk;t=1781335871876 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 13s +_bk;t=1781335871876 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 12s ... (49 fetches) +_bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305(07:31:13) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335873305value of: string +_bk;t=1781335873305expected: /mac/python3.12 +_bk;t=1781335873305actual: /linux/python3.12 +_bk;t=1781335873305 +_bk;t=1781335873305(07:31:13) Analyzing: 590 targets (606 packages loaded, 1,155,789 targets configured, 150 aspect applications) +_bk;t=1781335873305[3,386 / 3,717] 293 / 551 tests; 29 actions, 27 running; last test: //tests/uv/uv:test_manual_url_spec +_bk;t=1781335873305 //tests/deprecated:versioned_compile_pip_requirements.test; 8s local +_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 6s local +_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_py_test.runfiles; 5s local +_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-2a28657a2db7/bin/tests/interpreter/python_src_test_3.11.runfiles; 5s local +_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-ddbceeda54c4/bin/tests/toolchains/python_3.12.9_test.runfiles; 4s local +_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-ce751f7648bf/bin/tests/toolchains/python_3.9.25_test.runfiles; 4s local +_bk;t=1781335873305 //tests/venv_site_packages_libs:whl_scripts_runnable_test; 4s local +_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-fe3e0ddff15f/bin/tests/toolchains/python_3.15.0a2_test.runfiles; 4s local ... +_bk;t=1781335873305 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 23s +_bk;t=1781335873305 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 23s +_bk;t=1781335873305 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 23s +_bk;t=1781335873305 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 19s +_bk;t=1781335873305 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 17s +_bk;t=1781335873305 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 16s +_bk;t=1781335873306 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 15s +_bk;t=1781335873306 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 14s ... (46 fetches) +_bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335877325value of: string +_bk;t=1781335877325expected: 3.10.20 +_bk;t=1781335877325actual: 3.11.15 +_bk;t=1781335877325 +_bk;t=1781335877325(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) +_bk;t=1781335877325[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877325 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877325 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877325 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877325 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335877325value of: string +_bk;t=1781335877325expected: 3.12.13 +_bk;t=1781335877325actual: 3.11.15 +_bk;t=1781335877325 +_bk;t=1781335877325(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) +_bk;t=1781335877325[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877325 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877325 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877325 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877325 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335877325value of: string +_bk;t=1781335877325expected: 3.13.13 +_bk;t=1781335877325actual: 3.11.15 +_bk;t=1781335877325 +_bk;t=1781335877325(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) +_bk;t=1781335877325[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877325 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877325 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877325 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877325 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335877326value of: string +_bk;t=1781335877326expected: 3.14.4 +_bk;t=1781335877326actual: 3.11.15 +_bk;t=1781335877326 +_bk;t=1781335877326(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) +_bk;t=1781335877326[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877326 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877326 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877326 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877326 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335877326value of: string +_bk;t=1781335877326expected: 3.15.0a8 +_bk;t=1781335877326actual: 3.11.15 +_bk;t=1781335877326 +_bk;t=1781335877326(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) +_bk;t=1781335877326[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877326 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877326 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877326 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877326 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.9.25 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.10.20 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,092 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.12.13 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,348 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.13.13 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,529 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.14.4 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,783 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.15.0a8 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,954 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335877333value of: string +_bk;t=1781335877333expected: 3.9.25 +_bk;t=1781335877333actual: 3.11.15 +_bk;t=1781335877333 +_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,956 targets configured, 167 aspect applications) +_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local +_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local +_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s +_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s +_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) +_bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342(07:31:20) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log) +_bk;t=1781335880342(07:31:20) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) +_bk;t=1781335880342[3,943 / 4,255] 355 / 562 tests; 26 actions, 17 running; last test: //tests/base_rules/py_binary:test_py_runtime_info_provided +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 5s local +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild-ST-9f25dba8f1a4/bin/tests/toolchains/python_3.11.10_test.runfiles; 5s local +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 5s local +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_zip_yes_test.runfiles; 5s local +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 5s local +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 5s local +_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 4s local +_bk;t=1781335880342 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 4s local ... +_bk;t=1781335880342 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 26s +_bk;t=1781335880342 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 24s +_bk;t=1781335880342 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 23s +_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 21s +_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 21s +_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 21s +_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 21s ... (34 fetches) +_bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879(07:31:20) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log) +_bk;t=1781335880879(07:31:20) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) +_bk;t=1781335880879[3,971 / 4,280] 361 / 562 tests; 30 actions, 18 running; last test: //tests/base_rules/py_binary:test_debugger +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 6s local +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild-ST-9f25dba8f1a4/bin/tests/toolchains/python_3.11.10_test.runfiles; 6s local +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 6s local +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_zip_yes_test.runfiles; 6s local +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 5s local +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 5s local +_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local +_bk;t=1781335880879 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local ... +_bk;t=1781335880879 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 26s +_bk;t=1781335880879 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 25s +_bk;t=1781335880879 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s +_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 21s +_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 21s +_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 21s +_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 21s +_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 21s ... (34 fetches) +_bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315(07:31:21) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log) +_bk;t=1781335881315(07:31:21) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) +_bk;t=1781335881315[4,073 / 4,378] 374 / 562 tests; 23 actions, 15 running; last test: //tests/toolchains:python_3.12.9_test +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 6s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 6s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local +_bk;t=1781335881315 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 5s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecf3280ec0cb/bin/tests/toolchains/python_3.10.12_test.runfiles; 5s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zip_main_maker_test.runfiles; 5s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local ... +_bk;t=1781335881315 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 27s +_bk;t=1781335881315 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s +_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 22s +_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 22s +_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 22s +_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 22s +_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 22s +_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 21s ... (33 fetches) +_bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 +_bk;t=1781335881315FAILED: //tests/toolchains/transitions:test_minor_versions (Summary) +_bk;t=1781335881315 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log +_bk;t=1781335881315 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log +_bk;t=1781335881315 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log +_bk;t=1781335881315(07:31:21) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) +_bk;t=1781335881315[4,073 / 4,378] 375 / 562 tests, 1 failed; 23 actions, 15 running; last test: //tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 6s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 6s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local +_bk;t=1781335881315 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local +_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecf3280ec0cb/bin/tests/toolchains/python_3.10.12_test.runfiles; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zip_main_maker_test.runfiles; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local ... +_bk;t=1781335881318 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 27s +_bk;t=1781335881318 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 21s ... (33 fetches) +_bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318(07:31:21) INFO: From Testing //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335881318==================== Test output for //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.10.20 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.12.13 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.13.13 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.14.4 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.15.0a8 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.9.25 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318================================================================================ +_bk;t=1781335881318==================== Test output for //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.10.20 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.12.13 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.13.13 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.14.4 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.15.0a8 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.9.25 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318================================================================================ +_bk;t=1781335881318==================== Test output for //tests/toolchains/transitions:test_minor_versions: +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.10.20 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.12.13 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.13.13 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.14.4 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.15.0a8 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318value of: string +_bk;t=1781335881318expected: 3.9.25 +_bk;t=1781335881318actual: 3.11.15 +_bk;t=1781335881318 +_bk;t=1781335881318 +_bk;t=1781335881318================================================================================ +_bk;t=1781335881318(07:31:21) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) +_bk;t=1781335881318[4,074 / 4,379] 375 / 562 tests, 1 failed; 25 actions, 15 running; last test: //tests/toolchains/transitions:test_minor_versions +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 6s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 6s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local +_bk;t=1781335881318 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecf3280ec0cb/bin/tests/toolchains/python_3.10.12_test.runfiles; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zip_main_maker_test.runfiles; 5s local +_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local ... +_bk;t=1781335881318 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 27s +_bk;t=1781335881318 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 22s +_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 21s ... (33 fetches) +_bk;t=1781335881318buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log +_bk;t=17813358813502026-06-13 07:31:21 INFO  Found 1 files that match "tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log" +_bk;t=17813358813532026-06-13 07:31:21 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration +_bk;t=17813358813532026-06-13 07:31:21 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358814682026-06-13 07:31:21 INFO  Uploading 019ebfe4-76d7-4a5b-afc5-191dcd4b2d44 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log (1.0 KiB) +_bk;t=17813358817232026-06-13 07:31:21 INFO  Artifact uploads completed successfully +_bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109(07:31:24) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log) +_bk;t=1781335884109(07:31:24) Analyzing: 590 targets (620 packages loaded, 1,181,229 targets configured, 181 aspect applications) +_bk;t=1781335884109 currently loading: @@+python+python_3_15_0a2_x86_64-apple-darwin// +_bk;t=1781335884109[4,362 / 4,506] 460 / 571 tests, 1 failed; 30 actions, 6 running; last test: //tests/deprecated:versioned_compile_pip_requirements.test +_bk;t=1781335884109 Creating runfiles tree bazel-out/k8-fastbuild-ST-f4eb966a3244/bin/tests/toolchains/python_3.13.10_test.runfiles; 2s local +_bk;t=1781335884109 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 1s local +_bk;t=1781335884109 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox +_bk;t=1781335884109 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335884109 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 0s linux-sandbox +_bk;t=1781335884109 Testing //tests/toolchains/transitions:test_full_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884109 Testing //tests/no_unsafe_paths:no_unsafe_paths_3.11_test; 0s remote-cache +_bk;t=1781335884109 Testing //tests/deprecated:versioned_compile_pip_requirements.test; 0s remote-cache ... +_bk;t=1781335884109 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 29s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 24s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 24s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 24s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 23s +_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 20s ... (25 fetches) +_bk;t=1781335884114buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log +_bk;t=17813358841362026-06-13 07:31:24 INFO  Found 1 files that match "tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log" +_bk;t=17813358841402026-06-13 07:31:24 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration +_bk;t=17813358841402026-06-13 07:31:24 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358842542026-06-13 07:31:24 INFO  Uploading 019ebfe4-81b5-4111-ba78-4c330f8c515c tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log (1.0 KiB) +_bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420(07:31:24) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log) +_bk;t=1781335884420(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335884420[4,457 / 4,557] 485 / 572 tests, 1 failed; 25 actions, 7 running; last test: .../multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin +_bk;t=1781335884420 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local +_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox +_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox +_bk;t=1781335884420 Testing //tests/toolchains/transitions:test_full_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox +_bk;t=1781335884420 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884420 Testing //tests/python_bzlmod_ext:test_dynamic_manifest_files; Downloading tests/python_bzlmod_ext/test_dynamic_m...; 0s remote-cache ... +_bk;t=1781335884420 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 24s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) +_bk;t=17813358844632026-06-13 07:31:24 INFO  Artifact uploads completed successfully +_bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670(07:31:24) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log) +_bk;t=1781335884670(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335884670[4,477 / 4,565] 493 / 572 tests, 1 failed; 27 actions, 9 running; last test: //tests:bzl_libraries_build_test +_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox +_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox +_bk;t=1781335884670 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox +_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox +_bk;t=1781335884670 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox +_bk;t=1781335884670 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... +_bk;t=1781335884670 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 24s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) +_bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975(07:31:24) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log) +_bk;t=1781335884975(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335884975[4,507 / 4,579] 504 / 572 tests, 1 failed; 26 actions, 9 running; last test: //tests/py_zipapp:venv_zipapp_test +_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox +_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox +_bk;t=1781335884975 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox +_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox +_bk;t=1781335884975 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox +_bk;t=1781335884975 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... +_bk;t=1781335884975 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) +_bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 +_bk;t=1781335884977FAILED: //tests/toolchains/transitions:test_full_version (Summary) +_bk;t=1781335884977 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log +_bk;t=1781335884977 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log +_bk;t=1781335884977 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log +_bk;t=1781335884977(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335884977[4,508 / 4,579] 505 / 572 tests, 2 failed; 28 actions, 9 running; last test: //tests/toolchains/transitions:test_full_version +_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox +_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox +_bk;t=1781335884977 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox +_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox +_bk;t=1781335884977 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox +_bk;t=1781335884977 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... +_bk;t=1781335884977 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) +_bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980(07:31:24) INFO: From Testing //tests/toolchains/transitions:test_full_version: +_bk;t=1781335884980==================== Test output for //tests/toolchains/transitions:test_full_version: +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.10.20 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.12.13 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.13.13 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.14.4 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.15.0a8 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.9.25 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980================================================================================ +_bk;t=1781335884980==================== Test output for //tests/toolchains/transitions:test_full_version: +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.10.20 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.12.13 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.13.13 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.14.4 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.15.0a8 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.9.25 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980================================================================================ +_bk;t=1781335884980==================== Test output for //tests/toolchains/transitions:test_full_version: +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.10.20 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.12.13 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.13.13 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.14.4 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.15.0a8 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version +_bk;t=1781335884980value of: string +_bk;t=1781335884980expected: 3.9.25 +_bk;t=1781335884980actual: 3.11.15 +_bk;t=1781335884980 +_bk;t=1781335884980 +_bk;t=1781335884980================================================================================ +_bk;t=1781335884980(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335884980[4,508 / 4,579] 505 / 572 tests, 2 failed; 28 actions, 9 running; last test: //tests/toolchains/transitions:test_full_version +_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox +_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox +_bk;t=1781335884980 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox +_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox +_bk;t=1781335884980 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox +_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox +_bk;t=1781335884980 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... +_bk;t=1781335884980 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) +_bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019(07:31:25) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log) +_bk;t=1781335885019(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335885019[4,524 / 4,581] 512 / 572 tests, 2 failed; 27 actions, 7 running; last test: //tests/whl_with_build_files:verify_files_test +_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox +_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox +_bk;t=1781335885019 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox +_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox +_bk;t=1781335885019 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local +_bk;t=1781335885019 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox +_bk;t=1781335885019 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache ... +_bk;t=1781335885019 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s +_bk;t=1781335885019 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335885019 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s +_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s +_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s +_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) +_bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519(07:31:25) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log) +_bk;t=1781335885519(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335885519[4,580 / 4,611] 540 / 572 tests, 2 failed; 27 actions, 6 running; last test: //tests/toolchains:python_3.13.0_test +_bk;t=1781335885519 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335885519 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 1s remote-cache, linux-sandbox +_bk;t=1781335885519 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 1s linux-sandbox +_bk;t=1781335885519 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local +_bk;t=1781335885519 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox +_bk;t=1781335885519 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/base_rules/py_binary/test_cross_compile_to_unix.sh.runfiles; 0s local +_bk;t=1781335885519 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache +_bk;t=1781335885519 Testing //tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test; 0s remote-cache ... +_bk;t=1781335885519 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 31s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 26s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 26s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 26s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 26s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 22s ... (24 fetches) +_bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 +_bk;t=1781335885519FAILED: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Summary) +_bk;t=1781335885519 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log +_bk;t=1781335885519 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log +_bk;t=1781335885521 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log +_bk;t=1781335885521(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335885521[4,581 / 4,611] 541 / 572 tests, 3 failed; 27 actions, 5 running; last test: ...ec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335885521 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335885521 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 1s remote-cache, linux-sandbox +_bk;t=1781335885521 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 1s linux-sandbox +_bk;t=1781335885521 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local +_bk;t=1781335885521 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox +_bk;t=1781335885521 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache +_bk;t=1781335885521 Testing //tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test; 0s remote-cache +_bk;t=1781335885521 Testing //tests/pypi/whl_library:whl_library_extras_test; 0s remote-cache ... +_bk;t=1781335885521 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 31s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 26s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 26s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 26s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 26s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 22s ... (24 fetches) +_bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527(07:31:25) INFO: From Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335885528==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335885528In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335885528value of: string +_bk;t=1781335885528expected: /mac/python3.12 +_bk;t=1781335885528actual: /linux/python3.12 +_bk;t=1781335885528 +_bk;t=1781335885528 +_bk;t=1781335885528================================================================================ +_bk;t=1781335885528==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335885528In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335885528value of: string +_bk;t=1781335885528expected: /mac/python3.12 +_bk;t=1781335885528actual: /linux/python3.12 +_bk;t=1781335885528 +_bk;t=1781335885528 +_bk;t=1781335885528================================================================================ +_bk;t=1781335885528==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: +_bk;t=1781335885528In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version +_bk;t=1781335885528value of: string +_bk;t=1781335885528expected: /mac/python3.12 +_bk;t=1781335885528actual: /linux/python3.12 +_bk;t=1781335885528 +_bk;t=1781335885528 +_bk;t=1781335885528================================================================================ +_bk;t=1781335885528(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) +_bk;t=1781335885528[4,586 / 4,612] 545 / 572 tests, 3 failed; 23 actions, 5 running; last test: //tests/base_rules/py_test:test_default_outputs +_bk;t=1781335885528 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox +_bk;t=1781335885528 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 1s remote-cache, linux-sandbox +_bk;t=1781335885528 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 1s linux-sandbox +_bk;t=1781335885528 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local +_bk;t=1781335885528 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox +_bk;t=1781335885528 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache +_bk;t=1781335885528 Testing //tests/pypi/whl_library:whl_library_extras_test; 0s remote-cache +_bk;t=1781335885528 Testing //tests/bootstrap_impls/bin_calls_bin:bootstrap_script_python_test; 0s remote-cache ... +_bk;t=1781335885528 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 31s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 26s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 26s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 26s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 26s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 25s +_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 22s ... (24 fetches) +_bk;t=1781335885664buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log +_bk;t=17813358856862026-06-13 07:31:25 INFO  Found 1 files that match "tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log" +_bk;t=17813358856882026-06-13 07:31:25 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration +_bk;t=17813358856882026-06-13 07:31:25 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358858032026-06-13 07:31:25 INFO  Uploading 019ebfe4-87c9-4679-ba6e-2111596b83c8 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log (423 B) +_bk;t=17813358860122026-06-13 07:31:26 INFO  Artifact uploads completed successfully +_bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636(07:31:30) Analyzing: 590 targets (640 packages loaded, 1,230,280 targets configured, 198 aspect applications) +_bk;t=1781335890636[5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: //tests/docs:docs_build_test +_bk;t=1781335895237 _bk;t=1781335895237 _bk;t=1781335895237(07:31:35) INFO: Analyzed 590 targets (640 packages loaded, 1,230,281 targets configured, 198 aspect applications). +_bk;t=1781335895237(07:31:35) [5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: //tests/docs:docs_build_test +_bk;t=1781335895310 _bk;t=1781335895310(07:31:35) INFO: Found 590 test targets... +_bk;t=1781335895310(07:31:35) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization +_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: Elapsed time: 65.045s, Critical Path: 10.77s +_bk;t=1781335895361(07:31:35) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization +_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: 5819 processes: 1921 remote cache hit, 4473 internal, 22 linux-sandbox. +_bk;t=1781335895361(07:31:35) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization +_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: Build completed, 3 tests FAILED, 5819 total actions +_bk;t=1781335895361(07:31:35) INFO: +_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: +_bk;t=1781335895369 _bk;t=1781335895369//tests:bzl_libraries_build_test (cached) PASSED in 0.6s +_bk;t=1781335895369(07:31:35) INFO: +_bk;t=1781335895369 _bk;t=1781335895369//tests/api/py_common:test_merge_py_infos (cached) PASSED in 0.2s +_bk;t=1781335895369(07:31:35) INFO: +_bk;t=1781335895369 _bk;t=1781335895369//tests/base_rules/precompile:test_precompile_attr_inherit_pyc_collection_disabled_precompile_flag_enabled (cached) PASSED in 0.7s +_bk;t=1781335895369(07:31:35) INFO: +_bk;t=1781335895369 _bk;t=1781335895369//tests/base_rules/precompile:test_precompile_enabled_py_binary (cached) PASSED in 0.8s +_bk;t=1781335895369(07:31:35) INFO: +_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_disabled (cached) PASSED in 0.9s +_bk;t=1781335895370(07:31:35) INFO: +_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_enabled (cached) PASSED in 0.4s +_bk;t=1781335895370(07:31:35) INFO: +_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_enabled_py_test (cached) PASSED in 0.5s +_bk;t=1781335895370(07:31:35) INFO: +_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_disabled (cached) PASSED in 0.2s +_bk;t=1781335895370(07:31:35) INFO: +_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.8s +_bk;t=1781335895370(07:31:35) INFO: +_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_disabled (cached) PASSED in 0.7s +_bk;t=1781335895371(07:31:35) INFO: +_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.4s +_bk;t=1781335895371(07:31:35) INFO: +_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_precompiler_action (cached) PASSED in 0.3s +_bk;t=1781335895371(07:31:35) INFO: +_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_pyc_collection_disabled_library_omit_source (cached) PASSED in 0.4s +_bk;t=1781335895371(07:31:35) INFO: +_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_pyc_collection_include_dep_omit_source (cached) PASSED in 0.6s +_bk;t=1781335895371(07:31:35) INFO: +_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/precompile:test_pyc_only (cached) PASSED in 0.5s +_bk;t=1781335895372(07:31:35) INFO: +_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_basic_windows (cached) PASSED in 0.6s +_bk;t=1781335895372(07:31:35) INFO: +_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_basic_zip (cached) PASSED in 0.3s +_bk;t=1781335895372(07:31:35) INFO: +_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_config_settings_extra_toolchains (cached) PASSED in 0.4s +_bk;t=1781335895372(07:31:35) INFO: +_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_cross_compile_to_unix (cached) PASSED in 0.3s +_bk;t=1781335895372(07:31:35) INFO: +_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_data_sets_uses_shared_library (cached) PASSED in 0.3s +_bk;t=1781335895373(07:31:35) INFO: +_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_debugger (cached) PASSED in 0.7s +_bk;t=1781335895373(07:31:35) INFO: +_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_default_main_can_be_generated (cached) PASSED in 0.5s +_bk;t=1781335895373(07:31:35) INFO: +_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s +_bk;t=1781335895373(07:31:35) INFO: +_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.7s +_bk;t=1781335895373(07:31:35) INFO: +_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_default_main_must_be_in_srcs (cached) PASSED in 0.4s +_bk;t=1781335895374(07:31:35) INFO: +_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_default_outputs (cached) PASSED in 0.3s +_bk;t=1781335895374(07:31:35) INFO: +_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_executable_in_runfiles (cached) PASSED in 0.1s +_bk;t=1781335895374(07:31:35) INFO: +_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_explicit_main (cached) PASSED in 0.2s +_bk;t=1781335895374(07:31:35) INFO: +_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.1s +_bk;t=1781335895374(07:31:35) INFO: +_bk;t=1781335895374 _bk;t=1781335895375//tests/base_rules/py_binary:test_main_module_bootstrap_script (cached) PASSED in 0.4s +_bk;t=1781335895375(07:31:35) INFO: +_bk;t=1781335895375 _bk;t=1781335895375//tests/base_rules/py_binary:test_main_module_bootstrap_system_python (cached) PASSED in 0.8s +_bk;t=1781335895375(07:31:35) INFO: +_bk;t=1781335895375 _bk;t=1781335895375//tests/base_rules/py_binary:test_name_cannot_end_in_py (cached) PASSED in 0.5s +_bk;t=1781335895375(07:31:35) INFO: +_bk;t=1781335895375 _bk;t=1781335895375//tests/base_rules/py_binary:test_py_info_populated (cached) PASSED in 0.2s +_bk;t=1781335895375(07:31:35) INFO: +_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_py_info_propagation (cached) PASSED in 0.2s +_bk;t=1781335895376(07:31:35) INFO: +_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_py_runtime_info_provided (cached) PASSED in 0.2s +_bk;t=1781335895376(07:31:35) INFO: +_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_requires_provider (cached) PASSED in 0.3s +_bk;t=1781335895376(07:31:35) INFO: +_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_tags_can_be_tuple (cached) PASSED in 0.3s +_bk;t=1781335895376(07:31:35) INFO: +_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_windows_target_with_path_separators (cached) PASSED in 0.4s +_bk;t=1781335895376(07:31:35) INFO: +_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_info:test_py_info_builder (cached) PASSED in 0.3s +_bk;t=1781335895377(07:31:35) INFO: +_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_info:test_py_info_create (cached) PASSED in 0.5s +_bk;t=1781335895377(07:31:35) INFO: +_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_data_sets_uses_shared_library (cached) PASSED in 0.4s +_bk;t=1781335895377(07:31:35) INFO: +_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_default_outputs (cached) PASSED in 0.1s +_bk;t=1781335895377(07:31:35) INFO: +_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_files_to_compile (cached) PASSED in 0.4s +_bk;t=1781335895377(07:31:35) INFO: +_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_py_info_populated (cached) PASSED in 0.4s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_py_info_propagation (cached) PASSED in 0.3s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_py_runtime_info_not_present (cached) PASSED in 0.2s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_requires_provider (cached) PASSED in 0.7s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_srcs_can_contain_rule_generating_py_and_nonpy_files (cached) PASSED in 0.1s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_srcs_generating_no_py_files_is_error (cached) PASSED in 0.3s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_tags_can_be_tuple (cached) PASSED in 0.1s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_test:test_basic_windows (cached) PASSED in 0.3s +_bk;t=1781335895378(07:31:35) INFO: +_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_basic_zip (cached) PASSED in 0.5s +_bk;t=1781335895379(07:31:35) INFO: +_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_config_settings_extra_toolchains (cached) PASSED in 0.6s +_bk;t=1781335895379(07:31:35) INFO: +_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_cross_compile_to_unix (cached) PASSED in 0.7s +_bk;t=1781335895379(07:31:35) INFO: +_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_data_sets_uses_shared_library (cached) PASSED in 0.6s +_bk;t=1781335895379(07:31:35) INFO: +_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_debugger (cached) PASSED in 0.4s +_bk;t=1781335895379(07:31:35) INFO: +_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_can_be_generated (cached) PASSED in 0.4s +_bk;t=1781335895380(07:31:35) INFO: +_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s +_bk;t=1781335895380(07:31:35) INFO: +_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.5s +_bk;t=1781335895380(07:31:35) INFO: +_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_must_be_in_srcs (cached) PASSED in 0.6s +_bk;t=1781335895381(07:31:35) INFO: +_bk;t=1781335895381 _bk;t=1781335895381//tests/base_rules/py_test:test_default_outputs (cached) PASSED in 0.3s +_bk;t=1781335895381(07:31:35) INFO: +_bk;t=1781335895381 _bk;t=1781335895381//tests/base_rules/py_test:test_executable_in_runfiles (cached) PASSED in 0.2s +_bk;t=1781335895381(07:31:35) INFO: +_bk;t=1781335895381 _bk;t=1781335895381//tests/base_rules/py_test:test_explicit_main (cached) PASSED in 0.3s +_bk;t=1781335895381(07:31:35) INFO: +_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.5s +_bk;t=1781335895382(07:31:35) INFO: +_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_mac_requires_darwin_for_execution (cached) PASSED in 0.3s +_bk;t=1781335895382(07:31:35) INFO: +_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_main_module_bootstrap_script (cached) PASSED in 0.3s +_bk;t=1781335895382(07:31:35) INFO: +_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_main_module_bootstrap_system_python (cached) PASSED in 0.1s +_bk;t=1781335895382(07:31:35) INFO: +_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_name_cannot_end_in_py (cached) PASSED in 0.3s +_bk;t=1781335895382(07:31:35) INFO: +_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_non_mac_doesnt_require_darwin_for_execution (cached) PASSED in 0.2s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_py_info_populated (cached) PASSED in 0.6s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_py_info_propagation (cached) PASSED in 0.5s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_py_runtime_info_provided (cached) PASSED in 0.3s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_requires_provider (cached) PASSED in 0.2s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_tags_can_be_tuple (cached) PASSED in 0.3s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_windows_target_with_path_separators (cached) PASSED in 0.6s +_bk;t=1781335895383(07:31:35) INFO: +_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:bazel_tools_importable_system_python_test (cached) PASSED in 0.9s +_bk;t=1781335895384(07:31:35) INFO: +_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:bootstrap_script_zipapp_test (cached) PASSED in 2.2s +_bk;t=1781335895384(07:31:35) INFO: +_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:external_binary_test (cached) PASSED in 3.2s +_bk;t=1781335895384(07:31:35) INFO: +_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:inherit_pythonsafepath_env_test (cached) PASSED in 1.3s +_bk;t=1781335895384(07:31:35) INFO: +_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:interpreter_args_test (cached) PASSED in 0.8s +_bk;t=1781335895384(07:31:35) INFO: +_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:main_module_test (cached) PASSED in 1.2s +_bk;t=1781335895385(07:31:35) INFO: +_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:relative_path_test (cached) PASSED in 0.5s +_bk;t=1781335895385(07:31:35) INFO: +_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:run_binary_bootstrap_script_find_runfiles_test (cached) PASSED in 1.4s +_bk;t=1781335895385(07:31:35) INFO: +_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:run_binary_bootstrap_script_zip_no_test (cached) PASSED in 1.2s +_bk;t=1781335895385(07:31:35) INFO: +_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test (cached) PASSED in 1.9s +_bk;t=1781335895385(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_find_runfiles_test (cached) PASSED in 1.1s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_venvs_use_declare_symlink_no_test (cached) PASSED in 0.9s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_zip_no_test (cached) PASSED in 1.1s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_zip_yes_test (cached) PASSED in 2.2s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:sys_executable_inherits_sys_path (cached) PASSED in 0.6s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:sys_path_order_bootstrap_script_test (cached) PASSED in 1.1s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test (cached) PASSED in 0.9s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:system_python_nodeps_test (cached) PASSED in 1.2s +_bk;t=1781335895386(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/bootstrap_impls/a/b/c:nested_dir_test (cached) PASSED in 1.2s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/bootstrap_impls/bin_calls_bin:bootstrap_script_python_test (cached) PASSED in 0.8s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/bootstrap_impls/bin_calls_bin:bootstrap_system_python_test (cached) PASSED in 0.6s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_bool (cached) PASSED in 0.7s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_cfg_arg (cached) PASSED in 0.4s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_depset_builder (cached) PASSED in 0.2s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_exec_group (cached) PASSED in 0.3s +_bk;t=1781335895387(07:31:35) INFO: +_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_fruit_rule (cached) PASSED in 0.2s +_bk;t=1781335895388(07:31:35) INFO: +_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_int (cached) PASSED in 0.4s +_bk;t=1781335895388(07:31:35) INFO: +_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_int_list (cached) PASSED in 0.2s +_bk;t=1781335895388(07:31:35) INFO: +_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_label (cached) PASSED in 0.2s +_bk;t=1781335895388(07:31:35) INFO: +_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_label_keyed_string_dict (cached) PASSED in 0.8s +_bk;t=1781335895388(07:31:35) INFO: +_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_label_list (cached) PASSED in 0.2s +_bk;t=1781335895388(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_output (cached) PASSED in 0.3s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_output_list (cached) PASSED in 0.4s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_rule_api (cached) PASSED in 0.4s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_rule_with_immutable_attrs (cached) PASSED in 0.4s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_rule_with_toolchains (cached) PASSED in 0.4s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_runfiles_builder (cached) PASSED in 0.2s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_string (cached) PASSED in 0.2s +_bk;t=1781335895389(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_dict (cached) PASSED in 0.3s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_keyed_label_dict (cached) PASSED in 0.2s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_list (cached) PASSED in 0.8s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_list_dict (cached) PASSED in 0.2s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_toolchain_type (cached) PASSED in 0.7s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/cc/current_py_cc_headers:test_current_toolchain_headers (cached) PASSED in 0.3s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895390 _bk;t=1781335895390//tests/cc/current_py_cc_headers:test_current_toolchain_headers_abi3 (cached) PASSED in 0.4s +_bk;t=1781335895390(07:31:35) INFO: +_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_headers:test_toolchain_is_registered_by_default (cached) PASSED in 0.3s +_bk;t=1781335895391(07:31:35) INFO: +_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:python_abi3_libs_linking_test (cached) PASSED in 0.5s +_bk;t=1781335895391(07:31:35) INFO: +_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:python_libs_linking_test (cached) PASSED in 0.4s +_bk;t=1781335895391(07:31:35) INFO: +_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:test_current_toolchain_libs (cached) PASSED in 0.4s +_bk;t=1781335895391(07:31:35) INFO: +_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:test_toolchain_is_registered_by_default (cached) PASSED in 0.6s +_bk;t=1781335895391(07:31:35) INFO: +_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/py_cc_toolchain:test_libs_optional (cached) PASSED in 0.4s +_bk;t=1781335895391(07:31:35) INFO: +_bk;t=1781335895392 _bk;t=1781335895392//tests/cc/py_cc_toolchain:test_py_cc_toolchain (cached) PASSED in 0.9s +_bk;t=1781335895392(07:31:35) INFO: +_bk;t=1781335895392 _bk;t=1781335895392//tests/config_settings:test_latest_micro_version_matching (cached) PASSED in 0.3s +_bk;t=1781335895392(07:31:35) INFO: +_bk;t=1781335895392 _bk;t=1781335895392//tests/config_settings:test_minor_version_matching (cached) PASSED in 0.9s +_bk;t=1781335895392(07:31:35) INFO: +_bk;t=1781335895392 _bk;t=1781335895392//tests/config_settings/transition:test_kwargs_get_consumed (cached) PASSED in 0.0s +_bk;t=1781335895392(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_args_default (cached) PASSED in 0.9s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_binary_windows_build_python_zip_false (cached) PASSED in 0.9s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_binary_with_transition (cached) PASSED in 0.1s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_test_with_transition (cached) PASSED in 0.3s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/coverage_deps:test_unsupported_python_version_warns (cached) PASSED in 0.8s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/coverage_deps:test_windows_platform_is_silent (cached) PASSED in 0.0s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895393 _bk;t=1781335895393//tests/deprecated:build_test (cached) PASSED in 0.4s +_bk;t=1781335895393(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:hub_compile_pip_requirements.test (cached) PASSED in 10.5s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:hub_py_test (cached) PASSED in 0.9s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:transition_py_test (cached) PASSED in 0.8s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:versioned_compile_pip_requirements.test (cached) PASSED in 22.6s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:versioned_py_test (cached) PASSED in 0.6s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/docs:docs_build_test (cached) PASSED in 0.0s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/entry_points:build_entry_point (cached) PASSED in 0.7s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895394 _bk;t=1781335895394//tests/entry_points:py_console_script_gen_test (cached) PASSED in 1.0s +_bk;t=1781335895394(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_braceless (cached) PASSED in 0.5s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_braces_with_default (cached) PASSED in 0.3s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_braces_without_default (cached) PASSED in 0.4s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_both_vars (cached) PASSED in 0.2s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_braces_inner_var (cached) PASSED in 0.3s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_no_vars (cached) PASSED in 0.2s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_outer_var (cached) PASSED in 0.2s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895395 _bk;t=1781335895395//tests/get_release_info:test_astral_mirror (cached) PASSED in 0.7s +_bk;t=1781335895395(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/get_release_info:test_astral_mirror_legacy (cached) PASSED in 0.4s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/get_release_info:test_file_url (cached) PASSED in 0.3s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/implicit_namespace_packages:namespace_packages_test (cached) PASSED in 0.8s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:interpreter_version_test_3.10 (cached) PASSED in 1.4s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:interpreter_version_test_3.11 (cached) PASSED in 1.3s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:interpreter_version_test_3.12 (cached) PASSED in 1.5s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:python_src_test_3.10 (cached) PASSED in 1.6s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:python_src_test_3.11 (cached) PASSED in 1.2s +_bk;t=1781335895396(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/interpreter:python_src_test_3.12 (cached) PASSED in 1.2s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/multi_pypi/pypi_alpha:pypi_alpha_test (cached) PASSED in 1.4s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/multi_pypi/pypi_beta:pypi_beta_test (cached) PASSED in 1.1s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/multiple_inputs:multiple_inputs.test (cached) PASSED in 6.9s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/multiple_inputs:multiple_pyproject_toml.test (cached) PASSED in 10.5s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/multiple_inputs:multiple_requirements_in.test (cached) PASSED in 24.5s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895397 _bk;t=1781335895397//tests/no_unsafe_paths:no_unsafe_paths_3.10_test (cached) PASSED in 1.1s +_bk;t=1781335895397(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/no_unsafe_paths:no_unsafe_paths_3.11_test (cached) PASSED in 1.4s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/normalize_name:test_name_normalization (cached) PASSED in 0.1s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/packaging:bin (cached) PASSED in 1.0s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/packaging:bzl_libraries_build_test (cached) PASSED in 0.4s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/py_exec_tools_toolchain:test_disable_exec_interpreter (cached) PASSED in 0.4s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/py_runtime:test_bootstrap_template (cached) PASSED in 0.2s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895398 _bk;t=1781335895398//tests/py_runtime:test_cannot_have_both_inbuild_and_system_interpreter (cached) PASSED in 0.0s +_bk;t=1781335895398(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_cannot_specify_files_for_system_interpreter (cached) PASSED in 0.1s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_coverage_tool_executable (cached) PASSED in 0.3s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_coverage_tool_plain_files (cached) PASSED in 0.2s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_in_build_interpreter (cached) PASSED in 0.2s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_binary_with_multiple_outputs (cached) PASSED in 0.4s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_binary_with_single_output_and_runfiles (cached) PASSED in 0.2s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_major (cached) PASSED in 0.2s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_minor (cached) PASSED in 0.3s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_version_info_no_extraneous_keys (cached) PASSED in 0.3s +_bk;t=1781335895399(07:31:35) INFO: +_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_interpreter_version_info_parses_values_to_struct (cached) PASSED in 0.4s +_bk;t=1781335895400(07:31:35) INFO: +_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_interpreter_version_info_sets_values_to_none_if_not_given (cached) PASSED in 0.3s +_bk;t=1781335895400(07:31:35) INFO: +_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_must_have_either_inbuild_or_system_interpreter (cached) PASSED in 0.3s +_bk;t=1781335895400(07:31:35) INFO: +_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_system_interpreter (cached) PASSED in 0.3s +_bk;t=1781335895400(07:31:35) INFO: +_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_system_interpreter_must_be_absolute (cached) PASSED in 0.4s +_bk;t=1781335895400(07:31:35) INFO: +_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_version_info_from_flag (cached) PASSED in 0.5s +_bk;t=1781335895400(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info (cached) PASSED in 0.2s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_runtime_pair:test_basic (cached) PASSED in 0.2s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_runtime_pair:test_py_runtime_pair_and_binary (cached) PASSED in 0.6s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_config_settings (cached) PASSED in 0.6s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_content_type_from_attr (cached) PASSED in 0.6s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_content_type_from_description (cached) PASSED in 0.3s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_data (cached) PASSED in 0.3s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_data_bad_path (cached) PASSED in 0.4s +_bk;t=1781335895401(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_wheel:test_data_bad_path_but_right_prefix (cached) PASSED in 0.2s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_wheel:test_metadata (cached) PASSED in 0.3s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_wheel/py_wheel:test_too_long_project_url_label (cached) PASSED in 0.2s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:system_python_zipapp_external_bootstrap_test (cached) PASSED in 4.8s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:system_python_zipapp_test (cached) PASSED in 2.2s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:venv_zipapp_compressed_test (cached) PASSED in 3.3s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:venv_zipapp_test (cached) PASSED in 1.9s +_bk;t=1781335895402(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/argparse:test_extra_index_url (cached) PASSED in 0.5s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/argparse:test_index_url (cached) PASSED in 0.2s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/argparse:test_platform (cached) PASSED in 0.4s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/config_settings:test_legacy_default (cached) PASSED in 0.3s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/config_settings:test_legacy_with_constraint_values (cached) PASSED in 0.1s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/env_marker_setting:test_custom_env_markers (cached) PASSED in 0.6s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/env_marker_setting:test_expr_python_full_version_lt_negative (cached) PASSED in 0.4s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/env_marker_setting:test_expr_python_version_gte (cached) PASSED in 0.3s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/extension:test_build_pipstar_platform (cached) PASSED in 0.7s +_bk;t=1781335895403(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/extension:test_simple (cached) PASSED in 0.3s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/extension:test_simple_isolated (cached) PASSED in 0.2s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_group_library_build_bazel:test_in_hub (cached) PASSED in 0.3s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_group_library_build_bazel:test_simple (cached) PASSED in 0.5s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all (cached) PASSED in 0.4s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all_legacy (cached) PASSED in 0.3s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all_with_loads (cached) PASSED in 0.2s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all_workspace (cached) PASSED in 0.9s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/hub_builder:test_download_only_multiple (cached) PASSED in 0.4s +_bk;t=1781335895404(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_err_duplicate_repos (cached) PASSED in 0.2s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_index_url_precedence (cached) PASSED in 0.5s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_optimum_sys_platform_extra (cached) PASSED in 0.2s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_pipstar_platforms (cached) PASSED in 0.3s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_pipstar_platforms_limit (cached) PASSED in 0.1s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple (cached) PASSED in 0.5s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple_extras_vs_no_extras (cached) PASSED in 0.3s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple_extras_vs_no_extras_simpleapi (cached) PASSED in 0.5s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple_get_index (cached) PASSED in 0.3s +_bk;t=1781335895405(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_simple_multiple_python_versions (cached) PASSED in 0.4s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_simple_multiple_requirements (cached) PASSED in 0.6s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_simple_with_markers (cached) PASSED in 0.6s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_torch_experimental_index_url (cached) PASSED in 0.1s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/index_sources:test_no_simple_api_sources (cached) PASSED in 0.2s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/index_sources:test_simple_api_sources (cached) PASSED in 0.1s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/integration:all_requirements_build_test (cached) PASSED in 0.9s +_bk;t=1781335895406(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_create_inits (cached) PASSED in 0.1s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_empty_case (cached) PASSED in 0.0s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_find_correct_namespace_packages (cached) PASSED in 0.2s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_ignores_empty_directories (cached) PASSED in 0.2s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_ignores_non_module_files_in_directories (cached) PASSED in 0.5s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_in_current_dir (cached) PASSED in 0.7s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_nested_standard_pkgs (cached) PASSED in 0.2s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_standard_pkgs (cached) PASSED in 0.3s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_pkgs (cached) PASSED in 0.5s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_recognized_all_nonstandard_module_types (cached) PASSED in 0.4s +_bk;t=1781335895407(07:31:35) INFO: +_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/namespace_pkgs:test_skips_ignored_directories (cached) PASSED in 0.5s +_bk;t=1781335895408(07:31:35) INFO: +_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_different_package_extras (cached) PASSED in 0.5s +_bk;t=1781335895408(07:31:35) INFO: +_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_different_package_version (cached) PASSED in 0.1s +_bk;t=1781335895408(07:31:35) INFO: +_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_direct_urls_integration (cached) PASSED in 0.0s +_bk;t=1781335895408(07:31:35) INFO: +_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_direct_urls_no_extract (cached) PASSED in 0.3s +_bk;t=1781335895408(07:31:35) INFO: +_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_dupe_requirements (cached) PASSED in 0.4s +_bk;t=1781335895408(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_env_marker_resolution (cached) PASSED in 0.2s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_extra_pip_args (cached) PASSED in 0.4s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_all_versions (cached) PASSED in 0.4s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_cross_platform (cached) PASSED in 0.6s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_different_versions (cached) PASSED in 0.3s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_single_py_version (cached) PASSED in 0.7s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_git_sources (cached) PASSED in 0.0s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_multi_os (cached) PASSED in 0.0s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_multi_os_legacy (cached) PASSED in 0.3s +_bk;t=1781335895409(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_optional_hash (cached) PASSED in 0.3s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_overlapping_shas_with_index_results (cached) PASSED in 0.4s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_select_requirement_none_platform (cached) PASSED in 0.9s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_simple (cached) PASSED in 0.1s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_0 (cached) PASSED in 0.3s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_1 (cached) PASSED in 0.2s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_simpleapi_html:test_index (cached) PASSED in 0.1s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_simpleapi_html:test_sdist (cached) PASSED in 0.3s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_simpleapi_html:test_whls (cached) PASSED in 0.1s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_whl_name:test_multiple_platforms (cached) PASSED in 0.0s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_whl_name:test_real_numpy_wheel (cached) PASSED in 0.4s +_bk;t=1781335895410(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/parse_whl_name:test_simple (cached) PASSED in 0.7s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/parse_whl_name:test_with_build_tag (cached) PASSED in 0.3s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/patch_whl:test_simple (cached) PASSED in 0.2s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/patch_whl:test_simple_local_version (cached) PASSED in 0.5s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_non_version_env_tests (cached) PASSED in 0.5s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_partial_only_extra (cached) PASSED in 0.2s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_platform_version_is_special (cached) PASSED in 0.3s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_version_env_tests (cached) PASSED in 0.5s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_with_aliases (cached) PASSED in 0.1s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:logical_expression_tests (cached) PASSED in 0.2s +_bk;t=1781335895411(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:misc_expressions (cached) PASSED in 0.9s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_all_markers_are_added (cached) PASSED in 0.3s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_can_add_os_specific_deps (cached) PASSED in 0.1s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_can_get_deps_based_on_specific_python_version (cached) PASSED in 0.3s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_deps_are_added_to_more_specialized_platforms (cached) PASSED in 0.5s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_env_defaults (cached) PASSED in 0.2s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_env_freebsd (cached) PASSED in 0.4s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_env_macos (cached) PASSED in 0.2s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_extra_with_conditional_and_unconditional_markers (cached) PASSED in 0.2s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_extras_with_hyphens_are_normalized (cached) PASSED in 0.4s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_include_only_particular_deps (cached) PASSED in 0.1s +_bk;t=1781335895412(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_requirement_line_parsing (cached) PASSED in 0.3s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_self_dependencies_can_come_in_any_order (cached) PASSED in 0.0s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_self_include_deps_from_previously_visited (cached) PASSED in 0.2s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_self_is_ignored (cached) PASSED in 0.2s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_simple_deps (cached) PASSED in 0.1s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_span_all_python_versions (cached) PASSED in 0.1s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:tokenize_tests (cached) PASSED in 0.0s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_config_setting_aliases (cached) PASSED in 0.6s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_config_setting_aliases_many (cached) PASSED in 0.2s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_config_settings_exist_legacy (cached) PASSED in 0.2s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_group_aliases (cached) PASSED in 0.0s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_legacy_aliases (cached) PASSED in 0.3s +_bk;t=1781335895413(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases (cached) PASSED in 0.2s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_empty (cached) PASSED in 0.2s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename (cached) PASSED in 0.2s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename_target_platforms (cached) PASSED in 0.1s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_memory_cache_hit (cached) PASSED in 0.5s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_memory_cache_index_urls (cached) PASSED in 0.2s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts (cached) PASSED in 0.2s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts_drops_unaccessed_dists (cached) PASSED in 0.3s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts (cached) PASSED in 0.3s +_bk;t=1781335895414(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_drops_unaccessed (cached) PASSED in 0.3s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_incomplete (cached) PASSED in 1.0s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_writes_index_urls_to_facts (cached) PASSED in 0.4s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_writes_to_facts (cached) PASSED in 0.9s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/python_tag:test_with_version (cached) PASSED in 0.2s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/python_tag:test_without_version (cached) PASSED in 0.1s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_aliases_are_created_for_all_wheels (cached) PASSED in 0.4s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_aliases_with_groups (cached) PASSED in 0.4s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_bzlmod_aliases (cached) PASSED in 0.3s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_empty (cached) PASSED in 0.2s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_empty_flag_versions (cached) PASSED in 0.3s +_bk;t=1781335895415(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_get_flag_versions_from_alias_target_platforms (cached) PASSED in 0.2s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_get_python_versions (cached) PASSED in 0.3s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_get_python_versions_with_target_platforms (cached) PASSED in 0.3s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_legacy_aliases (cached) PASSED in 0.1s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/repack_whl:repack_whl_test (cached) PASSED in 1.8s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_fail_download_only_bad_attr (cached) PASSED in 0.2s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_fail_duplicate_platforms (cached) PASSED in 0.2s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_fail_no_requirements (cached) PASSED in 0.2s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_host_only_lockfile (cached) PASSED in 0.3s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_host_only_multiple_os (cached) PASSED in 0.3s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_host_only_os_with_fallback (cached) PASSED in 0.2s +_bk;t=1781335895416(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_multi_os (cached) PASSED in 0.3s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_multi_os_download_only_platform (cached) PASSED in 0.3s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_os_arch_requirements_with_default (cached) PASSED in 0.2s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_simple (cached) PASSED in 0.4s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_simple_limited (cached) PASSED in 0.4s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_simple_with_python_version (cached) PASSED in 0.1s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_android (cached) PASSED in 0.3s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_freethreaded_wheels (cached) PASSED in 0.3s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_ignore_unsupported (cached) PASSED in 0.2s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_legacy_manylinux (cached) PASSED in 0.2s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_manylinx_musllinux_pref (cached) PASSED in 0.2s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_match_abi_and_not_py_version (cached) PASSED in 0.3s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_musllinux (cached) PASSED in 0.3s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_musllinux_exact_params (cached) PASSED in 0.5s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_mvs_match (cached) PASSED in 0.2s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_mvs_match_override_less_specific (cached) PASSED in 0.4s +_bk;t=1781335895417(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_multiple_mvs_match_override_more_specific (cached) PASSED in 0.5s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_not_select_abi3 (cached) PASSED in 0.2s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_not_select_py2 (cached) PASSED in 0.2s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_pytags_all_possible (cached) PASSED in 0.3s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_by_supported_cp_version (cached) PASSED in 0.4s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_by_supported_py_version (cached) PASSED in 0.2s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_cp312 (cached) PASSED in 0.5s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_filename_with_many_tags (cached) PASSED in 0.3s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_simplest (cached) PASSED in 0.3s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_supported_cp_version_manylinux (cached) PASSED in 0.4s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/simpleapi_download:test_download_envsubst_url (cached) PASSED in 0.2s +_bk;t=1781335895418(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_download_url (cached) PASSED in 0.6s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_download_url_parallel (cached) PASSED in 0.3s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_download_url_parallel_with_overrides (cached) PASSED in 0.4s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_index_overrides (cached) PASSED in 0.5s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_simple (cached) PASSED in 0.2s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/urllib:test_absolute_url (cached) PASSED in 0.1s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/urllib:test_strip_empty_path_segments (cached) PASSED in 0.4s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/version_from_filename:test_sdist_version_extraction (cached) PASSED in 0.3s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/version_from_filename:test_sdist_version_extraction_fail (cached) PASSED in 0.6s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/version_from_filename:test_wheel_version_extraction (cached) PASSED in 0.4s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/whl_installer:arguments_test (cached) PASSED in 1.2s +_bk;t=1781335895419(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library:whl_library_extras_test (cached) PASSED in 1.0s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_copy (cached) PASSED in 0.2s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_filegroups (cached) PASSED in 0.2s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_group (cached) PASSED in 0.2s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_platforms (cached) PASSED in 0.3s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_sdist_excludes_record (cached) PASSED in 0.4s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_whl_and_library_deps (cached) PASSED in 0.1s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_whl_and_library_deps_from_requires (cached) PASSED in 0.9s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_contains_dist_info_but_no_metadata (cached) PASSED in 0.3s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_contains_metadata (cached) PASSED in 0.4s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_empty (cached) PASSED in 0.7s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_parse_entry_points (cached) PASSED in 0.7s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_parse_entry_points_deduplicate (cached) PASSED in 0.4s +_bk;t=1781335895420(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_all (cached) PASSED in 0.4s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_basic (cached) PASSED in 0.3s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_invalid (cached) PASSED in 0.2s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_multiline_license (cached) PASSED in 0.2s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_name_with_percent (cached) PASSED in 0.3s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_name_with_plus (cached) PASSED in 0.4s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_platform_whl (cached) PASSED in 0.7s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_sdist (cached) PASSED in 0.2s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_sdist_no_sha (cached) PASSED in 0.5s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_simple (cached) PASSED in 0.3s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_simple_no_sha (cached) PASSED in 0.2s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_target_platforms:can_parse_existing_tags (cached) PASSED in 0.2s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_target_platforms:test_simple (cached) PASSED in 0.2s +_bk;t=1781335895421(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/pypi/whl_target_platforms:test_with_abi (cached) PASSED in 0.5s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_add_new_version (cached) PASSED in 0.2s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_add_patches (cached) PASSED in 0.2s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_add_target_settings (cached) PASSED in 0.2s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_auth_overrides (cached) PASSED in 0.3s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_defaults (cached) PASSED in 0.3s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_defaults_env (cached) PASSED in 0.1s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_defaults_file (cached) PASSED in 0.4s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_rules_python_when_rules_python_is_not_root (cached) PASSED in 0.2s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_rules_python_when_rules_python_is_root (cached) PASSED in 0.6s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_single_toolchain (cached) PASSED in 0.4s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_with_patch_version (cached) PASSED in 0.0s +_bk;t=1781335895422(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_defaults_overrides_single_toolchain (cached) PASSED in 0.6s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_defaults_overrides_toolchains_setting_is_default (cached) PASSED in 0.2s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_fail_two_overrides (cached) PASSED in 0.1s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_first_occurance_of_the_toolchain_wins (cached) PASSED in 0.1s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_ignore_unsupported_versions (cached) PASSED in 0.3s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_register_all_versions (cached) PASSED in 0.7s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_single_version_override_errors (cached) PASSED in 0.4s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_single_version_platform_override_errors (cached) PASSED in 0.3s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_toolchain_ordering (cached) PASSED in 0.6s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python_bzlmod_ext:test_dynamic_manifest_files (cached) PASSED in 0.2s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895423 _bk;t=1781335895423//tests/python_bzlmod_ext:test_dynamic_manifest_toolchains (cached) PASSED in 0.2s +_bk;t=1781335895423(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/python_bzlmod_ext:test_parse_filename_baseline (cached) PASSED in 0.2s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/python_bzlmod_ext:test_parse_sha_manifest (cached) PASSED in 0.1s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/repl:repl_with_dep_test (cached) PASSED in 3.8s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/repl:repl_without_dep_test (cached) PASSED in 4.1s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/repo_utils:test_get_platforms_os_name (cached) PASSED in 0.2s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/repo_utils:test_is_relative_to (cached) PASSED in 0.1s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/repo_utils:test_relative_to (cached) PASSED in 0.1s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:pathlib_min_python_test (cached) PASSED in 1.6s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:pathlib_test (cached) PASSED in 2.1s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:publishing (cached) PASSED in 0.3s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:runfiles_min_python_test (cached) PASSED in 2.5s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:runfiles_test (cached) PASSED in 1.2s +_bk;t=1781335895424(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/runtime_env_toolchain:bootstrap_script_test (cached) PASSED in 1.6s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/runtime_env_toolchain:test_runtime_env_toolchain_matches (cached) PASSED in 0.3s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/runtime_env_toolchain:toolchain_runs_test (cached) PASSED in 1.0s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_file (cached) PASSED in 0.5s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_glob (cached) PASSED in 0.6s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_mctx (cached) PASSED in 0.5s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_module_and_tags (cached) PASSED in 0.6s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_path (cached) PASSED in 0.6s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_rctx (cached) PASSED in 0.3s +_bk;t=1781335895425(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/support/mocks:test_select (cached) PASSED in 0.6s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/text_util:test_render_alias (cached) PASSED in 0.7s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/text_util:test_render_tuple_dict (cached) PASSED in 0.3s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:build_test (cached) PASSED in 0.1s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:custom_platform_toolchain_test (cached) PASSED in 0.9s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.11_test (cached) PASSED in 1.2s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.12_test (cached) PASSED in 1.4s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.13_test (cached) PASSED in 0.8s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.14_test (cached) PASSED in 1.7s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.15_test (cached) PASSED in 1.4s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.16_test (cached) PASSED in 1.4s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.18_test (cached) PASSED in 1.4s +_bk;t=1781335895426(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.19_test (cached) PASSED in 1.6s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.20_test (cached) PASSED in 1.6s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.2_test (cached) PASSED in 0.8s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.4_test (cached) PASSED in 0.8s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.6_test (cached) PASSED in 0.8s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.8_test (cached) PASSED in 1.5s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.9_test (cached) PASSED in 1.2s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.10_test (cached) PASSED in 1.2s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.13_test (cached) PASSED in 1.0s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.14_test (cached) PASSED in 1.6s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.15_test (cached) PASSED in 1.4s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.1_test (cached) PASSED in 1.2s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.3_test (cached) PASSED in 1.5s +_bk;t=1781335895427(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.4_test (cached) PASSED in 1.5s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.5_test (cached) PASSED in 0.9s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.6_test (cached) PASSED in 0.9s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.7_test (cached) PASSED in 1.3s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.8_test (cached) PASSED in 1.6s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.9_test (cached) PASSED in 1.4s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.0_test (cached) PASSED in 1.8s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.11_test (cached) PASSED in 1.0s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.12_test (cached) PASSED in 1.2s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.13_test (cached) PASSED in 1.7s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.1_test (cached) PASSED in 1.1s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.2_test (cached) PASSED in 2.1s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.3_test (cached) PASSED in 1.0s +_bk;t=1781335895428(07:31:35) INFO: +_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.4_test (cached) PASSED in 1.7s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.12.7_test (cached) PASSED in 1.5s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.12.8_test (cached) PASSED in 1.6s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.12.9_test (cached) PASSED in 0.8s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.0_test (cached) PASSED in 1.5s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.10_test (cached) PASSED in 1.4s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.11_test (cached) PASSED in 1.1s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.12_test (cached) PASSED in 1.1s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.13_test (cached) PASSED in 1.0s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.1_test (cached) PASSED in 1.6s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.2_test (cached) PASSED in 1.0s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.4_test (cached) PASSED in 1.2s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.6_test (cached) PASSED in 1.0s +_bk;t=1781335895429(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.13.9_test (cached) PASSED in 1.0s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.0_test (cached) PASSED in 0.8s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.1_test (cached) PASSED in 1.6s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.2_test (cached) PASSED in 1.3s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.3_test (cached) PASSED in 1.2s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.4_test (cached) PASSED in 1.5s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.15.0a1_test (cached) PASSED in 1.4s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.15.0a2_test (cached) PASSED in 1.1s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.15.0a8_test (cached) PASSED in 1.1s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.9.25_test (cached) PASSED in 1.1s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin (cached) PASSED in 0.3s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc (cached) PASSED in 0.1s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335895430(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu (cached) PASSED in 0.0s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.0s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin (cached) PASSED in 0.9s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.6s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc (cached) PASSED in 0.8s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_musl (cached) PASSED in 0.7s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin (cached) PASSED in 0.5s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.6s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc (cached) PASSED in 0.6s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.2s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu (cached) PASSED in 0.2s +_bk;t=1781335895431(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.8s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin (cached) PASSED in 0.5s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.3s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc (cached) PASSED in 0.4s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.5s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.7s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_musl (cached) PASSED in 0.0s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/transitions:test_default (cached) PASSED in 0.8s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/tools:wheelmaker_test (cached) PASSED in 2.3s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/private/release:release_test (cached) PASSED in 1.5s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/zipapp:exe_zip_maker_test (cached) PASSED in 1.9s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/zipapp:zip_main_maker_test (cached) PASSED in 1.3s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/zipapp:zipper_test (cached) PASSED in 1.6s +_bk;t=1781335895432(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock:requirements_run_tests (cached) PASSED in 3.2s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock:requirements_test (cached) PASSED in 0.6s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock/pyproject_toml:requirements_test (cached) PASSED in 0.3s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock/workspaces:requirements_test (cached) PASSED in 0.5s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/toolchain:uv_help_test (cached) PASSED in 1.1s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_complex_configuring (cached) PASSED in 0.5s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_default_building (cached) PASSED in 0.6s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_defaults (cached) PASSED in 0.3s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_manual_url_spec (cached) PASSED in 0.2s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_non_rules_python_non_root_is_ignored (cached) PASSED in 0.2s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_only_defaults (cached) PASSED in 0.2s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_rules_python_does_not_take_precedence (cached) PASSED in 0.2s +_bk;t=1781335895433(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/uv/uv:test_toolchain_precedence (cached) PASSED in 1.0s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:importlib_metadata_test (cached) PASSED in 1.3s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:py_binary_other_module_test (cached) PASSED in 0.8s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:shared_lib_loading_test (cached) PASSED in 3.8s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:venvs_site_packages_libs_test (cached) PASSED in 1.4s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:whl_scripts_runnable_test (cached) PASSED in 1.7s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_complex_namespace_packages (cached) PASSED in 0.1s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_conflict_merging (cached) PASSED in 0.2s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_empty_and_trivial_inputs (cached) PASSED in 0.1s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_malformed_entry (cached) PASSED in 0.3s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_multiple_venv_symlink_kinds (cached) PASSED in 0.3s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_complex (cached) PASSED in 0.2s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_implicit_namespace_packages (cached) PASSED in 0.2s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_namespace_packages (cached) PASSED in 0.2s +_bk;t=1781335895434(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_whls (cached) PASSED in 0.5s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_single_toplevel (cached) PASSED in 0.1s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_package_version_filtering (cached) PASSED in 0.3s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_shared_library_symlinking (cached) PASSED in 0.2s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version:test_normalization (cached) PASSED in 0.3s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version:test_normalize_local (cached) PASSED in 0.7s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version:test_ordering (cached) PASSED in 0.2s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_complex_version (cached) PASSED in 0.3s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_major_minor_patch_version (cached) PASSED in 0.1s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_major_minor_version (cached) PASSED in 0.4s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_major_minor_version_custom_sep (cached) PASSED in 0.3s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/whl_filegroup:extract_wheel_files_test (cached) PASSED in 0.8s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/whl_filegroup:test_runfiles (cached) PASSED in 0.4s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895435 _bk;t=1781335895435//tests/whl_filegroup:whl_headers_test (cached) PASSED in 0.4s +_bk;t=1781335895435(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/whl_with_build_files:verify_files_test (cached) PASSED in 0.9s +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/base_rules/py_binary:test_py_info_propagation_builtin SKIPPED +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/base_rules/py_library:test_py_info_propagation_builtin SKIPPED +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/base_rules/py_test:test_py_info_propagation_builtin SKIPPED +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/cc/current_py_cc_headers:abi3_headers_linkage_test_py SKIPPED +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/py_runtime_pair:test_builtin_py_info_accepted SKIPPED +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/build_data:build_data_test PASSED in 0.6s +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436//tests/exec_toolchain_matching:test_exec_matches_target_python_version FAILED in 3 out of 3 in 0.3s +_bk;t=1781335895436 Stats over 3 runs: max = 0.3s, min = 0.0s, avg = 0.1s, dev = 0.1s +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895436 _bk;t=1781335895436 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log +_bk;t=1781335895436(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437//tests/toolchains/transitions:test_full_version FAILED in 3 out of 3 in 0.3s +_bk;t=1781335895437 Stats over 3 runs: max = 0.3s, min = 0.2s, avg = 0.3s, dev = 0.0s +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437//tests/toolchains/transitions:test_minor_versions FAILED in 3 out of 3 in 0.4s +_bk;t=1781335895437 Stats over 3 runs: max = 0.4s, min = 0.2s, avg = 0.3s, dev = 0.1s +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log +_bk;t=1781335895437(07:31:35) INFO: +_bk;t=1781335895438 _bk;t=1781335895438 +_bk;t=1781335895438(07:31:35) INFO: +_bk;t=1781335895438 _bk;t=1781335895438Executed 4 out of 590 tests: 582 tests pass, 3 fail locally, and 5 were skipped. +_bk;t=1781335895438(07:31:35) INFO: +_bk;t=1781335895688 _bk;t=1781335895689(07:31:35) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/67eae3b6-d4bb-47df-8e18-c383944c297b +_bk;t=1781335895689bazel info output_base +_bk;t=1781335895994WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated +_bk;t=1781335895994WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated +_bk;t=1781335895994WARNING: Option 'enable_bzlmod' is deprecated +_bk;t=1781335895994WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335895994WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated +_bk;t=1781335895994WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated +_bk;t=1781335895994INFO: Invocation ID: 1090e986-5dab-404f-b4ea-4e86952b5625 +_bk;t=1781335896051 +_bk;t=1781335896051 +_bk;t=1781335896051--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=1781335896051 +_bk;t=1781335896051 +_bk;t=1781335896051buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=17813358960662026-06-13 07:31:36 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" +_bk;t=17813358960672026-06-13 07:31:36 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration +_bk;t=17813358960672026-06-13 07:31:36 INFO  Creating (0-1)/1 artifacts +_bk;t=1781335896135buildkite-agent artifact upload /tmp/tmp1cesl66b/test_bep.json +_bk;t=17813358961592026-06-13 07:31:36 INFO  Found 1 files that match "/tmp/tmp1cesl66b/test_bep.json" +_bk;t=17813358961602026-06-13 07:31:36 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration +_bk;t=17813358961602026-06-13 07:31:36 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358961802026-06-13 07:31:36 INFO  Uploading 019ebfe4-b04d-4e05-ae6f-9d90cfc26009 var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (177 KiB) +_bk;t=17813358962632026-06-13 07:31:36 INFO  Uploading 019ebfe4-b0a3-432e-bdde-730495b0f5e1 tmp/tmp1cesl66b/test_bep.json (2.9 MiB) +_bk;t=17813358963922026-06-13 07:31:36 INFO  Artifact uploads completed successfully +_bk;t=17813358964982026-06-13 07:31:36 INFO  Artifact uploads completed successfully +_bk;t=1781335896500bazel test failed with exit code 3 +_bk;t=1781335918351^^^ +++ +_bk;t=1781335918351🚨 Error: The command exited with status 3 +_bk;t=1781335918351^^^ +++ +_bk;t=1781335918351user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 +_bk;t=1781335918351~~~ Running plugin docker-buildkite-plugin pre-exit hook +_bk;t=1781335918352$ /etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log new file mode 100644 index 0000000000..8c46501d28 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log @@ -0,0 +1,742 @@ +_bk;t=1781335819946~~~ Running agent environment hook +_bk;t=1781335819946$ /etc/buildkite-agent/hooks/environment +_bk;t=1781335819979# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8" +_bk;t=1781335819979~~~ Preparing plugins +_bk;t=1781335819979# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" +_bk;t=1781335819979$ mktemp -dp /etc/buildkite-agent/plugins +_bk;t=1781335819979# Switching to the temporary plugin directory +_bk;t=1781335819979$ cd /etc/buildkite-agent/plugins/2021881580 +_bk;t=1781335819979$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . +_bk;t=1781335819982Cloning into '.'... +_bk;t=1781335820214POST git-upload-pack (175 bytes) +_bk;t=1781335820253POST git-upload-pack (gzip 3102 to 1570 bytes) +_bk;t=1781335820296remote: Enumerating objects: 2225, done._bk;t=1781335820296 +_bk;t=1781335820296remote: Counting objects: 0% (1/321)_bk;t=1781335820296 remote: Counting objects: 1% (4/321)_bk;t=1781335820296 remote: Counting objects: 2% (7/321)_bk;t=1781335820296 remote: Counting objects: 3% (10/321)_bk;t=1781335820296 remote: Counting objects: 4% (13/321)_bk;t=1781335820296 remote: Counting objects: 5% (17/321)_bk;t=1781335820296 remote: Counting objects: 6% (20/321)_bk;t=1781335820296 remote: Counting objects: 7% (23/321)_bk;t=1781335820296 remote: Counting objects: 8% (26/321)_bk;t=1781335820296 remote: Counting objects: 9% (29/321)_bk;t=1781335820296 remote: Counting objects: 10% (33/321)_bk;t=1781335820296 remote: Counting objects: 11% (36/321)_bk;t=1781335820296 remote: Counting objects: 12% (39/321)_bk;t=1781335820296 remote: Counting objects: 13% (42/321)_bk;t=1781335820296 remote: Counting objects: 14% (45/321)_bk;t=1781335820296 remote: Counting objects: 15% (49/321)_bk;t=1781335820296 remote: Counting objects: 16% (52/321)_bk;t=1781335820296 remote: Counting objects: 17% (55/321)_bk;t=1781335820296 remote: Counting objects: 18% (58/321)_bk;t=1781335820296 remote: Counting objects: 19% (61/321)_bk;t=1781335820296 remote: Counting objects: 20% (65/321)_bk;t=1781335820296 remote: Counting objects: 21% (68/321)_bk;t=1781335820296 remote: Counting objects: 22% (71/321)_bk;t=1781335820296 remote: Counting objects: 23% (74/321)_bk;t=1781335820296 remote: Counting objects: 24% (78/321)_bk;t=1781335820296 remote: Counting objects: 25% (81/321)_bk;t=1781335820296 remote: Counting objects: 26% (84/321)_bk;t=1781335820296 remote: Counting objects: 27% (87/321)_bk;t=1781335820296 remote: Counting objects: 28% (90/321)_bk;t=1781335820296 remote: Counting objects: 29% (94/321)_bk;t=1781335820296 remote: Counting objects: 30% (97/321)_bk;t=1781335820296 remote: Counting objects: 31% (100/321)_bk;t=1781335820296 remote: Counting objects: 32% (103/321)_bk;t=1781335820296 remote: Counting objects: 33% (106/321)_bk;t=1781335820296 remote: Counting objects: 34% (110/321)_bk;t=1781335820296 remote: Counting objects: 35% (113/321)_bk;t=1781335820296 remote: Counting objects: 36% (116/321)_bk;t=1781335820296 remote: Counting objects: 37% (119/321)_bk;t=1781335820296 remote: Counting objects: 38% (122/321)_bk;t=1781335820296 remote: Counting objects: 39% (126/321)_bk;t=1781335820296 remote: Counting objects: 40% (129/321)_bk;t=1781335820296 remote: Counting objects: 41% (132/321)_bk;t=1781335820296 remote: Counting objects: 42% (135/321)_bk;t=1781335820296 remote: Counting objects: 43% (139/321)_bk;t=1781335820296 remote: Counting objects: 44% (142/321)_bk;t=1781335820296 remote: Counting objects: 45% (145/321)_bk;t=1781335820296 remote: Counting objects: 46% (148/321)_bk;t=1781335820296 remote: Counting objects: 47% (151/321)_bk;t=1781335820296 remote: Counting objects: 48% (155/321)_bk;t=1781335820296 remote: Counting objects: 49% (158/321)_bk;t=1781335820296 remote: Counting objects: 50% (161/321)_bk;t=1781335820296 remote: Counting objects: 51% (164/321)_bk;t=1781335820296 remote: Counting objects: 52% (167/321)_bk;t=1781335820296 remote: Counting objects: 53% (171/321)_bk;t=1781335820296 remote: Counting objects: 54% (174/321)_bk;t=1781335820296 remote: Counting objects: 55% (177/321)_bk;t=1781335820296 remote: Counting objects: 56% (180/321)_bk;t=1781335820296 remote: Counting objects: 57% (183/321)_bk;t=1781335820296 remote: Counting objects: 58% (187/321)_bk;t=1781335820296 remote: Counting objects: 59% (190/321)_bk;t=1781335820296 remote: Counting objects: 60% (193/321)_bk;t=1781335820296 remote: Counting objects: 61% (196/321)_bk;t=1781335820296 remote: Counting objects: 62% (200/321)_bk;t=1781335820296 remote: Counting objects: 63% (203/321)_bk;t=1781335820296 remote: Counting objects: 64% (206/321)_bk;t=1781335820296 remote: Counting objects: 65% (209/321)_bk;t=1781335820296 remote: Counting objects: 66% (212/321)_bk;t=1781335820296 remote: Counting objects: 67% (216/321)_bk;t=1781335820296 remote: Counting objects: 68% (219/321)_bk;t=1781335820296 remote: Counting objects: 69% (222/321)_bk;t=1781335820296 remote: Counting objects: 70% (225/321)_bk;t=1781335820296 remote: Counting objects: 71% (228/321)_bk;t=1781335820296 remote: Counting objects: 72% (232/321)_bk;t=1781335820296 remote: Counting objects: 73% (235/321)_bk;t=1781335820296 remote: Counting objects: 74% (238/321)_bk;t=1781335820296 remote: Counting objects: 75% (241/321)_bk;t=1781335820296 remote: Counting objects: 76% (244/321)_bk;t=1781335820296 remote: Counting objects: 77% (248/321)_bk;t=1781335820296 remote: Counting objects: 78% (251/321)_bk;t=1781335820296 remote: Counting objects: 79% (254/321)_bk;t=1781335820296 remote: Counting objects: 80% (257/321)_bk;t=1781335820296 remote: Counting objects: 81% (261/321)_bk;t=1781335820296 remote: Counting objects: 82% (264/321)_bk;t=1781335820296 remote: Counting objects: 83% (267/321)_bk;t=1781335820296 remote: Counting objects: 84% (270/321)_bk;t=1781335820296 remote: Counting objects: 85% (273/321)_bk;t=1781335820296 remote: Counting objects: 86% (277/321)_bk;t=1781335820296 remote: Counting objects: 87% (280/321)_bk;t=1781335820296 remote: Counting objects: 88% (283/321)_bk;t=1781335820296 remote: Counting objects: 89% (286/321)_bk;t=1781335820296 remote: Counting objects: 90% (289/321)_bk;t=1781335820296 remote: Counting objects: 91% (293/321)_bk;t=1781335820296 remote: Counting objects: 92% (296/321)_bk;t=1781335820296 remote: Counting objects: 93% (299/321)_bk;t=1781335820296 remote: Counting objects: 94% (302/321)_bk;t=1781335820296 remote: Counting objects: 95% (305/321)_bk;t=1781335820296 remote: Counting objects: 96% (309/321)_bk;t=1781335820296 remote: Counting objects: 97% (312/321)_bk;t=1781335820296 remote: Counting objects: 98% (315/321)_bk;t=1781335820296 remote: Counting objects: 99% (318/321)_bk;t=1781335820296 remote: Counting objects: 100% (321/321)_bk;t=1781335820296 remote: Counting objects: 100% (321/321), done._bk;t=1781335820296 +_bk;t=1781335820296remote: Compressing objects: 0% (1/150)_bk;t=1781335820296 remote: Compressing objects: 1% (2/150)_bk;t=1781335820296 remote: Compressing objects: 2% (3/150)_bk;t=1781335820296 remote: Compressing objects: 3% (5/150)_bk;t=1781335820297 remote: Compressing objects: 4% (6/150)_bk;t=1781335820297 remote: Compressing objects: 5% (8/150)_bk;t=1781335820313 remote: Compressing objects: 6% (9/150)_bk;t=1781335820313 remote: Compressing objects: 7% (11/150)_bk;t=1781335820313 remote: Compressing objects: 8% (12/150)_bk;t=1781335820313 remote: Compressing objects: 9% (14/150)_bk;t=1781335820313 remote: Compressing objects: 10% (15/150)_bk;t=1781335820313 remote: Compressing objects: 11% (17/150)_bk;t=1781335820313 remote: Compressing objects: 12% (18/150)_bk;t=1781335820313 remote: Compressing objects: 13% (20/150)_bk;t=1781335820313 remote: Compressing objects: 14% (21/150)_bk;t=1781335820313 remote: Compressing objects: 15% (23/150)_bk;t=1781335820313 remote: Compressing objects: 16% (24/150)_bk;t=1781335820313 remote: Compressing objects: 17% (26/150)_bk;t=1781335820313 remote: Compressing objects: 18% (27/150)_bk;t=1781335820313 remote: Compressing objects: 19% (29/150)_bk;t=1781335820313 remote: Compressing objects: 20% (30/150)_bk;t=1781335820313 remote: Compressing objects: 21% (32/150)_bk;t=1781335820313 remote: Compressing objects: 22% (33/150)_bk;t=1781335820313 remote: Compressing objects: 23% (35/150)_bk;t=1781335820313 remote: Compressing objects: 24% (36/150)_bk;t=1781335820313 remote: Compressing objects: 25% (38/150)_bk;t=1781335820313 remote: Compressing objects: 26% (39/150)_bk;t=1781335820313 remote: Compressing objects: 27% (41/150)_bk;t=1781335820313 remote: Compressing objects: 28% (42/150)_bk;t=1781335820313 remote: Compressing objects: 29% (44/150)_bk;t=1781335820313 remote: Compressing objects: 30% (45/150)_bk;t=1781335820313 remote: Compressing objects: 31% (47/150)_bk;t=1781335820313 remote: Compressing objects: 32% (48/150)_bk;t=1781335820313 remote: Compressing objects: 33% (50/150)_bk;t=1781335820313 remote: Compressing objects: 34% (51/150)_bk;t=1781335820313 remote: Compressing objects: 35% (53/150)_bk;t=1781335820313 remote: Compressing objects: 36% (54/150)_bk;t=1781335820313 remote: Compressing objects: 37% (56/150)_bk;t=1781335820313 remote: Compressing objects: 38% (57/150)_bk;t=1781335820313 remote: Compressing objects: 39% (59/150)_bk;t=1781335820313 remote: Compressing objects: 40% (60/150)_bk;t=1781335820313 remote: Compressing objects: 41% (62/150)_bk;t=1781335820313 remote: Compressing objects: 42% (63/150)_bk;t=1781335820313 remote: Compressing objects: 43% (65/150)_bk;t=1781335820313 remote: Compressing objects: 44% (66/150)_bk;t=1781335820313 remote: Compressing objects: 45% (68/150)_bk;t=1781335820313 remote: Compressing objects: 46% (69/150)_bk;t=1781335820313 remote: Compressing objects: 47% (71/150)_bk;t=1781335820313 remote: Compressing objects: 48% (72/150)_bk;t=1781335820313 remote: Compressing objects: 49% (74/150)_bk;t=1781335820313 remote: Compressing objects: 50% (75/150)_bk;t=1781335820313 remote: Compressing objects: 51% (77/150)_bk;t=1781335820313 remote: Compressing objects: 52% (78/150)_bk;t=1781335820313 remote: Compressing objects: 53% (80/150)_bk;t=1781335820313 remote: Compressing objects: 54% (81/150)_bk;t=1781335820313 remote: Compressing objects: 55% (83/150)_bk;t=1781335820313 remote: Compressing objects: 56% (84/150)_bk;t=1781335820313 remote: Compressing objects: 57% (86/150)_bk;t=1781335820313 remote: Compressing objects: 58% (87/150)_bk;t=1781335820313 remote: Compressing objects: 59% (89/150)_bk;t=1781335820313 remote: Compressing objects: 60% (90/150)_bk;t=1781335820313 remote: Compressing objects: 61% (92/150)_bk;t=1781335820313 remote: Compressing objects: 62% (93/150)_bk;t=1781335820313 remote: Compressing objects: 63% (95/150)_bk;t=1781335820313 remote: Compressing objects: 64% (96/150)_bk;t=1781335820313 remote: Compressing objects: 65% (98/150)_bk;t=1781335820313 remote: Compressing objects: 66% (99/150)_bk;t=1781335820313 remote: Compressing objects: 67% (101/150)_bk;t=1781335820313 remote: Compressing objects: 68% (102/150)_bk;t=1781335820313 remote: Compressing objects: 69% (104/150)_bk;t=1781335820313 remote: Compressing objects: 70% (105/150)_bk;t=1781335820313 remote: Compressing objects: 71% (107/150)_bk;t=1781335820313 remote: Compressing objects: 72% (108/150)_bk;t=1781335820313 remote: Compressing objects: 73% (110/150)_bk;t=1781335820313 remote: Compressing objects: 74% (111/150)_bk;t=1781335820313 remote: Compressing objects: 75% (113/150)_bk;t=1781335820313 remote: Compressing objects: 76% (114/150)_bk;t=1781335820313 remote: Compressing objects: 77% (116/150)_bk;t=1781335820313 remote: Compressing objects: 78% (117/150)_bk;t=1781335820313 remote: Compressing objects: 79% (119/150)_bk;t=1781335820313 remote: Compressing objects: 80% (120/150)_bk;t=1781335820313 remote: Compressing objects: 81% (122/150)_bk;t=1781335820313 remote: Compressing objects: 82% (123/150)_bk;t=1781335820313 remote: Compressing objects: 83% (125/150)_bk;t=1781335820313 remote: Compressing objects: 84% (126/150)_bk;t=1781335820313 remote: Compressing objects: 85% (128/150)_bk;t=1781335820313 remote: Compressing objects: 86% (129/150)_bk;t=1781335820313 remote: Compressing objects: 87% (131/150)_bk;t=1781335820313 remote: Compressing objects: 88% (132/150)_bk;t=1781335820313 remote: Compressing objects: 89% (134/150)_bk;t=1781335820313 remote: Compressing objects: 90% (135/150)_bk;t=1781335820313 remote: Compressing objects: 91% (137/150)_bk;t=1781335820313 remote: Compressing objects: 92% (138/150)_bk;t=1781335820313 remote: Compressing objects: 93% (140/150)_bk;t=1781335820313 remote: Compressing objects: 94% (141/150)_bk;t=1781335820313 remote: Compressing objects: 95% (143/150)_bk;t=1781335820313 remote: Compressing objects: 96% (144/150)_bk;t=1781335820313 remote: Compressing objects: 97% (146/150)_bk;t=1781335820313 remote: Compressing objects: 98% (147/150)_bk;t=1781335820313 remote: Compressing objects: 99% (149/150)_bk;t=1781335820313 remote: Compressing objects: 100% (150/150)_bk;t=1781335820313 remote: Compressing objects: 100% (150/150), done._bk;t=1781335820313 +_bk;t=1781335820322Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) remote: Total 2225 (delta 206), reused 171 (delta 170), pack-reused 1904 (from 3)_bk;t=1781335820417 +_bk;t=1781335820417Receiving objects: 96% (2136/2225) Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.77 KiB | 5.68 MiB/s, done. +_bk;t=1781335820418Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (89/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (112/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (167/1109) Resolving deltas: 16% (178/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (213/1109) Resolving deltas: 20% (222/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (245/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (307/1109) Resolving deltas: 28% (311/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (356/1109) Resolving deltas: 33% (366/1109) Resolving deltas: 34% (378/1109) Resolving deltas: 35% (389/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (411/1109) Resolving deltas: 38% (422/1109) Resolving deltas: 39% (433/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (468/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (500/1109) Resolving deltas: 46% (511/1109) Resolving deltas: 47% (522/1109) Resolving deltas: 48% (535/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (555/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (600/1109) Resolving deltas: 55% (610/1109) Resolving deltas: 56% (623/1109) Resolving deltas: 57% (633/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (666/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (755/1109) Resolving deltas: 69% (766/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (789/1109) Resolving deltas: 72% (799/1109) Resolving deltas: 73% (810/1109) Resolving deltas: 74% (821/1109) Resolving deltas: 75% (832/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (866/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (921/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (999/1109) Resolving deltas: 91% (1010/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1098/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. +_bk;t=1781335820462# Checking out `v3.8.0` +_bk;t=1781335820462$ git checkout -f v3.8.0 +_bk;t=1781335820467Note: switching to 'v3.8.0'. +_bk;t=1781335820467 +_bk;t=1781335820467You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335820467changes and commit them, and you can discard any commits you make in this +_bk;t=1781335820467state without impacting any branches by switching back to a branch. +_bk;t=1781335820467 +_bk;t=1781335820467If you want to create a new branch to retain commits you create, you may +_bk;t=1781335820467do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335820467 +_bk;t=1781335820467 git switch -c +_bk;t=1781335820467 +_bk;t=1781335820467Or undo this operation with: +_bk;t=1781335820467 +_bk;t=1781335820467 git switch - +_bk;t=1781335820467 +_bk;t=1781335820467Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335820467 +_bk;t=1781335820467HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master +_bk;t=1781335820468# Moving temporary plugin directory to final location +_bk;t=1781335820468$ mv /etc/buildkite-agent/plugins/2021881580 /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 +_bk;t=1781335820468$ cd /var/lib/buildkite-agent/builds +_bk;t=1781335820468~~~ Running agent pre-checkout hook +_bk;t=1781335820468$ /etc/buildkite-agent/hooks/pre-checkout +_bk;t=1781335820484JOB_START_TIME: 1781335820484 +_bk;t=1781335820496Added: +_bk;t=1781335820496+ JOB_START_TIME +_bk;t=1781335820511~~~ Preparing working directory +_bk;t=1781335820511# Creating "/var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python" +_bk;t=1781335820511$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python +_bk;t=1781335820511$ cd /var/lib/gitmirrors +_bk;t=1781335820521# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335820522# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously +_bk;t=1781335820522$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head +_bk;t=1781335820762remote: Enumerating objects: 2513, done._bk;t=1781335820762 +_bk;t=1781335820762remote: Counting objects: 0% (1/1602)_bk;t=1781335820762 remote: Counting objects: 1% (17/1602)_bk;t=1781335820762 remote: Counting objects: 2% (33/1602)_bk;t=1781335820762 remote: Counting objects: 3% (49/1602)_bk;t=1781335820762 remote: Counting objects: 4% (65/1602)_bk;t=1781335820762 remote: Counting objects: 5% (81/1602)_bk;t=1781335820762 remote: Counting objects: 6% (97/1602)_bk;t=1781335820762 remote: Counting objects: 7% (113/1602)_bk;t=1781335820762 remote: Counting objects: 8% (129/1602)_bk;t=1781335820762 remote: Counting objects: 9% (145/1602)_bk;t=1781335820762 remote: Counting objects: 10% (161/1602)_bk;t=1781335820762 remote: Counting objects: 11% (177/1602)_bk;t=1781335820762 remote: Counting objects: 12% (193/1602)_bk;t=1781335820762 remote: Counting objects: 13% (209/1602)_bk;t=1781335820762 remote: Counting objects: 14% (225/1602)_bk;t=1781335820762 remote: Counting objects: 15% (241/1602)_bk;t=1781335820762 remote: Counting objects: 16% (257/1602)_bk;t=1781335820762 remote: Counting objects: 17% (273/1602)_bk;t=1781335820762 remote: Counting objects: 18% (289/1602)_bk;t=1781335820762 remote: Counting objects: 19% (305/1602)_bk;t=1781335820762 remote: Counting objects: 20% (321/1602)_bk;t=1781335820762 remote: Counting objects: 21% (337/1602)_bk;t=1781335820762 remote: Counting objects: 22% (353/1602)_bk;t=1781335820762 remote: Counting objects: 23% (369/1602)_bk;t=1781335820762 remote: Counting objects: 24% (385/1602)_bk;t=1781335820762 remote: Counting objects: 25% (401/1602)_bk;t=1781335820762 remote: Counting objects: 26% (417/1602)_bk;t=1781335820762 remote: Counting objects: 27% (433/1602)_bk;t=1781335820762 remote: Counting objects: 28% (449/1602)_bk;t=1781335820762 remote: Counting objects: 29% (465/1602)_bk;t=1781335820762 remote: Counting objects: 30% (481/1602)_bk;t=1781335820762 remote: Counting objects: 31% (497/1602)_bk;t=1781335820762 remote: Counting objects: 32% (513/1602)_bk;t=1781335820762 remote: Counting objects: 33% (529/1602)_bk;t=1781335820762 remote: Counting objects: 34% (545/1602)_bk;t=1781335820762 remote: Counting objects: 35% (561/1602)_bk;t=1781335820762 remote: Counting objects: 36% (577/1602)_bk;t=1781335820762 remote: Counting objects: 37% (593/1602)_bk;t=1781335820762 remote: Counting objects: 38% (609/1602)_bk;t=1781335820762 remote: Counting objects: 39% (625/1602)_bk;t=1781335820762 remote: Counting objects: 40% (641/1602)_bk;t=1781335820762 remote: Counting objects: 41% (657/1602)_bk;t=1781335820762 remote: Counting objects: 42% (673/1602)_bk;t=1781335820762 remote: Counting objects: 43% (689/1602)_bk;t=1781335820762 remote: Counting objects: 44% (705/1602)_bk;t=1781335820762 remote: Counting objects: 45% (721/1602)_bk;t=1781335820762 remote: Counting objects: 46% (737/1602)_bk;t=1781335820762 remote: Counting objects: 47% (753/1602)_bk;t=1781335820762 remote: Counting objects: 48% (769/1602)_bk;t=1781335820762 remote: Counting objects: 49% (785/1602)_bk;t=1781335820763 remote: Counting objects: 50% (801/1602)_bk;t=1781335820763 remote: Counting objects: 51% (818/1602)_bk;t=1781335820763 remote: Counting objects: 52% (834/1602)_bk;t=1781335820763 remote: Counting objects: 53% (850/1602)_bk;t=1781335820763 remote: Counting objects: 54% (866/1602)_bk;t=1781335820763 remote: Counting objects: 55% (882/1602)_bk;t=1781335820763 remote: Counting objects: 56% (898/1602)_bk;t=1781335820763 remote: Counting objects: 57% (914/1602)_bk;t=1781335820763 remote: Counting objects: 58% (930/1602)_bk;t=1781335820763 remote: Counting objects: 59% (946/1602)_bk;t=1781335820763 remote: Counting objects: 60% (962/1602)_bk;t=1781335820763 remote: Counting objects: 61% (978/1602)_bk;t=1781335820763 remote: Counting objects: 62% (994/1602)_bk;t=1781335820763 remote: Counting objects: 63% (1010/1602)_bk;t=1781335820763 remote: Counting objects: 64% (1026/1602)_bk;t=1781335820763 remote: Counting objects: 65% (1042/1602)_bk;t=1781335820763 remote: Counting objects: 66% (1058/1602)_bk;t=1781335820763 remote: Counting objects: 67% (1074/1602)_bk;t=1781335820763 remote: Counting objects: 68% (1090/1602)_bk;t=1781335820763 remote: Counting objects: 69% (1106/1602)_bk;t=1781335820763 remote: Counting objects: 70% (1122/1602)_bk;t=1781335820763 remote: Counting objects: 71% (1138/1602)_bk;t=1781335820763 remote: Counting objects: 72% (1154/1602)_bk;t=1781335820763 remote: Counting objects: 73% (1170/1602)_bk;t=1781335820763 remote: Counting objects: 74% (1186/1602)_bk;t=1781335820763 remote: Counting objects: 75% (1202/1602)_bk;t=1781335820763 remote: Counting objects: 76% (1218/1602)_bk;t=1781335820763 remote: Counting objects: 77% (1234/1602)_bk;t=1781335820763 remote: Counting objects: 78% (1250/1602)_bk;t=1781335820763 remote: Counting objects: 79% (1266/1602)_bk;t=1781335820763 remote: Counting objects: 80% (1282/1602)_bk;t=1781335820763 remote: Counting objects: 81% (1298/1602)_bk;t=1781335820763 remote: Counting objects: 82% (1314/1602)_bk;t=1781335820763 remote: Counting objects: 83% (1330/1602)_bk;t=1781335820763 remote: Counting objects: 84% (1346/1602)_bk;t=1781335820763 remote: Counting objects: 85% (1362/1602)_bk;t=1781335820763 remote: Counting objects: 86% (1378/1602)_bk;t=1781335820763 remote: Counting objects: 87% (1394/1602)_bk;t=1781335820763 remote: Counting objects: 88% (1410/1602)_bk;t=1781335820763 remote: Counting objects: 89% (1426/1602)_bk;t=1781335820763 remote: Counting objects: 90% (1442/1602)_bk;t=1781335820763 remote: Counting objects: 91% (1458/1602)_bk;t=1781335820763 remote: Counting objects: 92% (1474/1602)_bk;t=1781335820763 remote: Counting objects: 93% (1490/1602)_bk;t=1781335820763 remote: Counting objects: 94% (1506/1602)_bk;t=1781335820763 remote: Counting objects: 95% (1522/1602)_bk;t=1781335820763 remote: Counting objects: 96% (1538/1602)_bk;t=1781335820763 remote: Counting objects: 97% (1554/1602)_bk;t=1781335820763 remote: Counting objects: 98% (1570/1602)_bk;t=1781335820763 remote: Counting objects: 99% (1586/1602)_bk;t=1781335820763 remote: Counting objects: 100% (1602/1602)_bk;t=1781335820763 remote: Counting objects: 100% (1602/1602), done._bk;t=1781335820763 +_bk;t=1781335820763remote: Compressing objects: 0% (1/449)_bk;t=1781335820763 remote: Compressing objects: 1% (5/449)_bk;t=1781335820763 remote: Compressing objects: 2% (9/449)_bk;t=1781335820763 remote: Compressing objects: 3% (14/449)_bk;t=1781335820763 remote: Compressing objects: 4% (18/449)_bk;t=1781335820763 remote: Compressing objects: 5% (23/449)_bk;t=1781335820763 remote: Compressing objects: 6% (27/449)_bk;t=1781335820763 remote: Compressing objects: 7% (32/449)_bk;t=1781335820763 remote: Compressing objects: 8% (36/449)_bk;t=1781335820763 remote: Compressing objects: 9% (41/449)_bk;t=1781335820763 remote: Compressing objects: 10% (45/449)_bk;t=1781335820763 remote: Compressing objects: 11% (50/449)_bk;t=1781335820763 remote: Compressing objects: 12% (54/449)_bk;t=1781335820763 remote: Compressing objects: 13% (59/449)_bk;t=1781335820763 remote: Compressing objects: 14% (63/449)_bk;t=1781335820763 remote: Compressing objects: 15% (68/449)_bk;t=1781335820772 remote: Compressing objects: 16% (72/449)_bk;t=1781335820772 remote: Compressing objects: 17% (77/449)_bk;t=1781335820772 remote: Compressing objects: 18% (81/449)_bk;t=1781335820772 remote: Compressing objects: 19% (86/449)_bk;t=1781335820772 remote: Compressing objects: 20% (90/449)_bk;t=1781335820772 remote: Compressing objects: 21% (95/449)_bk;t=1781335820772 remote: Compressing objects: 22% (99/449)_bk;t=1781335820772 remote: Compressing objects: 23% (104/449)_bk;t=1781335820772 remote: Compressing objects: 24% (108/449)_bk;t=1781335820772 remote: Compressing objects: 25% (113/449)_bk;t=1781335820772 remote: Compressing objects: 26% (117/449)_bk;t=1781335820772 remote: Compressing objects: 27% (122/449)_bk;t=1781335820772 remote: Compressing objects: 28% (126/449)_bk;t=1781335820772 remote: Compressing objects: 29% (131/449)_bk;t=1781335820772 remote: Compressing objects: 30% (135/449)_bk;t=1781335820772 remote: Compressing objects: 31% (140/449)_bk;t=1781335820772 remote: Compressing objects: 32% (144/449)_bk;t=1781335820772 remote: Compressing objects: 33% (149/449)_bk;t=1781335820772 remote: Compressing objects: 34% (153/449)_bk;t=1781335820772 remote: Compressing objects: 35% (158/449)_bk;t=1781335820772 remote: Compressing objects: 36% (162/449)_bk;t=1781335820772 remote: Compressing objects: 37% (167/449)_bk;t=1781335820772 remote: Compressing objects: 38% (171/449)_bk;t=1781335820772 remote: Compressing objects: 39% (176/449)_bk;t=1781335820772 remote: Compressing objects: 40% (180/449)_bk;t=1781335820772 remote: Compressing objects: 41% (185/449)_bk;t=1781335820772 remote: Compressing objects: 42% (189/449)_bk;t=1781335820772 remote: Compressing objects: 43% (194/449)_bk;t=1781335820772 remote: Compressing objects: 44% (198/449)_bk;t=1781335820772 remote: Compressing objects: 45% (203/449)_bk;t=1781335820772 remote: Compressing objects: 46% (207/449)_bk;t=1781335820772 remote: Compressing objects: 47% (212/449)_bk;t=1781335820772 remote: Compressing objects: 48% (216/449)_bk;t=1781335820772 remote: Compressing objects: 49% (221/449)_bk;t=1781335820772 remote: Compressing objects: 50% (225/449)_bk;t=1781335820772 remote: Compressing objects: 51% (229/449)_bk;t=1781335820772 remote: Compressing objects: 52% (234/449)_bk;t=1781335820772 remote: Compressing objects: 53% (238/449)_bk;t=1781335820772 remote: Compressing objects: 54% (243/449)_bk;t=1781335820772 remote: Compressing objects: 55% (247/449)_bk;t=1781335820772 remote: Compressing objects: 56% (252/449)_bk;t=1781335820772 remote: Compressing objects: 57% (256/449)_bk;t=1781335820772 remote: Compressing objects: 58% (261/449)_bk;t=1781335820772 remote: Compressing objects: 59% (265/449)_bk;t=1781335820772 remote: Compressing objects: 60% (270/449)_bk;t=1781335820772 remote: Compressing objects: 61% (274/449)_bk;t=1781335820772 remote: Compressing objects: 62% (279/449)_bk;t=1781335820772 remote: Compressing objects: 63% (283/449)_bk;t=1781335820772 remote: Compressing objects: 64% (288/449)_bk;t=1781335820772 remote: Compressing objects: 65% (292/449)_bk;t=1781335820772 remote: Compressing objects: 66% (297/449)_bk;t=1781335820772 remote: Compressing objects: 67% (301/449)_bk;t=1781335820772 remote: Compressing objects: 68% (306/449)_bk;t=1781335820772 remote: Compressing objects: 69% (310/449)_bk;t=1781335820772 remote: Compressing objects: 70% (315/449)_bk;t=1781335820772 remote: Compressing objects: 71% (319/449)_bk;t=1781335820772 remote: Compressing objects: 72% (324/449)_bk;t=1781335820772 remote: Compressing objects: 73% (328/449)_bk;t=1781335820772 remote: Compressing objects: 74% (333/449)_bk;t=1781335820772 remote: Compressing objects: 75% (337/449)_bk;t=1781335820772 remote: Compressing objects: 76% (342/449)_bk;t=1781335820772 remote: Compressing objects: 77% (346/449)_bk;t=1781335820772 remote: Compressing objects: 78% (351/449)_bk;t=1781335820772 remote: Compressing objects: 79% (355/449)_bk;t=1781335820772 remote: Compressing objects: 80% (360/449)_bk;t=1781335820772 remote: Compressing objects: 81% (364/449)_bk;t=1781335820772 remote: Compressing objects: 82% (369/449)_bk;t=1781335820772 remote: Compressing objects: 83% (373/449)_bk;t=1781335820772 remote: Compressing objects: 84% (378/449)_bk;t=1781335820772 remote: Compressing objects: 85% (382/449)_bk;t=1781335820772 remote: Compressing objects: 86% (387/449)_bk;t=1781335820772 remote: Compressing objects: 87% (391/449)_bk;t=1781335820772 remote: Compressing objects: 88% (396/449)_bk;t=1781335820772 remote: Compressing objects: 89% (400/449)_bk;t=1781335820772 remote: Compressing objects: 90% (405/449)_bk;t=1781335820772 remote: Compressing objects: 91% (409/449)_bk;t=1781335820772 remote: Compressing objects: 92% (414/449)_bk;t=1781335820772 remote: Compressing objects: 93% (418/449)_bk;t=1781335820772 remote: Compressing objects: 94% (423/449)_bk;t=1781335820772 remote: Compressing objects: 95% (427/449)_bk;t=1781335820772 remote: Compressing objects: 96% (432/449)_bk;t=1781335820772 remote: Compressing objects: 97% (436/449)_bk;t=1781335820772 remote: Compressing objects: 98% (441/449)_bk;t=1781335820772 remote: Compressing objects: 99% (445/449)_bk;t=1781335820772 remote: Compressing objects: 100% (449/449)_bk;t=1781335820772 remote: Compressing objects: 100% (449/449), done._bk;t=1781335820772 +_bk;t=1781335820790Receiving objects: 0% (1/2513) Receiving objects: 1% (26/2513) Receiving objects: 2% (51/2513) Receiving objects: 3% (76/2513) Receiving objects: 4% (101/2513) Receiving objects: 5% (126/2513) Receiving objects: 6% (151/2513) Receiving objects: 7% (176/2513) Receiving objects: 8% (202/2513) Receiving objects: 9% (227/2513) Receiving objects: 10% (252/2513) Receiving objects: 11% (277/2513) Receiving objects: 12% (302/2513) Receiving objects: 13% (327/2513) Receiving objects: 14% (352/2513) Receiving objects: 15% (377/2513) Receiving objects: 16% (403/2513) Receiving objects: 17% (428/2513) Receiving objects: 18% (453/2513) Receiving objects: 19% (478/2513) Receiving objects: 20% (503/2513) Receiving objects: 21% (528/2513) Receiving objects: 22% (553/2513) Receiving objects: 23% (578/2513) Receiving objects: 24% (604/2513) Receiving objects: 25% (629/2513) Receiving objects: 26% (654/2513) Receiving objects: 27% (679/2513) Receiving objects: 28% (704/2513) Receiving objects: 29% (729/2513) Receiving objects: 30% (754/2513) Receiving objects: 31% (780/2513) Receiving objects: 32% (805/2513) Receiving objects: 33% (830/2513) Receiving objects: 34% (855/2513) Receiving objects: 35% (880/2513) Receiving objects: 36% (905/2513) Receiving objects: 37% (930/2513) Receiving objects: 38% (955/2513) Receiving objects: 39% (981/2513) Receiving objects: 40% (1006/2513) Receiving objects: 41% (1031/2513) Receiving objects: 42% (1056/2513) Receiving objects: 43% (1081/2513) Receiving objects: 44% (1106/2513) Receiving objects: 45% (1131/2513) Receiving objects: 46% (1156/2513) Receiving objects: 47% (1182/2513) Receiving objects: 48% (1207/2513) Receiving objects: 49% (1232/2513) Receiving objects: 50% (1257/2513) Receiving objects: 51% (1282/2513) Receiving objects: 52% (1307/2513) Receiving objects: 53% (1332/2513) Receiving objects: 54% (1358/2513) Receiving objects: 55% (1383/2513) Receiving objects: 56% (1408/2513) Receiving objects: 57% (1433/2513) Receiving objects: 58% (1458/2513) Receiving objects: 59% (1483/2513) Receiving objects: 60% (1508/2513) Receiving objects: 61% (1533/2513) Receiving objects: 62% (1559/2513) Receiving objects: 63% (1584/2513) Receiving objects: 64% (1609/2513) Receiving objects: 65% (1634/2513) Receiving objects: 66% (1659/2513) Receiving objects: 67% (1684/2513) Receiving objects: 68% (1709/2513) Receiving objects: 69% (1734/2513) Receiving objects: 70% (1760/2513) Receiving objects: 71% (1785/2513) Receiving objects: 72% (1810/2513) Receiving objects: 73% (1835/2513) Receiving objects: 74% (1860/2513) Receiving objects: 75% (1885/2513) Receiving objects: 76% (1910/2513) Receiving objects: 77% (1936/2513) Receiving objects: 78% (1961/2513) Receiving objects: 79% (1986/2513) Receiving objects: 80% (2011/2513) Receiving objects: 81% (2036/2513) Receiving objects: 82% (2061/2513) Receiving objects: 83% (2086/2513) Receiving objects: 84% (2111/2513) Receiving objects: 85% (2137/2513) Receiving objects: 86% (2162/2513) Receiving objects: 87% (2187/2513) Receiving objects: 88% (2212/2513) Receiving objects: 89% (2237/2513) Receiving objects: 90% (2262/2513) Receiving objects: 91% (2287/2513) Receiving objects: 92% (2312/2513) Receiving objects: 93% (2338/2513) Receiving objects: 94% (2363/2513) Receiving objects: 95% (2388/2513) Receiving objects: 96% (2413/2513) remote: Total 2513 (delta 1370), reused 1217 (delta 1146), pack-reused 911 (from 3)_bk;t=1781335820909 +_bk;t=1781335820911Receiving objects: 97% (2438/2513) Receiving objects: 98% (2463/2513) Receiving objects: 99% (2488/2513) Receiving objects: 100% (2513/2513) Receiving objects: 100% (2513/2513), 1.58 MiB | 13.03 MiB/s, done. +_bk;t=1781335820912Resolving deltas: 0% (0/1537) Resolving deltas: 1% (16/1537) Resolving deltas: 2% (31/1537) Resolving deltas: 3% (47/1537) Resolving deltas: 4% (62/1537) Resolving deltas: 5% (77/1537) Resolving deltas: 6% (93/1537) Resolving deltas: 7% (108/1537) Resolving deltas: 8% (123/1537) Resolving deltas: 9% (139/1537) Resolving deltas: 10% (154/1537) Resolving deltas: 11% (170/1537) Resolving deltas: 12% (186/1537) Resolving deltas: 13% (200/1537) Resolving deltas: 14% (216/1537) Resolving deltas: 15% (232/1537) Resolving deltas: 16% (247/1537) Resolving deltas: 17% (262/1537) Resolving deltas: 18% (277/1537) Resolving deltas: 19% (293/1537) Resolving deltas: 20% (308/1537) Resolving deltas: 21% (324/1537) Resolving deltas: 22% (339/1537) Resolving deltas: 23% (354/1537) Resolving deltas: 24% (369/1537) Resolving deltas: 25% (385/1537) Resolving deltas: 26% (400/1537) Resolving deltas: 27% (415/1537) Resolving deltas: 28% (431/1537) Resolving deltas: 29% (446/1537) Resolving deltas: 30% (462/1537) Resolving deltas: 31% (477/1537) Resolving deltas: 32% (492/1537) Resolving deltas: 33% (508/1537) Resolving deltas: 34% (523/1537) Resolving deltas: 35% (538/1537) Resolving deltas: 36% (554/1537) Resolving deltas: 37% (569/1537) Resolving deltas: 38% (585/1537) Resolving deltas: 39% (600/1537) Resolving deltas: 40% (615/1537) Resolving deltas: 41% (631/1537) Resolving deltas: 42% (646/1537) Resolving deltas: 43% (661/1537) Resolving deltas: 44% (677/1537) Resolving deltas: 45% (692/1537) Resolving deltas: 46% (708/1537) Resolving deltas: 47% (723/1537) Resolving deltas: 48% (738/1537) Resolving deltas: 49% (754/1537) Resolving deltas: 50% (769/1537) Resolving deltas: 51% (784/1537) Resolving deltas: 52% (800/1537) Resolving deltas: 53% (815/1537) Resolving deltas: 54% (830/1537) Resolving deltas: 55% (846/1537) Resolving deltas: 56% (861/1537) Resolving deltas: 57% (877/1537) Resolving deltas: 58% (892/1537) Resolving deltas: 59% (907/1537) Resolving deltas: 60% (923/1537) Resolving deltas: 61% (938/1537) Resolving deltas: 62% (953/1537) Resolving deltas: 63% (969/1537) Resolving deltas: 64% (984/1537) Resolving deltas: 65% (1000/1537) Resolving deltas: 66% (1015/1537) Resolving deltas: 67% (1030/1537) Resolving deltas: 68% (1046/1537) Resolving deltas: 69% (1061/1537) Resolving deltas: 70% (1076/1537) Resolving deltas: 71% (1092/1537) Resolving deltas: 72% (1107/1537) Resolving deltas: 73% (1123/1537) Resolving deltas: 74% (1138/1537) Resolving deltas: 75% (1153/1537) Resolving deltas: 76% (1169/1537) Resolving deltas: 77% (1184/1537) Resolving deltas: 78% (1199/1537) Resolving deltas: 79% (1215/1537) Resolving deltas: 80% (1230/1537) Resolving deltas: 81% (1245/1537) Resolving deltas: 82% (1261/1537) Resolving deltas: 83% (1276/1537) Resolving deltas: 84% (1292/1537) Resolving deltas: 85% (1307/1537) Resolving deltas: 86% (1322/1537) Resolving deltas: 87% (1338/1537) Resolving deltas: 88% (1353/1537) Resolving deltas: 89% (1368/1537) Resolving deltas: 90% (1384/1537) Resolving deltas: 91% (1399/1537) Resolving deltas: 92% (1415/1537) Resolving deltas: 93% (1430/1537) Resolving deltas: 94% (1445/1537) Resolving deltas: 95% (1461/1537) Resolving deltas: 96% (1476/1537) Resolving deltas: 97% (1491/1537) Resolving deltas: 98% (1507/1537) Resolving deltas: 99% (1522/1537) Resolving deltas: 100% (1537/1537) Resolving deltas: 100% (1537/1537), completed with 253 local objects. +_bk;t=1781335821061From https://github.com/bazel-contrib/rules_python +_bk;t=1781335821061 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335821063$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python +_bk;t=1781335821063$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335821065Cloning into '.'... +_bk;t=1781335821195POST git-upload-pack (175 bytes) +_bk;t=1781335821266POST git-upload-pack (gzip 2193 to 1014 bytes) +_bk;t=1781335821318remote: Enumerating objects: 2527, done._bk;t=1781335821318 +_bk;t=1781335821318remote: Counting objects: 0% (1/1589)_bk;t=1781335821318 remote: Counting objects: 1% (16/1589)_bk;t=1781335821318 remote: Counting objects: 2% (32/1589)_bk;t=1781335821318 remote: Counting objects: 3% (48/1589)_bk;t=1781335821318 remote: Counting objects: 4% (64/1589)_bk;t=1781335821318 remote: Counting objects: 5% (80/1589)_bk;t=1781335821318 remote: Counting objects: 6% (96/1589)_bk;t=1781335821318 remote: Counting objects: 7% (112/1589)_bk;t=1781335821318 remote: Counting objects: 8% (128/1589)_bk;t=1781335821318 remote: Counting objects: 9% (144/1589)_bk;t=1781335821318 remote: Counting objects: 10% (159/1589)_bk;t=1781335821318 remote: Counting objects: 11% (175/1589)_bk;t=1781335821318 remote: Counting objects: 12% (191/1589)_bk;t=1781335821318 remote: Counting objects: 13% (207/1589)_bk;t=1781335821318 remote: Counting objects: 14% (223/1589)_bk;t=1781335821318 remote: Counting objects: 15% (239/1589)_bk;t=1781335821318 remote: Counting objects: 16% (255/1589)_bk;t=1781335821318 remote: Counting objects: 17% (271/1589)_bk;t=1781335821318 remote: Counting objects: 18% (287/1589)_bk;t=1781335821318 remote: Counting objects: 19% (302/1589)_bk;t=1781335821318 remote: Counting objects: 20% (318/1589)_bk;t=1781335821318 remote: Counting objects: 21% (334/1589)_bk;t=1781335821318 remote: Counting objects: 22% (350/1589)_bk;t=1781335821318 remote: Counting objects: 23% (366/1589)_bk;t=1781335821318 remote: Counting objects: 24% (382/1589)_bk;t=1781335821318 remote: Counting objects: 25% (398/1589)_bk;t=1781335821318 remote: Counting objects: 26% (414/1589)_bk;t=1781335821318 remote: Counting objects: 27% (430/1589)_bk;t=1781335821318 remote: Counting objects: 28% (445/1589)_bk;t=1781335821318 remote: Counting objects: 29% (461/1589)_bk;t=1781335821318 remote: Counting objects: 30% (477/1589)_bk;t=1781335821318 remote: Counting objects: 31% (493/1589)_bk;t=1781335821318 remote: Counting objects: 32% (509/1589)_bk;t=1781335821318 remote: Counting objects: 33% (525/1589)_bk;t=1781335821318 remote: Counting objects: 34% (541/1589)_bk;t=1781335821318 remote: Counting objects: 35% (557/1589)_bk;t=1781335821318 remote: Counting objects: 36% (573/1589)_bk;t=1781335821318 remote: Counting objects: 37% (588/1589)_bk;t=1781335821318 remote: Counting objects: 38% (604/1589)_bk;t=1781335821318 remote: Counting objects: 39% (620/1589)_bk;t=1781335821318 remote: Counting objects: 40% (636/1589)_bk;t=1781335821318 remote: Counting objects: 41% (652/1589)_bk;t=1781335821318 remote: Counting objects: 42% (668/1589)_bk;t=1781335821318 remote: Counting objects: 43% (684/1589)_bk;t=1781335821318 remote: Counting objects: 44% (700/1589)_bk;t=1781335821318 remote: Counting objects: 45% (716/1589)_bk;t=1781335821318 remote: Counting objects: 46% (731/1589)_bk;t=1781335821318 remote: Counting objects: 47% (747/1589)_bk;t=1781335821318 remote: Counting objects: 48% (763/1589)_bk;t=1781335821318 remote: Counting objects: 49% (779/1589)_bk;t=1781335821318 remote: Counting objects: 50% (795/1589)_bk;t=1781335821318 remote: Counting objects: 51% (811/1589)_bk;t=1781335821318 remote: Counting objects: 52% (827/1589)_bk;t=1781335821318 remote: Counting objects: 53% (843/1589)_bk;t=1781335821318 remote: Counting objects: 54% (859/1589)_bk;t=1781335821318 remote: Counting objects: 55% (874/1589)_bk;t=1781335821318 remote: Counting objects: 56% (890/1589)_bk;t=1781335821318 remote: Counting objects: 57% (906/1589)_bk;t=1781335821318 remote: Counting objects: 58% (922/1589)_bk;t=1781335821318 remote: Counting objects: 59% (938/1589)_bk;t=1781335821318 remote: Counting objects: 60% (954/1589)_bk;t=1781335821318 remote: Counting objects: 61% (970/1589)_bk;t=1781335821318 remote: Counting objects: 62% (986/1589)_bk;t=1781335821318 remote: Counting objects: 63% (1002/1589)_bk;t=1781335821318 remote: Counting objects: 64% (1017/1589)_bk;t=1781335821318 remote: Counting objects: 65% (1033/1589)_bk;t=1781335821318 remote: Counting objects: 66% (1049/1589)_bk;t=1781335821318 remote: Counting objects: 67% (1065/1589)_bk;t=1781335821318 remote: Counting objects: 68% (1081/1589)_bk;t=1781335821318 remote: Counting objects: 69% (1097/1589)_bk;t=1781335821318 remote: Counting objects: 70% (1113/1589)_bk;t=1781335821318 remote: Counting objects: 71% (1129/1589)_bk;t=1781335821318 remote: Counting objects: 72% (1145/1589)_bk;t=1781335821318 remote: Counting objects: 73% (1160/1589)_bk;t=1781335821318 remote: Counting objects: 74% (1176/1589)_bk;t=1781335821319 remote: Counting objects: 75% (1192/1589)_bk;t=1781335821319 remote: Counting objects: 76% (1208/1589)_bk;t=1781335821319 remote: Counting objects: 77% (1224/1589)_bk;t=1781335821319 remote: Counting objects: 78% (1240/1589)_bk;t=1781335821319 remote: Counting objects: 79% (1256/1589)_bk;t=1781335821319 remote: Counting objects: 80% (1272/1589)_bk;t=1781335821319 remote: Counting objects: 81% (1288/1589)_bk;t=1781335821319 remote: Counting objects: 82% (1303/1589)_bk;t=1781335821319 remote: Counting objects: 83% (1319/1589)_bk;t=1781335821319 remote: Counting objects: 84% (1335/1589)_bk;t=1781335821319 remote: Counting objects: 85% (1351/1589)_bk;t=1781335821319 remote: Counting objects: 86% (1367/1589)_bk;t=1781335821319 remote: Counting objects: 87% (1383/1589)_bk;t=1781335821319 remote: Counting objects: 88% (1399/1589)_bk;t=1781335821319 remote: Counting objects: 89% (1415/1589)_bk;t=1781335821319 remote: Counting objects: 90% (1431/1589)_bk;t=1781335821319 remote: Counting objects: 91% (1446/1589)_bk;t=1781335821319 remote: Counting objects: 92% (1462/1589)_bk;t=1781335821319 remote: Counting objects: 93% (1478/1589)_bk;t=1781335821319 remote: Counting objects: 94% (1494/1589)_bk;t=1781335821319 remote: Counting objects: 95% (1510/1589)_bk;t=1781335821319 remote: Counting objects: 96% (1526/1589)_bk;t=1781335821319 remote: Counting objects: 97% (1542/1589)_bk;t=1781335821319 remote: Counting objects: 98% (1558/1589)_bk;t=1781335821319 remote: Counting objects: 99% (1574/1589)_bk;t=1781335821319 remote: Counting objects: 100% (1589/1589)_bk;t=1781335821319 remote: Counting objects: 100% (1589/1589), done._bk;t=1781335821319 +_bk;t=1781335821319remote: Compressing objects: 0% (1/375)_bk;t=1781335821319 remote: Compressing objects: 1% (4/375)_bk;t=1781335821319 remote: Compressing objects: 2% (8/375)_bk;t=1781335821319 remote: Compressing objects: 3% (12/375)_bk;t=1781335821319 remote: Compressing objects: 4% (15/375)_bk;t=1781335821319 remote: Compressing objects: 5% (19/375)_bk;t=1781335821319 remote: Compressing objects: 6% (23/375)_bk;t=1781335821319 remote: Compressing objects: 7% (27/375)_bk;t=1781335821319 remote: Compressing objects: 8% (30/375)_bk;t=1781335821319 remote: Compressing objects: 9% (34/375)_bk;t=1781335821319 remote: Compressing objects: 10% (38/375)_bk;t=1781335821319 remote: Compressing objects: 11% (42/375)_bk;t=1781335821319 remote: Compressing objects: 12% (45/375)_bk;t=1781335821319 remote: Compressing objects: 13% (49/375)_bk;t=1781335821319 remote: Compressing objects: 14% (53/375)_bk;t=1781335821319 remote: Compressing objects: 15% (57/375)_bk;t=1781335821319 remote: Compressing objects: 16% (60/375)_bk;t=1781335821319 remote: Compressing objects: 17% (64/375)_bk;t=1781335821319 remote: Compressing objects: 18% (68/375)_bk;t=1781335821319 remote: Compressing objects: 19% (72/375)_bk;t=1781335821319 remote: Compressing objects: 20% (75/375)_bk;t=1781335821319 remote: Compressing objects: 21% (79/375)_bk;t=1781335821319 remote: Compressing objects: 22% (83/375)_bk;t=1781335821319 remote: Compressing objects: 23% (87/375)_bk;t=1781335821319 remote: Compressing objects: 24% (90/375)_bk;t=1781335821319 remote: Compressing objects: 25% (94/375)_bk;t=1781335821319 remote: Compressing objects: 26% (98/375)_bk;t=1781335821319 remote: Compressing objects: 27% (102/375)_bk;t=1781335821319 remote: Compressing objects: 28% (105/375)_bk;t=1781335821319 remote: Compressing objects: 29% (109/375)_bk;t=1781335821319 remote: Compressing objects: 30% (113/375)_bk;t=1781335821319 remote: Compressing objects: 31% (117/375)_bk;t=1781335821319 remote: Compressing objects: 32% (120/375)_bk;t=1781335821319 remote: Compressing objects: 33% (124/375)_bk;t=1781335821319 remote: Compressing objects: 34% (128/375)_bk;t=1781335821319 remote: Compressing objects: 35% (132/375)_bk;t=1781335821319 remote: Compressing objects: 36% (135/375)_bk;t=1781335821319 remote: Compressing objects: 37% (139/375)_bk;t=1781335821319 remote: Compressing objects: 38% (143/375)_bk;t=1781335821319 remote: Compressing objects: 39% (147/375)_bk;t=1781335821319 remote: Compressing objects: 40% (150/375)_bk;t=1781335821319 remote: Compressing objects: 41% (154/375)_bk;t=1781335821319 remote: Compressing objects: 42% (158/375)_bk;t=1781335821319 remote: Compressing objects: 43% (162/375)_bk;t=1781335821319 remote: Compressing objects: 44% (165/375)_bk;t=1781335821319 remote: Compressing objects: 45% (169/375)_bk;t=1781335821319 remote: Compressing objects: 46% (173/375)_bk;t=1781335821319 remote: Compressing objects: 47% (177/375)_bk;t=1781335821319 remote: Compressing objects: 48% (180/375)_bk;t=1781335821319 remote: Compressing objects: 49% (184/375)_bk;t=1781335821319 remote: Compressing objects: 50% (188/375)_bk;t=1781335821319 remote: Compressing objects: 51% (192/375)_bk;t=1781335821319 remote: Compressing objects: 52% (195/375)_bk;t=1781335821319 remote: Compressing objects: 53% (199/375)_bk;t=1781335821319 remote: Compressing objects: 54% (203/375)_bk;t=1781335821319 remote: Compressing objects: 55% (207/375)_bk;t=1781335821319 remote: Compressing objects: 56% (210/375)_bk;t=1781335821319 remote: Compressing objects: 57% (214/375)_bk;t=1781335821319 remote: Compressing objects: 58% (218/375)_bk;t=1781335821319 remote: Compressing objects: 59% (222/375)_bk;t=1781335821319 remote: Compressing objects: 60% (225/375)_bk;t=1781335821319 remote: Compressing objects: 61% (229/375)_bk;t=1781335821319 remote: Compressing objects: 62% (233/375)_bk;t=1781335821319 remote: Compressing objects: 63% (237/375)_bk;t=1781335821319 remote: Compressing objects: 64% (240/375)_bk;t=1781335821319 remote: Compressing objects: 65% (244/375)_bk;t=1781335821319 remote: Compressing objects: 66% (248/375)_bk;t=1781335821319 remote: Compressing objects: 67% (252/375)_bk;t=1781335821319 remote: Compressing objects: 68% (255/375)_bk;t=1781335821319 remote: Compressing objects: 69% (259/375)_bk;t=1781335821319 remote: Compressing objects: 70% (263/375)_bk;t=1781335821319 remote: Compressing objects: 71% (267/375)_bk;t=1781335821319 remote: Compressing objects: 72% (270/375)_bk;t=1781335821319 remote: Compressing objects: 73% (274/375)_bk;t=1781335821319 remote: Compressing objects: 74% (278/375)_bk;t=1781335821319 remote: Compressing objects: 75% (282/375)_bk;t=1781335821319 remote: Compressing objects: 76% (285/375)_bk;t=1781335821319 remote: Compressing objects: 77% (289/375)_bk;t=1781335821319 remote: Compressing objects: 78% (293/375)_bk;t=1781335821319 remote: Compressing objects: 79% (297/375)_bk;t=1781335821319 remote: Compressing objects: 80% (300/375)_bk;t=1781335821319 remote: Compressing objects: 81% (304/375)_bk;t=1781335821319 remote: Compressing objects: 82% (308/375)_bk;t=1781335821319 remote: Compressing objects: 83% (312/375)_bk;t=1781335821319 remote: Compressing objects: 84% (315/375)_bk;t=1781335821319 remote: Compressing objects: 85% (319/375)_bk;t=1781335821319 remote: Compressing objects: 86% (323/375)_bk;t=1781335821319 remote: Compressing objects: 87% (327/375)_bk;t=1781335821319 remote: Compressing objects: 88% (330/375)_bk;t=1781335821319 remote: Compressing objects: 89% (334/375)_bk;t=1781335821319 remote: Compressing objects: 90% (338/375)_bk;t=1781335821319 remote: Compressing objects: 91% (342/375)_bk;t=1781335821319 remote: Compressing objects: 92% (345/375)_bk;t=1781335821319 remote: Compressing objects: 93% (349/375)_bk;t=1781335821319 remote: Compressing objects: 94% (353/375)_bk;t=1781335821319 remote: Compressing objects: 95% (357/375)_bk;t=1781335821319 remote: Compressing objects: 96% (360/375)_bk;t=1781335821319 remote: Compressing objects: 97% (364/375)_bk;t=1781335821319 remote: Compressing objects: 98% (368/375)_bk;t=1781335821319 remote: Compressing objects: 99% (372/375)_bk;t=1781335821319 remote: Compressing objects: 100% (375/375)_bk;t=1781335821320 remote: Compressing objects: 100% (375/375), done._bk;t=1781335821320 +_bk;t=1781335821320Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1413), reused 1218 (delta 1214), pack-reused 938 (from 3)_bk;t=1781335821458 +_bk;t=1781335821458Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.58 MiB | 11.32 MiB/s, done. +_bk;t=1781335821460Resolving deltas: 0% (0/1586) Resolving deltas: 1% (16/1586) Resolving deltas: 2% (32/1586) Resolving deltas: 3% (48/1586) Resolving deltas: 4% (64/1586) Resolving deltas: 5% (80/1586) Resolving deltas: 6% (96/1586) Resolving deltas: 7% (112/1586) Resolving deltas: 8% (127/1586) Resolving deltas: 9% (143/1586) Resolving deltas: 10% (159/1586) Resolving deltas: 11% (175/1586) Resolving deltas: 12% (191/1586) Resolving deltas: 13% (207/1586) Resolving deltas: 14% (223/1586) Resolving deltas: 15% (238/1586) Resolving deltas: 16% (254/1586) Resolving deltas: 17% (270/1586) Resolving deltas: 18% (286/1586) Resolving deltas: 19% (302/1586) Resolving deltas: 20% (318/1586) Resolving deltas: 21% (334/1586) Resolving deltas: 22% (349/1586) Resolving deltas: 23% (365/1586) Resolving deltas: 24% (381/1586) Resolving deltas: 25% (397/1586) Resolving deltas: 26% (413/1586) Resolving deltas: 27% (429/1586) Resolving deltas: 28% (445/1586) Resolving deltas: 29% (460/1586) Resolving deltas: 30% (476/1586) Resolving deltas: 31% (492/1586) Resolving deltas: 32% (508/1586) Resolving deltas: 33% (524/1586) Resolving deltas: 34% (540/1586) Resolving deltas: 35% (556/1586) Resolving deltas: 36% (571/1586) Resolving deltas: 37% (587/1586) Resolving deltas: 38% (603/1586) Resolving deltas: 39% (619/1586) Resolving deltas: 40% (635/1586) Resolving deltas: 41% (651/1586) Resolving deltas: 42% (667/1586) Resolving deltas: 43% (682/1586) Resolving deltas: 44% (698/1586) Resolving deltas: 45% (714/1586) Resolving deltas: 46% (730/1586) Resolving deltas: 47% (746/1586) Resolving deltas: 48% (762/1586) Resolving deltas: 49% (778/1586) Resolving deltas: 50% (793/1586) Resolving deltas: 51% (809/1586) Resolving deltas: 52% (825/1586) Resolving deltas: 53% (841/1586) Resolving deltas: 54% (857/1586) Resolving deltas: 55% (873/1586) Resolving deltas: 56% (889/1586) Resolving deltas: 57% (905/1586) Resolving deltas: 58% (920/1586) Resolving deltas: 59% (936/1586) Resolving deltas: 60% (952/1586) Resolving deltas: 61% (968/1586) Resolving deltas: 62% (984/1586) Resolving deltas: 63% (1000/1586) Resolving deltas: 64% (1016/1586) Resolving deltas: 65% (1031/1586) Resolving deltas: 66% (1047/1586) Resolving deltas: 67% (1063/1586) Resolving deltas: 68% (1079/1586) Resolving deltas: 69% (1095/1586) Resolving deltas: 70% (1111/1586) Resolving deltas: 71% (1127/1586) Resolving deltas: 72% (1142/1586) Resolving deltas: 73% (1158/1586) Resolving deltas: 74% (1174/1586) Resolving deltas: 75% (1190/1586) Resolving deltas: 76% (1206/1586) Resolving deltas: 77% (1222/1586) Resolving deltas: 78% (1238/1586) Resolving deltas: 79% (1253/1586) Resolving deltas: 80% (1269/1586) Resolving deltas: 81% (1285/1586) Resolving deltas: 82% (1301/1586) Resolving deltas: 83% (1317/1586) Resolving deltas: 84% (1333/1586) Resolving deltas: 85% (1349/1586) Resolving deltas: 86% (1364/1586) Resolving deltas: 87% (1380/1586) Resolving deltas: 88% (1396/1586) Resolving deltas: 89% (1412/1586) Resolving deltas: 90% (1428/1586) Resolving deltas: 91% (1444/1586) Resolving deltas: 92% (1460/1586) Resolving deltas: 93% (1475/1586) Resolving deltas: 94% (1491/1586) Resolving deltas: 95% (1507/1586) Resolving deltas: 96% (1523/1586) Resolving deltas: 97% (1539/1586) Resolving deltas: 98% (1555/1586) Resolving deltas: 99% (1571/1586) Resolving deltas: 100% (1586/1586) Resolving deltas: 100% (1586/1586), completed with 268 local objects. +_bk;t=1781335821733$ git clean -ffxdq +_bk;t=1781335821740# Fetch and checkout pull request head from GitHub +_bk;t=1781335821740$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335821867POST git-upload-pack (395 bytes) +_bk;t=1781335821920From https://github.com/bazel-contrib/rules_python +_bk;t=1781335821920 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335821920 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD +_bk;t=1781335821926# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` +_bk;t=1781335821926$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335821989Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. +_bk;t=1781335821989 +_bk;t=1781335821989You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335821989changes and commit them, and you can discard any commits you make in this +_bk;t=1781335821989state without impacting any branches by switching back to a branch. +_bk;t=1781335821989 +_bk;t=1781335821989If you want to create a new branch to retain commits you create, you may +_bk;t=1781335821989do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335821989 +_bk;t=1781335821989 git switch -c +_bk;t=1781335821989 +_bk;t=1781335821989Or undo this operation with: +_bk;t=1781335821989 +_bk;t=1781335821989 git switch - +_bk;t=1781335821989 +_bk;t=1781335821989Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335821989 +_bk;t=1781335821989HEAD is now at d6eeb759 feat(skills): Include Buildkite Build ID in monitor_remote_ci summary +_bk;t=1781335821989# Cleaning again to catch any post-checkout changes +_bk;t=1781335821989$ git clean -ffxdq +_bk;t=1781335821996# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335821996# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335821996~~~ Running agent post-checkout hook +_bk;t=1781335821997$ /etc/buildkite-agent/hooks/post-checkout +_bk;t=1781335822027CHECKOUT_END_TIME: 1781335822012 +_bk;t=1781335822027CHECKOUT_DURATION_S: 1.528 +_bk;t=1781335822040Added: +_bk;t=1781335822040+ CHECKOUT_END_TIME +_bk;t=1781335822052Added: +_bk;t=1781335822052+ CHECKOUT_DURATION_S +_bk;t=1781335822067~~~ Running agent pre-command hook +_bk;t=1781335822067$ /etc/buildkite-agent/hooks/pre-command +_bk;t=1781335822095PREP_DURATION_S: 0.070 +_bk;t=1781335822108Added: +_bk;t=1781335822108+ PREP_DURATION_S +_bk;t=1781335822122~~~ Running plugin docker-buildkite-plugin command hook +_bk;t=1781335822122$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command +_bk;t=1781335822175--- :docker: Pulling gcr.io/bazel-public/debian11-java17 +_bk;t=1781335822186Using default tag: latest +_bk;t=1781335823662latest: Pulling from bazel-public/debian11-java17 +_bk;t=1781335823717Digest: sha256:149b61974337fc32d75af1f062b900bfb867d654146977f8472b4eec67129967 +_bk;t=1781335823717Status: Image is up to date for gcr.io/bazel-public/debian11-java17:latest +_bk;t=1781335823718gcr.io/bazel-public/debian11-java17:latest +_bk;t=1781335823734docker network host already exists +_bk;t=1781335823734--- :docker: Running command in gcr.io/bazel-public/debian11-java17 +_bk;t=1781335823734$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_MESSAGE --env BUILDKITE_AGENT_NAME --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_JOB_ID --env BUILDKITE --env BUILDKITE_SOURCE --env BUILDKITE_TAG --env BUILDKITE_STEP_KEY --env BUILDKITE_TIMEOUT --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_LABEL --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_BUILD_URL --env BUILDKITE_COMMIT --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_REPO --env BUILDKITE_AGENT_ID --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_BRANCH --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_RETRY_COUNT --env BUILDKITE_REBUILT_FROM_BUILD_ID --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_PLUGINS --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE_BUILD_ID --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_PIPELINE_NAME --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_PIPELINE_ID --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_COMPUTE_TYPE --env BUILDKITE_COMMAND --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_ORGANIZATION_SLUG --env CI --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_PULL_REQUEST --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_STEP_ID --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --network host --label com.buildkite.job-id=019ebfe3-63af-485c-806c-39bfc8991bf8 gcr.io/bazel-public/debian11-java17 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py\npython3.9 bazelci.py runner --task=integration_test_bazelinbazel_debian' +_bk;t=1781335825632 +_bk;t=1781335825632 +_bk;t=1781335825632--- :bazel: Using latest Bazel release +_bk;t=1781335825632 +_bk;t=1781335825632 +_bk;t=1781335825632bazel --version +_bk;t=17813358258802026/06/13 07:30:25 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-linux-x86_64... +_bk;t=1781335825894 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 5 MB out of 62 MB (7%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 21 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (77%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) +_bk;t=1781335826525bazel 9.1.1 +_bk;t=1781335826527bazel info output_base +_bk;t=1781335826680Extracting Bazel installation... +_bk;t=1781335828089Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335829443WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335829443INFO: Invocation ID: 4110b9a7-f247-474b-8b75-5abe9e8a29d6 +_bk;t=1781335829490 +_bk;t=1781335829490 +_bk;t=1781335829490--- :information_source: Bazel Info +_bk;t=1781335829490 +_bk;t=1781335829490 +_bk;t=1781335829490bazel --nosystem_rc --nohome_rc version +_bk;t=1781335829680WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335829680INFO: Invocation ID: 3bd3ec0c-1ad7-4404-8f2d-989c436e2457 +_bk;t=1781335829685Bazelisk version: v1.28.1 +_bk;t=1781335829685Build label: 9.1.1 +_bk;t=1781335829685Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer +_bk;t=1781335829685Build time: Wed Jun 03 15:41:13 2026 (1780501273) +_bk;t=1781335829685Build timestamp: 1780501273 +_bk;t=1781335829685Build timestamp as int: 1780501273 +_bk;t=1781335829685 +_bk;t=1781335829685bazel --nosystem_rc --nohome_rc info +_bk;t=1781335829903WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335829903INFO: Invocation ID: af6fd327-ad5a-41c6-8d23-7011f33a02c0 +_bk;t=1781335830028WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335831042WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335831042WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335831042WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335831042WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335831684bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335831684bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335831684bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335831685character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335831685command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log +_bk;t=1781335831685committed-heap-size: 117MB +_bk;t=1781335831686execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main +_bk;t=1781335831687gc-count: 15 +_bk;t=1781335831687gc-time: 53ms +_bk;t=1781335831688install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124 +_bk;t=1781335831688java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124/embedded_tools/jdk +_bk;t=1781335831688java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335831689java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335831689local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335831689max-heap-size: 31658MB +_bk;t=1781335831690output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 +_bk;t=1781335831690output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out +_bk;t=1781335831691package_path: %workspace% +_bk;t=1781335831691release: release 9.1.1 +_bk;t=1781335831691repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335831693server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073028.41 +_bk;t=1781335831693server_pid: 41 +_bk;t=1781335831694used-heap-size: 59MB +_bk;t=1781335831694workspace: /workdir +_bk;t=1781335831710 +_bk;t=1781335831713 +_bk;t=1781335831713--- :information_source: Environment Variables +_bk;t=1781335831713 +_bk;t=1781335831713 +_bk;t=1781335831713BUILDKITE_PULL_REQUEST_LABELS=() +_bk;t=1781335831713BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) +_bk;t=1781335831713LANGUAGE=(C.UTF-8) +_bk;t=1781335831713CI=(true) +_bk;t=1781335831713BUILDKITE_TRIGGERED_FROM_BUILD_ID=() +_bk;t=1781335831713BUILDKITE_BUILD_CREATOR=(Richard Levasseur) +_bk;t=1781335831713BUILDKITE_ARTIFACT_PATHS=() +_bk;t=1781335831713HOSTNAME=(bk-docker-p2kk) +_bk;t=1781335831713BUILDKITE_GITHUB_ACTION=(synchronize) +_bk;t=1781335831713BUILDKITE_AGENT_ID=(019ebfdf-c34c-4e55-a668-7238cfb7cb60) +_bk;t=1781335831713BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) +_bk;t=1781335831713BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) +_bk;t=1781335831713BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) +_bk;t=1781335831713BUILDKITE_AGENT_META_DATA_QUEUE=(default) +_bk;t=1781335831713HOME=(/var/lib/buildkite-agent) +_bk;t=1781335831713BUILDKITE_STEP_KEY=() +_bk;t=1781335831713BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() +_bk;t=1781335831713BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335831713BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) +_bk;t=1781335831713BUILDKITE=(true) +_bk;t=1781335831713BUILDKITE_COMPUTE_TYPE=(self-hosted) +_bk;t=1781335831713BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) +_bk;t=1781335831713BUILDKITE_BUILD_NUMBER=(15722) +_bk;t=1781335831713BUILDKITE_PIPELINE_PROVIDER=(github) +_bk;t=1781335831713BUILDKITE_TAG=() +_bk;t=1781335831713BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() +_bk;t=1781335831713BUILDKITE_AGENT_META_DATA_OS=(linux) +_bk;t=1781335831713BUILDKITE_JOB_ID=(019ebfe3-63af-485c-806c-39bfc8991bf8) +_bk;t=1781335831713BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) +_bk;t=1781335831713BUILDKITE_PULL_REQUEST=(3812) +_bk;t=1781335831713TERM=(xterm) +_bk;t=1781335831713BUILDKITE_COMMIT_RESOLVED=(true) +_bk;t=1781335831713BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) +_bk;t=1781335831713BUILDKITE_PIPELINE_SLUG=(rules-python-python) +_bk;t=1781335831713PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) +_bk;t=1781335831713PREP_DURATION_S=(0.070) +_bk;t=1781335831713BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) +_bk;t=1781335831713BUILDKITE_GITHUB_EVENT=(pull_request) +_bk;t=1781335831713CHECKOUT_DURATION_S=(1.528) +_bk;t=1781335831713BUILDKITE_SOURCE=(webhook) +_bk;t=1781335831713BUILDKITE_RETRY_COUNT=(0) +_bk;t=1781335831713BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) +_bk;t=1781335831713LANG=(C.UTF-8) +_bk;t=1781335831713BUILDKITE_REBUILT_FROM_BUILD_ID=() +_bk;t=1781335831713BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8) +_bk;t=1781335831713BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/debian11-java17","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) +_bk;t=1781335831713DEBIAN_FRONTEND=(noninteractive) +_bk;t=1781335831713BUILDKITE_ORGANIZATION_SLUG=(bazel) +_bk;t=1781335831713BUILDKITE_PROJECT_PROVIDER=(github) +_bk;t=1781335831713BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) +_bk;t=1781335831713BUILDKITE_LABEL=(tests/integration bazel-in-bazel: Debian on :debian: Debian 11 Bullseye (OpenJDK 17, gcc 10.2.1)) +_bk;t=1781335831713BUILDKITE_AGENT_META_DATA_KIND=(docker) +_bk;t=1781335831713BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335831713BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() +_bk;t=1781335831713BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) +_bk;t=1781335831713BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335831713python3.9 bazelci.py runner --task=integration_test_bazelinbazel_debian) +_bk;t=1781335831713BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) +_bk;t=1781335831713BUILDKITE_TIMEOUT=(480) +_bk;t=1781335831713BUILDKITE_STEP_ID=(019ebfe3-628e-4c79-8336-917074b3a387) +_bk;t=1781335831713BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335831713python3.9 bazelci.py runner --task=integration_test_bazelinbazel_debian) +_bk;t=1781335831713BUILDKITE_PIPELINE_NAME=(rules_python :python:) +_bk;t=1781335831714LC_ALL=(C.UTF-8) +_bk;t=1781335831714JAVA_HOME=(/usr/lib/jvm/java-17-openjdk-amd64) +_bk;t=1781335831714PWD=(/workdir) +_bk;t=1781335831714ANDROID_HOME=(/opt/android-sdk-linux) +_bk;t=1781335831714BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) +_bk;t=1781335831714BUILDKITE_AGENT_NAME=(bk-docker-p2kk) +_bk;t=1781335831714BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) +_bk;t=1781335831714BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) +_bk;t=1781335831714ANDROID_NDK_HOME=(/opt/android-ndk-r15c) +_bk;t=1781335831714BAZELCI_TASK=(integration_test_bazelinbazel_debian) +_bk;t=1781335831714BAZELISK_USER_AGENT=(Bazelisk/BazelCI) +_bk;t=1781335831714OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) +_bk;t=1781335831714 +_bk;t=1781335831714 +_bk;t=1781335831714--- :dart: Calculating targets +_bk;t=1781335831714 +_bk;t=1781335831714 +_bk;t=1781335831714 +_bk;t=1781335831714 +_bk;t=1781335831714--- :bazel: Computing flags for build step +_bk;t=1781335831714 +_bk;t=1781335831714 +_bk;t=1781335831715Adding to platform cache key: b'bazel' +_bk;t=1781335831715Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335831715Adding to platform cache key: b'debian11' +_bk;t=1781335831715 +_bk;t=1781335831715 +_bk;t=1781335831715+++ :bazel: Build (9.1.1) +_bk;t=1781335831715 +_bk;t=1781335831715 +_bk;t=1781335831715bazel build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp48yzaz_j/build_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=ed451beeb379d5a82169f78651e193081e3f23a97cfb4e9423574573a05a6999 --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT -- ... +_bk;t=1781335832026(07:30:32) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335832026(07:30:32) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335832027(07:30:32) INFO: Invocation ID: 2b72ca79-167c-4269-969e-c5041801b90a +_bk;t=1781335832027(07:30:32) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/2b72ca79-167c-4269-969e-c5041801b90a +_bk;t=1781335832027(07:30:32) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks +_bk;t=1781335832027(07:30:32) INFO: Options provided by the client: +_bk;t=1781335832027 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335832027(07:30:32) INFO: Reading rc options for 'build' from /workdir/.bazelrc.deleted_packages: +_bk;t=1781335832027 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335832027(07:30:32) INFO: Reading rc options for 'build' from /workdir/.bazelrc: +_bk;t=1781335832027 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335832027(07:30:32) INFO: Reading rc options for 'build' from /workdir/.bazelrc: +_bk;t=1781335832027 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335832027(07:30:32) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335832064(07:30:32) INFO: Current date is 2026-06-13 +_bk;t=1781335832064(07:30:32) +_bk;t=1781335832064 _bk;t=1781335832064(07:30:32) Computing main repo mapping: +_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335832134(07:30:32) Computing main repo mapping: +_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335832134(07:30:32) Computing main repo mapping: +_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335832134(07:30:32) Computing main repo mapping: +_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335832134(07:30:32) Computing main repo mapping: +_bk;t=1781335832684 _bk;t=1781335832684(07:30:32) Loading: +_bk;t=1781335832700 _bk;t=1781335832700(07:30:32) Loading: 1 packages loaded +_bk;t=1781335835310 _bk;t=1781335835310(07:30:35) Analyzing: 53 targets (176 packages loaded, 0 targets configured) +_bk;t=1781335835334 _bk;t=1781335835334(07:30:35) Analyzing: 53 targets (176 packages loaded, 0 targets configured) +_bk;t=1781335835334 currently loading: @@bazel_tools//tools/test +_bk;t=1781335835334 +_bk;t=1781335839588 _bk;t=1781335839588 _bk;t=1781335839588 _bk;t=1781335839588(07:30:39) INFO: Analyzed 53 targets (276 packages loaded, 15942 targets configured). +_bk;t=1781335839588(07:30:39) [320 / 347] 14 actions, 10 running +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_8.5.1.runfiles; 0s local +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_self.runfiles; 0s local +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_7.7.0.runfiles; 0s local +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_8.5.1.runfiles; 0s local +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_9.1.0.runfiles; 0s local +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_9.1.0.runfiles; 0s local +_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_7.7.0.runfiles; 0s local +_bk;t=1781335839588 Creating source manifest for //tests/integration:uv_lock_test_bazel_8.5.1; 0s local ... +_bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941(07:30:39) INFO: Found 53 targets... +_bk;t=1781335839941(07:30:39) [359 / 359] no actions running +_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: Elapsed time: 8.078s, Critical Path: 0.53s +_bk;t=1781335839968(07:30:39) [359 / 359] no actions running +_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: 359 processes: 12 remote cache hit, 347 internal. +_bk;t=1781335839968(07:30:39) [359 / 359] no actions running +_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: Build completed successfully, 359 total actions +_bk;t=1781335839968(07:30:39) INFO: +_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: +_bk;t=1781335840276 (07:30:40) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/2b72ca79-167c-4269-969e-c5041801b90a +_bk;t=1781335840277curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmp48yzaz_j/bazelci-agent +_bk;t=1781335840282 +_bk;t=1781335840282 +_bk;t=1781335840282--- :bazel: Computing flags for test step +_bk;t=1781335840282 +_bk;t=1781335840283 +_bk;t=1781335840283Adding to platform cache key: b'bazel' +_bk;t=1781335840283Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335840283Adding to platform cache key: b'debian11' +_bk;t=1781335840283 +_bk;t=1781335840283 +_bk;t=1781335840283+++ :bazel: Test (9.1.1) +_bk;t=1781335840283 +_bk;t=1781335840283 +_bk;t=1781335840283bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp48yzaz_j/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=ed451beeb379d5a82169f78651e193081e3f23a97cfb4e9423574573a05a6999 --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- ... +_bk;t=1781335840497(07:30:40) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335840497(07:30:40) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335840497(07:30:40) INFO: Invocation ID: a570592b-22f7-4334-a87f-f392db6d25a0 +_bk;t=1781335840497(07:30:40) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/a570592b-22f7-4334-a87f-f392db6d25a0 +_bk;t=1781335840497(07:30:40) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks +_bk;t=1781335840497(07:30:40) INFO: Options provided by the client: +_bk;t=1781335840497 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: +_bk;t=1781335840497 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335840497 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335840497 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335840497 'test' options: --test_output=errors +_bk;t=1781335840497(07:30:40) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335840505/tmp/tmp48yzaz_j/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp48yzaz_j/test_bep.json +_bk;t=1781335840612(07:30:40) INFO: Current date is 2026-06-13 +_bk;t=1781335840612(07:30:40) +_bk;t=1781335840612 _bk;t=1781335840612(07:30:40) Computing main repo mapping: +_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335840739(07:30:40) Computing main repo mapping: +_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335840739(07:30:40) Computing main repo mapping: +_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335840739(07:30:40) Computing main repo mapping: +_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335840739(07:30:40) Computing main repo mapping: +_bk;t=1781335840815 _bk;t=1781335840815(07:30:40) Loading: +_bk;t=1781335840818 _bk;t=1781335840818(07:30:40) Loading: 0 packages loaded +_bk;t=1781335840931 _bk;t=1781335840931(07:30:40) Analyzing: 53 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335840936 _bk;t=1781335840936(07:30:40) Analyzing: 53 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335840936 +_bk;t=1781335841054 _bk;t=1781335841054 _bk;t=1781335841054(07:30:41) INFO: Analyzed 53 targets (0 packages loaded, 0 targets configured). +_bk;t=1781335841054(07:30:41) [286 / 289] checking cached actions +_bk;t=1781335847804 _bk;t=1781335847804(07:30:47) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335847804 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache +_bk;t=1781335847946 _bk;t=1781335847946 _bk;t=1781335847946(07:30:47) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) +_bk;t=1781335847946(07:30:47) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335847946 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache +_bk;t=1781335848515buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=17813358485312026-06-13 07:30:48 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" +_bk;t=17813358485332026-06-13 07:30:48 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration +_bk;t=17813358485332026-06-13 07:30:48 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358486462026-06-13 07:30:48 INFO  Uploading 019ebfe3-f69f-4f2d-b11c-c67d48f19c42 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) +_bk;t=17813358488902026-06-13 07:30:48 INFO  Artifact uploads completed successfully +_bk;t=1781335853623 _bk;t=1781335853623 _bk;t=1781335853623(07:30:53) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335853623 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache +_bk;t=1781335853772 _bk;t=1781335853772 _bk;t=1781335853772(07:30:53) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) +_bk;t=1781335853772(07:30:53) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335853772 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache +_bk;t=1781335854515buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=17813358545292026-06-13 07:30:54 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" +_bk;t=17813358545302026-06-13 07:30:54 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration +_bk;t=17813358545302026-06-13 07:30:54 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358546272026-06-13 07:30:54 INFO  Uploading 019ebfe4-0e01-4074-a210-42ca07076a71 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) +_bk;t=17813358548332026-06-13 07:30:54 INFO  Artifact uploads completed successfully +_bk;t=1781335859507 _bk;t=1781335859507 _bk;t=1781335859507(07:30:59) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335859507 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335859546 _bk;t=1781335859546 _bk;t=1781335859546(07:30:59) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) +_bk;t=1781335859546(07:30:59) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335859546 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335859547 _bk;t=1781335859547 _bk;t=1781335859547 +_bk;t=1781335859547FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335859547 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335859547 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335859547 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335859547(07:30:59) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335859547 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335859549 _bk;t=1781335859549 _bk;t=1781335859549(07:30:59) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335859549==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=17813358595492026/06/13 07:30:41 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-linux-x86_64... +_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335859549Extracting Bazel installation... +_bk;t=1781335859549Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335859549bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335859549bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335859549bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335859549character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335859549command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log +_bk;t=1781335859549committed-heap-size: 117MB +_bk;t=1781335859549execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main +_bk;t=1781335859549gc-count: 14 +_bk;t=1781335859549gc-time: 47ms +_bk;t=1781335859549install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 +_bk;t=1781335859549java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk +_bk;t=1781335859549java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335859549java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335859549local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335859549max-heap-size: 31658MB +_bk;t=1781335859549output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 +_bk;t=1781335859549output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out +_bk;t=1781335859549package_path: %workspace% +_bk;t=1781335859549release: release 9.1.0 +_bk;t=1781335859549repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335859549server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073043.2887 +_bk;t=1781335859549server_pid: 2887 +_bk;t=1781335859549used-heap-size: 42MB +_bk;t=1781335859549workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335859549Computing main repo mapping: +_bk;t=1781335859549Loading: +_bk;t=1781335859549Loading: 0 packages loaded +_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335859549 +_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335859549INFO: Elapsed time: 0.817s, Critical Path: 0.03s +_bk;t=1781335859549INFO: 1 process: 1 internal. +_bk;t=1781335859549ERROR: Build did NOT complete successfully +_bk;t=1781335859549FAILED: +_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested +_bk;t=1781335859549================================================================================ +_bk;t=1781335859549==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335859549Extracting Bazel installation... +_bk;t=1781335859549Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335859549bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335859549bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335859549bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335859549character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335859549command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log +_bk;t=1781335859549committed-heap-size: 117MB +_bk;t=1781335859549execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main +_bk;t=1781335859549gc-count: 14 +_bk;t=1781335859549gc-time: 48ms +_bk;t=1781335859549install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 +_bk;t=1781335859549java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk +_bk;t=1781335859549java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335859549java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335859549local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335859549max-heap-size: 31658MB +_bk;t=1781335859549output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 +_bk;t=1781335859549output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out +_bk;t=1781335859549package_path: %workspace% +_bk;t=1781335859549release: release 9.1.0 +_bk;t=1781335859549repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335859549server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073049.3435 +_bk;t=1781335859549server_pid: 3435 +_bk;t=1781335859549used-heap-size: 42MB +_bk;t=1781335859549workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335859549Computing main repo mapping: +_bk;t=1781335859549Loading: +_bk;t=1781335859549Loading: 0 packages loaded +_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335859549 +_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335859549INFO: Elapsed time: 0.845s, Critical Path: 0.02s +_bk;t=1781335859549INFO: 1 process: 1 internal. +_bk;t=1781335859549ERROR: Build did NOT complete successfully +_bk;t=1781335859549FAILED: +_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested +_bk;t=1781335859549================================================================================ +_bk;t=1781335859549==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335859549Extracting Bazel installation... +_bk;t=1781335859549Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335859549bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335859549bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335859549bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335859549character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335859549command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log +_bk;t=1781335859549committed-heap-size: 117MB +_bk;t=1781335859549execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main +_bk;t=1781335859549gc-count: 14 +_bk;t=1781335859549gc-time: 43ms +_bk;t=1781335859549install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 +_bk;t=1781335859549java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk +_bk;t=1781335859549java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335859549java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335859549local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335859549max-heap-size: 31658MB +_bk;t=1781335859549output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 +_bk;t=1781335859549output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out +_bk;t=1781335859549package_path: %workspace% +_bk;t=1781335859549release: release 9.1.0 +_bk;t=1781335859549repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335859549server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073055.3982 +_bk;t=1781335859550server_pid: 3982 +_bk;t=1781335859550used-heap-size: 42MB +_bk;t=1781335859550workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335859550$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335859550Computing main repo mapping: +_bk;t=1781335859550Loading: +_bk;t=1781335859550Loading: 0 packages loaded +_bk;t=1781335859550Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335859550Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335859550 +_bk;t=1781335859550ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335859550INFO: Elapsed time: 0.862s, Critical Path: 0.03s +_bk;t=1781335859550INFO: 1 process: 1 internal. +_bk;t=1781335859550ERROR: Build did NOT complete successfully +_bk;t=1781335859550FAILED: +_bk;t=1781335859550ERROR: No test targets were found, yet testing was requested +_bk;t=1781335859550================================================================================ +_bk;t=1781335859550(07:30:59) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335859550 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335860516buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=17813358605292026-06-13 07:31:00 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" +_bk;t=17813358605302026-06-13 07:31:00 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration +_bk;t=17813358605302026-06-13 07:31:00 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358606262026-06-13 07:31:00 INFO  Uploading 019ebfe4-2572-41ed-96a5-803f865193d1 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) +_bk;t=17813358608342026-06-13 07:31:00 INFO  Artifact uploads completed successfully +_bk;t=1781335865618 _bk;t=1781335865618 _bk;t=1781335865618(07:31:05) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335865618 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 5s local, remote-cache +_bk;t=1781335870619 _bk;t=1781335870619 _bk;t=1781335870619(07:31:10) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335870619 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 10s local, remote-cache +_bk;t=1781335880426 _bk;t=1781335880426 _bk;t=1781335880426(07:31:20) WARNING: //tests/integration:uv_lock_test_bazel_8.5.1: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335880426(07:31:20) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335880426 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 20s local, remote-cache +_bk;t=1781335885619 _bk;t=1781335885619 _bk;t=1781335885619(07:31:25) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 +_bk;t=1781335885619 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 4s local, remote-cache +_bk;t=1781335890620 _bk;t=1781335890620 _bk;t=1781335890620(07:31:30) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 +_bk;t=1781335890620 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 9s local, remote-cache +_bk;t=1781335899442 _bk;t=1781335899442 _bk;t=1781335899442(07:31:39) WARNING: //tests/integration:uv_lock_test_bazel_9.1.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335899442(07:31:39) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 +_bk;t=1781335899442 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335905620 _bk;t=1781335905620 _bk;t=1781335905620(07:31:45) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 +_bk;t=1781335905620 Testing //tests/integration:uv_lock_test_bazel_self; 4s local, remote-cache +_bk;t=1781335915621 _bk;t=1781335915621 _bk;t=1781335915621(07:31:55) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 +_bk;t=1781335915621 Testing //tests/integration:uv_lock_test_bazel_self; 14s local, remote-cache +_bk;t=1781335918453 _bk;t=1781335918453 _bk;t=1781335918453(07:31:58) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335918453(07:31:58) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 +_bk;t=1781335918453 Testing //tests/integration:uv_lock_test_bazel_self; 17s local, remote-cache +_bk;t=1781335925622 _bk;t=1781335925622 _bk;t=1781335925622(07:32:05) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 +_bk;t=1781335925622 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 5s local, remote-cache +_bk;t=1781335935622 _bk;t=1781335935622 _bk;t=1781335935622(07:32:15) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 +_bk;t=1781335935622 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 15s local, remote-cache +_bk;t=1781335939549 _bk;t=1781335939549 _bk;t=1781335939549(07:32:19) WARNING: //tests/integration:uv_lock_test_bazel_7.7.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335939549(07:32:19) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 +_bk;t=1781335939549 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 19s local, remote-cache +_bk;t=1781335944000 _bk;t=1781335944000 _bk;t=1781335944000(07:32:24) INFO: Found 53 test targets... +_bk;t=1781335944000(07:32:24) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 +_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: Elapsed time: 103.543s, Critical Path: 20.55s +_bk;t=1781335944023(07:32:24) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 +_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: 54 processes: 97 remote cache hit, 1 internal, 13 local. +_bk;t=1781335944023(07:32:24) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 +_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: Build completed, 1 test FAILED, 54 total actions +_bk;t=1781335944023(07:32:24) INFO: +_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: +_bk;t=1781335944027 _bk;t=1781335944027//tests/integration:compile_pip_requirements_test_bazel_7.7.0 (cached) PASSED in 12.0s +_bk;t=1781335944027(07:32:24) INFO: +_bk;t=1781335944027 _bk;t=1781335944027//tests/integration:compile_pip_requirements_test_bazel_8.5.1 (cached) PASSED in 11.9s +_bk;t=1781335944027(07:32:24) INFO: +_bk;t=1781335944027 //tests/integration:compile_pip_requirements_test_bazel_9.1.0 (cached) PASSED in 11.9s +_bk;t=1781335944027(07:32:24) INFO: +_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_test_bazel_self (cached) PASSED in 11.0s +_bk;t=1781335944028(07:32:24) INFO: +_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_7.7.0 (cached) PASSED in 10.6s +_bk;t=1781335944028(07:32:24) INFO: +_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_8.5.1 (cached) PASSED in 11.5s +_bk;t=1781335944028(07:32:24) INFO: +_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_9.1.0 (cached) PASSED in 12.0s +_bk;t=1781335944028(07:32:24) INFO: +_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_self (cached) PASSED in 11.6s +_bk;t=1781335944029(07:32:24) INFO: +_bk;t=1781335944029 _bk;t=1781335944029//tests/integration:custom_commands_test_bazel_7.7.0 (cached) PASSED in 9.9s +_bk;t=1781335944029(07:32:24) INFO: +_bk;t=1781335944029 _bk;t=1781335944029//tests/integration:custom_commands_test_bazel_8.5.1 (cached) PASSED in 10.8s +_bk;t=1781335944029(07:32:24) INFO: +_bk;t=1781335944029 //tests/integration:custom_commands_test_bazel_9.1.0 (cached) PASSED in 9.8s +_bk;t=1781335944029(07:32:24) INFO: +_bk;t=1781335944029 //tests/integration:custom_commands_test_bazel_self (cached) PASSED in 9.3s +_bk;t=1781335944030(07:32:24) INFO: +_bk;t=1781335944030 _bk;t=1781335944030//tests/integration:local_toolchains_test_bazel_7.7.0 (cached) PASSED in 10.9s +_bk;t=1781335944030(07:32:24) INFO: +_bk;t=1781335944030 _bk;t=1781335944030//tests/integration:local_toolchains_test_bazel_8.5.1 (cached) PASSED in 11.4s +_bk;t=1781335944030(07:32:24) INFO: +_bk;t=1781335944030 _bk;t=1781335944030//tests/integration:local_toolchains_test_bazel_9.1.0 (cached) PASSED in 10.8s +_bk;t=1781335944030(07:32:24) INFO: +_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 10.6s +_bk;t=1781335944031(07:32:24) INFO: +_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_workspace_test_bazel_7.7.0 (cached) PASSED in 9.8s +_bk;t=1781335944031(07:32:24) INFO: +_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_workspace_test_bazel_8.5.1 (cached) PASSED in 11.1s +_bk;t=1781335944031(07:32:24) INFO: +_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_workspace_test_bazel_9.1.0 (cached) PASSED in 10.9s +_bk;t=1781335944031(07:32:24) INFO: +_bk;t=1781335944032 //tests/integration:local_toolchains_workspace_test_bazel_self (cached) PASSED in 10.6s +_bk;t=1781335944032(07:32:24) INFO: +_bk;t=1781335944032 //tests/integration:pip_parse_isolated_test_bazel_7.7.0 (cached) PASSED in 11.8s +_bk;t=1781335944032(07:32:24) INFO: +_bk;t=1781335944032 _bk;t=1781335944032//tests/integration:pip_parse_isolated_test_bazel_8.5.1 (cached) PASSED in 12.2s +_bk;t=1781335944032(07:32:24) INFO: +_bk;t=1781335944032 _bk;t=1781335944032//tests/integration:pip_parse_isolated_test_bazel_9.1.0 (cached) PASSED in 12.1s +_bk;t=1781335944032(07:32:24) INFO: +_bk;t=1781335944033 //tests/integration:pip_parse_isolated_test_bazel_self (cached) PASSED in 11.5s +_bk;t=1781335944033(07:32:24) INFO: +_bk;t=1781335944033 _bk;t=1781335944033//tests/integration:pip_parse_test_bazel_7.7.0 (cached) PASSED in 11.1s +_bk;t=1781335944033(07:32:24) INFO: +_bk;t=1781335944033 _bk;t=1781335944033//tests/integration:pip_parse_test_bazel_8.5.1 (cached) PASSED in 11.8s +_bk;t=1781335944033(07:32:24) INFO: +_bk;t=1781335944033 _bk;t=1781335944033//tests/integration:pip_parse_test_bazel_9.1.0 (cached) PASSED in 10.6s +_bk;t=1781335944033(07:32:24) INFO: +_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_test_bazel_self (cached) PASSED in 10.0s +_bk;t=1781335944034(07:32:24) INFO: +_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_workspace_test_bazel_7.7.0 (cached) PASSED in 9.0s +_bk;t=1781335944034(07:32:24) INFO: +_bk;t=1781335944034 //tests/integration:pip_parse_workspace_test_bazel_8.5.1 (cached) PASSED in 10.5s +_bk;t=1781335944034(07:32:24) INFO: +_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_workspace_test_bazel_9.1.0 (cached) PASSED in 10.4s +_bk;t=1781335944034(07:32:24) INFO: +_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_workspace_test_bazel_self (cached) PASSED in 10.1s +_bk;t=1781335944035(07:32:24) INFO: +_bk;t=1781335944035 _bk;t=1781335944035//tests/integration:py_cc_toolchain_registered_test_bazel_7.7.0 (cached) PASSED in 9.8s +_bk;t=1781335944035(07:32:24) INFO: +_bk;t=1781335944035 _bk;t=1781335944035//tests/integration:py_cc_toolchain_registered_test_bazel_8.5.1 (cached) PASSED in 10.3s +_bk;t=1781335944035(07:32:24) INFO: +_bk;t=1781335944035 _bk;t=1781335944035//tests/integration:py_cc_toolchain_registered_test_bazel_9.1.0 (cached) PASSED in 10.4s +_bk;t=1781335944035(07:32:24) INFO: +_bk;t=1781335944035 //tests/integration:py_cc_toolchain_registered_test_bazel_self (cached) PASSED in 9.5s +_bk;t=1781335944035(07:32:24) INFO: +_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_7.7.0 (cached) PASSED in 7.8s +_bk;t=1781335944036(07:32:24) INFO: +_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_8.5.1 (cached) PASSED in 9.5s +_bk;t=1781335944036(07:32:24) INFO: +_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_9.1.0 (cached) PASSED in 10.2s +_bk;t=1781335944036(07:32:24) INFO: +_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_self (cached) PASSED in 9.4s +_bk;t=1781335944036(07:32:24) INFO: +_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:runtime_manifests_test_bazel_7.7.0 (cached) PASSED in 11.1s +_bk;t=1781335944036(07:32:24) INFO: +_bk;t=1781335944036 //tests/integration:runtime_manifests_test_bazel_8.5.1 (cached) PASSED in 11.3s +_bk;t=1781335944037(07:32:24) INFO: +_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:runtime_manifests_test_bazel_9.1.0 (cached) PASSED in 11.2s +_bk;t=1781335944037(07:32:24) INFO: +_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:runtime_manifests_test_bazel_self (cached) PASSED in 10.7s +_bk;t=1781335944037(07:32:24) INFO: +_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:toolchain_target_settings_test_bazel_7.7.0 (cached) PASSED in 11.4s +_bk;t=1781335944037(07:32:24) INFO: +_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:toolchain_target_settings_test_bazel_8.5.1 (cached) PASSED in 12.3s +_bk;t=1781335944037(07:32:24) INFO: +_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:toolchain_target_settings_test_bazel_9.1.0 (cached) PASSED in 11.4s +_bk;t=1781335944038(07:32:24) INFO: +_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:toolchain_target_settings_test_bazel_self (cached) PASSED in 11.1s +_bk;t=1781335944038(07:32:24) INFO: +_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_7.7.0 PASSED in 19.8s +_bk;t=1781335944038(07:32:24) INFO: +_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_8.5.1 PASSED in 20.4s +_bk;t=1781335944038(07:32:24) INFO: +_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_9.1.0 PASSED in 18.7s +_bk;t=1781335944038(07:32:24) INFO: +_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_self PASSED in 17.5s +_bk;t=1781335944039(07:32:24) INFO: +_bk;t=1781335944039 _bk;t=1781335944039//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 6.4s +_bk;t=1781335944039 Stats over 3 runs: max = 6.4s, min = 5.6s, avg = 5.9s, dev = 0.4s +_bk;t=1781335944039(07:32:24) INFO: +_bk;t=1781335944039 _bk;t=1781335944039 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335944039(07:32:24) INFO: +_bk;t=1781335944039 _bk;t=1781335944039 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335944039(07:32:24) INFO: +_bk;t=1781335944039 _bk;t=1781335944039 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335944039(07:32:24) INFO: +_bk;t=1781335944040 _bk;t=1781335944040 +_bk;t=1781335944040(07:32:24) INFO: +_bk;t=1781335944040 _bk;t=1781335944040Executed 5 out of 53 tests: 52 tests pass and 1 fails locally. +_bk;t=1781335944040(07:32:24) INFO: +_bk;t=1781335944040 _bk;t=1781335944040There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. +_bk;t=1781335944040(07:32:24) INFO: +_bk;t=1781335944301 (07:32:24) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/a570592b-22f7-4334-a87f-f392db6d25a0 +_bk;t=1781335944301bazel info output_base +_bk;t=1781335944497WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335944497INFO: Invocation ID: 92b811ad-7bbd-47d8-8a70-1561d7bc3fbd +_bk;t=1781335944505 +_bk;t=1781335944505 +_bk;t=1781335944505--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=1781335944505 +_bk;t=1781335944505 +_bk;t=1781335944505buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=17813359445212026-06-13 07:32:24 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" +_bk;t=17813359445212026-06-13 07:32:24 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration +_bk;t=17813359445212026-06-13 07:32:24 INFO  Creating (0-1)/1 artifacts +_bk;t=17813359446232026-06-13 07:32:24 INFO  Uploading 019ebfe5-6d8d-453b-b9c2-5bb874b45455 var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (167 KiB) +_bk;t=17813359448332026-06-13 07:32:24 INFO  Artifact uploads completed successfully +_bk;t=1781335944847buildkite-agent artifact upload /tmp/tmp48yzaz_j/test_bep.json +_bk;t=17813359448622026-06-13 07:32:24 INFO  Found 1 files that match "/tmp/tmp48yzaz_j/test_bep.json" +_bk;t=17813359448632026-06-13 07:32:24 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration +_bk;t=17813359448632026-06-13 07:32:24 INFO  Creating (0-1)/1 artifacts +_bk;t=17813359449612026-06-13 07:32:24 INFO  Uploading 019ebfe5-6ee1-4e8f-b725-de8419dccb35 tmp/tmp48yzaz_j/test_bep.json (464 KiB) +_bk;t=17813359451612026-06-13 07:32:25 INFO  Artifact uploads completed successfully +_bk;t=1781335945162bazel test failed with exit code 3 +_bk;t=1781335946994^^^ +++ +_bk;t=1781335946994🚨 Error: The command exited with status 3 +_bk;t=1781335946994^^^ +++ +_bk;t=1781335946994user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 +_bk;t=1781335946994~~~ Running plugin docker-buildkite-plugin pre-exit hook +_bk;t=1781335946994$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log new file mode 100644 index 0000000000..2a3c1c0f2a --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log @@ -0,0 +1,744 @@ +_bk;t=1781335816034~~~ Running agent environment hook +_bk;t=1781335816034$ /etc/buildkite-agent/hooks/environment +_bk;t=1781335816069# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756" +_bk;t=1781335816069~~~ Preparing plugins +_bk;t=1781335816069# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" +_bk;t=1781335816070$ mktemp -dp /etc/buildkite-agent/plugins +_bk;t=1781335816070# Switching to the temporary plugin directory +_bk;t=1781335816070$ cd /etc/buildkite-agent/plugins/1377464703 +_bk;t=1781335816070$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . +_bk;t=1781335816073Cloning into '.'... +_bk;t=1781335816239POST git-upload-pack (175 bytes) +_bk;t=1781335816281POST git-upload-pack (gzip 3102 to 1570 bytes) +_bk;t=1781335816324remote: Enumerating objects: 2225, done._bk;t=1781335816324 +_bk;t=1781335816324remote: Counting objects: 0% (1/321)_bk;t=1781335816324 remote: Counting objects: 1% (4/321)_bk;t=1781335816324 remote: Counting objects: 2% (7/321)_bk;t=1781335816324 remote: Counting objects: 3% (10/321)_bk;t=1781335816324 remote: Counting objects: 4% (13/321)_bk;t=1781335816324 remote: Counting objects: 5% (17/321)_bk;t=1781335816324 remote: Counting objects: 6% (20/321)_bk;t=1781335816324 remote: Counting objects: 7% (23/321)_bk;t=1781335816324 remote: Counting objects: 8% (26/321)_bk;t=1781335816324 remote: Counting objects: 9% (29/321)_bk;t=1781335816324 remote: Counting objects: 10% (33/321)_bk;t=1781335816324 remote: Counting objects: 11% (36/321)_bk;t=1781335816324 remote: Counting objects: 12% (39/321)_bk;t=1781335816324 remote: Counting objects: 13% (42/321)_bk;t=1781335816324 remote: Counting objects: 14% (45/321)_bk;t=1781335816324 remote: Counting objects: 15% (49/321)_bk;t=1781335816324 remote: Counting objects: 16% (52/321)_bk;t=1781335816324 remote: Counting objects: 17% (55/321)_bk;t=1781335816324 remote: Counting objects: 18% (58/321)_bk;t=1781335816324 remote: Counting objects: 19% (61/321)_bk;t=1781335816324 remote: Counting objects: 20% (65/321)_bk;t=1781335816324 remote: Counting objects: 21% (68/321)_bk;t=1781335816324 remote: Counting objects: 22% (71/321)_bk;t=1781335816324 remote: Counting objects: 23% (74/321)_bk;t=1781335816324 remote: Counting objects: 24% (78/321)_bk;t=1781335816324 remote: Counting objects: 25% (81/321)_bk;t=1781335816324 remote: Counting objects: 26% (84/321)_bk;t=1781335816324 remote: Counting objects: 27% (87/321)_bk;t=1781335816324 remote: Counting objects: 28% (90/321)_bk;t=1781335816324 remote: Counting objects: 29% (94/321)_bk;t=1781335816324 remote: Counting objects: 30% (97/321)_bk;t=1781335816325 remote: Counting objects: 31% (100/321)_bk;t=1781335816325 remote: Counting objects: 32% (103/321)_bk;t=1781335816325 remote: Counting objects: 33% (106/321)_bk;t=1781335816325 remote: Counting objects: 34% (110/321)_bk;t=1781335816325 remote: Counting objects: 35% (113/321)_bk;t=1781335816325 remote: Counting objects: 36% (116/321)_bk;t=1781335816325 remote: Counting objects: 37% (119/321)_bk;t=1781335816325 remote: Counting objects: 38% (122/321)_bk;t=1781335816325 remote: Counting objects: 39% (126/321)_bk;t=1781335816325 remote: Counting objects: 40% (129/321)_bk;t=1781335816325 remote: Counting objects: 41% (132/321)_bk;t=1781335816325 remote: Counting objects: 42% (135/321)_bk;t=1781335816325 remote: Counting objects: 43% (139/321)_bk;t=1781335816325 remote: Counting objects: 44% (142/321)_bk;t=1781335816325 remote: Counting objects: 45% (145/321)_bk;t=1781335816325 remote: Counting objects: 46% (148/321)_bk;t=1781335816325 remote: Counting objects: 47% (151/321)_bk;t=1781335816325 remote: Counting objects: 48% (155/321)_bk;t=1781335816325 remote: Counting objects: 49% (158/321)_bk;t=1781335816325 remote: Counting objects: 50% (161/321)_bk;t=1781335816325 remote: Counting objects: 51% (164/321)_bk;t=1781335816325 remote: Counting objects: 52% (167/321)_bk;t=1781335816325 remote: Counting objects: 53% (171/321)_bk;t=1781335816325 remote: Counting objects: 54% (174/321)_bk;t=1781335816325 remote: Counting objects: 55% (177/321)_bk;t=1781335816325 remote: Counting objects: 56% (180/321)_bk;t=1781335816325 remote: Counting objects: 57% (183/321)_bk;t=1781335816325 remote: Counting objects: 58% (187/321)_bk;t=1781335816325 remote: Counting objects: 59% (190/321)_bk;t=1781335816325 remote: Counting objects: 60% (193/321)_bk;t=1781335816325 remote: Counting objects: 61% (196/321)_bk;t=1781335816325 remote: Counting objects: 62% (200/321)_bk;t=1781335816325 remote: Counting objects: 63% (203/321)_bk;t=1781335816325 remote: Counting objects: 64% (206/321)_bk;t=1781335816325 remote: Counting objects: 65% (209/321)_bk;t=1781335816325 remote: Counting objects: 66% (212/321)_bk;t=1781335816325 remote: Counting objects: 67% (216/321)_bk;t=1781335816325 remote: Counting objects: 68% (219/321)_bk;t=1781335816325 remote: Counting objects: 69% (222/321)_bk;t=1781335816325 remote: Counting objects: 70% (225/321)_bk;t=1781335816325 remote: Counting objects: 71% (228/321)_bk;t=1781335816325 remote: Counting objects: 72% (232/321)_bk;t=1781335816325 remote: Counting objects: 73% (235/321)_bk;t=1781335816325 remote: Counting objects: 74% (238/321)_bk;t=1781335816325 remote: Counting objects: 75% (241/321)_bk;t=1781335816325 remote: Counting objects: 76% (244/321)_bk;t=1781335816325 remote: Counting objects: 77% (248/321)_bk;t=1781335816325 remote: Counting objects: 78% (251/321)_bk;t=1781335816325 remote: Counting objects: 79% (254/321)_bk;t=1781335816325 remote: Counting objects: 80% (257/321)_bk;t=1781335816325 remote: Counting objects: 81% (261/321)_bk;t=1781335816325 remote: Counting objects: 82% (264/321)_bk;t=1781335816325 remote: Counting objects: 83% (267/321)_bk;t=1781335816325 remote: Counting objects: 84% (270/321)_bk;t=1781335816325 remote: Counting objects: 85% (273/321)_bk;t=1781335816325 remote: Counting objects: 86% (277/321)_bk;t=1781335816325 remote: Counting objects: 87% (280/321)_bk;t=1781335816325 remote: Counting objects: 88% (283/321)_bk;t=1781335816325 remote: Counting objects: 89% (286/321)_bk;t=1781335816325 remote: Counting objects: 90% (289/321)_bk;t=1781335816325 remote: Counting objects: 91% (293/321)_bk;t=1781335816325 remote: Counting objects: 92% (296/321)_bk;t=1781335816325 remote: Counting objects: 93% (299/321)_bk;t=1781335816325 remote: Counting objects: 94% (302/321)_bk;t=1781335816325 remote: Counting objects: 95% (305/321)_bk;t=1781335816325 remote: Counting objects: 96% (309/321)_bk;t=1781335816325 remote: Counting objects: 97% (312/321)_bk;t=1781335816325 remote: Counting objects: 98% (315/321)_bk;t=1781335816325 remote: Counting objects: 99% (318/321)_bk;t=1781335816325 remote: Counting objects: 100% (321/321)_bk;t=1781335816325 remote: Counting objects: 100% (321/321), done._bk;t=1781335816325 +_bk;t=1781335816325remote: Compressing objects: 0% (1/150)_bk;t=1781335816325 remote: Compressing objects: 1% (2/150)_bk;t=1781335816325 remote: Compressing objects: 2% (3/150)_bk;t=1781335816325 remote: Compressing objects: 3% (5/150)_bk;t=1781335816325 remote: Compressing objects: 4% (6/150)_bk;t=1781335816325 remote: Compressing objects: 5% (8/150)_bk;t=1781335816341 remote: Compressing objects: 6% (9/150)_bk;t=1781335816341 remote: Compressing objects: 7% (11/150)_bk;t=1781335816341 remote: Compressing objects: 8% (12/150)_bk;t=1781335816341 remote: Compressing objects: 9% (14/150)_bk;t=1781335816341 remote: Compressing objects: 10% (15/150)_bk;t=1781335816341 remote: Compressing objects: 11% (17/150)_bk;t=1781335816341 remote: Compressing objects: 12% (18/150)_bk;t=1781335816341 remote: Compressing objects: 13% (20/150)_bk;t=1781335816341 remote: Compressing objects: 14% (21/150)_bk;t=1781335816341 remote: Compressing objects: 15% (23/150)_bk;t=1781335816341 remote: Compressing objects: 16% (24/150)_bk;t=1781335816341 remote: Compressing objects: 17% (26/150)_bk;t=1781335816341 remote: Compressing objects: 18% (27/150)_bk;t=1781335816341 remote: Compressing objects: 19% (29/150)_bk;t=1781335816341 remote: Compressing objects: 20% (30/150)_bk;t=1781335816341 remote: Compressing objects: 21% (32/150)_bk;t=1781335816341 remote: Compressing objects: 22% (33/150)_bk;t=1781335816341 remote: Compressing objects: 23% (35/150)_bk;t=1781335816341 remote: Compressing objects: 24% (36/150)_bk;t=1781335816341 remote: Compressing objects: 25% (38/150)_bk;t=1781335816341 remote: Compressing objects: 26% (39/150)_bk;t=1781335816341 remote: Compressing objects: 27% (41/150)_bk;t=1781335816341 remote: Compressing objects: 28% (42/150)_bk;t=1781335816341 remote: Compressing objects: 29% (44/150)_bk;t=1781335816341 remote: Compressing objects: 30% (45/150)_bk;t=1781335816341 remote: Compressing objects: 31% (47/150)_bk;t=1781335816341 remote: Compressing objects: 32% (48/150)_bk;t=1781335816341 remote: Compressing objects: 33% (50/150)_bk;t=1781335816341 remote: Compressing objects: 34% (51/150)_bk;t=1781335816341 remote: Compressing objects: 35% (53/150)_bk;t=1781335816341 remote: Compressing objects: 36% (54/150)_bk;t=1781335816341 remote: Compressing objects: 37% (56/150)_bk;t=1781335816341 remote: Compressing objects: 38% (57/150)_bk;t=1781335816341 remote: Compressing objects: 39% (59/150)_bk;t=1781335816341 remote: Compressing objects: 40% (60/150)_bk;t=1781335816341 remote: Compressing objects: 41% (62/150)_bk;t=1781335816341 remote: Compressing objects: 42% (63/150)_bk;t=1781335816341 remote: Compressing objects: 43% (65/150)_bk;t=1781335816341 remote: Compressing objects: 44% (66/150)_bk;t=1781335816341 remote: Compressing objects: 45% (68/150)_bk;t=1781335816341 remote: Compressing objects: 46% (69/150)_bk;t=1781335816341 remote: Compressing objects: 47% (71/150)_bk;t=1781335816341 remote: Compressing objects: 48% (72/150)_bk;t=1781335816341 remote: Compressing objects: 49% (74/150)_bk;t=1781335816341 remote: Compressing objects: 50% (75/150)_bk;t=1781335816341 remote: Compressing objects: 51% (77/150)_bk;t=1781335816341 remote: Compressing objects: 52% (78/150)_bk;t=1781335816341 remote: Compressing objects: 53% (80/150)_bk;t=1781335816341 remote: Compressing objects: 54% (81/150)_bk;t=1781335816341 remote: Compressing objects: 55% (83/150)_bk;t=1781335816341 remote: Compressing objects: 56% (84/150)_bk;t=1781335816341 remote: Compressing objects: 57% (86/150)_bk;t=1781335816341 remote: Compressing objects: 58% (87/150)_bk;t=1781335816341 remote: Compressing objects: 59% (89/150)_bk;t=1781335816341 remote: Compressing objects: 60% (90/150)_bk;t=1781335816341 remote: Compressing objects: 61% (92/150)_bk;t=1781335816341 remote: Compressing objects: 62% (93/150)_bk;t=1781335816341 remote: Compressing objects: 63% (95/150)_bk;t=1781335816341 remote: Compressing objects: 64% (96/150)_bk;t=1781335816341 remote: Compressing objects: 65% (98/150)_bk;t=1781335816341 remote: Compressing objects: 66% (99/150)_bk;t=1781335816341 remote: Compressing objects: 67% (101/150)_bk;t=1781335816341 remote: Compressing objects: 68% (102/150)_bk;t=1781335816341 remote: Compressing objects: 69% (104/150)_bk;t=1781335816341 remote: Compressing objects: 70% (105/150)_bk;t=1781335816341 remote: Compressing objects: 71% (107/150)_bk;t=1781335816341 remote: Compressing objects: 72% (108/150)_bk;t=1781335816341 remote: Compressing objects: 73% (110/150)_bk;t=1781335816341 remote: Compressing objects: 74% (111/150)_bk;t=1781335816341 remote: Compressing objects: 75% (113/150)_bk;t=1781335816341 remote: Compressing objects: 76% (114/150)_bk;t=1781335816341 remote: Compressing objects: 77% (116/150)_bk;t=1781335816342 remote: Compressing objects: 78% (117/150)_bk;t=1781335816342 remote: Compressing objects: 79% (119/150)_bk;t=1781335816342 remote: Compressing objects: 80% (120/150)_bk;t=1781335816342 remote: Compressing objects: 81% (122/150)_bk;t=1781335816342 remote: Compressing objects: 82% (123/150)_bk;t=1781335816342 remote: Compressing objects: 83% (125/150)_bk;t=1781335816342 remote: Compressing objects: 84% (126/150)_bk;t=1781335816342 remote: Compressing objects: 85% (128/150)_bk;t=1781335816342 remote: Compressing objects: 86% (129/150)_bk;t=1781335816342 remote: Compressing objects: 87% (131/150)_bk;t=1781335816342 remote: Compressing objects: 88% (132/150)_bk;t=1781335816342 remote: Compressing objects: 89% (134/150)_bk;t=1781335816342 remote: Compressing objects: 90% (135/150)_bk;t=1781335816342 remote: Compressing objects: 91% (137/150)_bk;t=1781335816342 remote: Compressing objects: 92% (138/150)_bk;t=1781335816342 remote: Compressing objects: 93% (140/150)_bk;t=1781335816342 remote: Compressing objects: 94% (141/150)_bk;t=1781335816342 remote: Compressing objects: 95% (143/150)_bk;t=1781335816342 remote: Compressing objects: 96% (144/150)_bk;t=1781335816342 remote: Compressing objects: 97% (146/150)_bk;t=1781335816342 remote: Compressing objects: 98% (147/150)_bk;t=1781335816342 remote: Compressing objects: 99% (149/150)_bk;t=1781335816342 remote: Compressing objects: 100% (150/150)_bk;t=1781335816342 remote: Compressing objects: 100% (150/150), done._bk;t=1781335816342 +_bk;t=1781335816350Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) remote: Total 2225 (delta 206), reused 171 (delta 170), pack-reused 1904 (from 3)_bk;t=1781335816427 +_bk;t=1781335816427Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) Receiving objects: 96% (2136/2225) Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.77 KiB | 6.92 MiB/s, done. +_bk;t=1781335816429Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (89/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (111/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (168/1109) Resolving deltas: 16% (178/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (211/1109) Resolving deltas: 20% (222/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (244/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (300/1109) Resolving deltas: 28% (311/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (355/1109) Resolving deltas: 33% (366/1109) Resolving deltas: 34% (379/1109) Resolving deltas: 35% (390/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (411/1109) Resolving deltas: 38% (422/1109) Resolving deltas: 39% (434/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (466/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (500/1109) Resolving deltas: 46% (511/1109) Resolving deltas: 47% (522/1109) Resolving deltas: 48% (533/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (555/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (600/1109) Resolving deltas: 55% (610/1109) Resolving deltas: 56% (622/1109) Resolving deltas: 57% (634/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (666/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (755/1109) Resolving deltas: 69% (767/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (788/1109) Resolving deltas: 72% (800/1109) Resolving deltas: 73% (810/1109) Resolving deltas: 74% (821/1109) Resolving deltas: 75% (832/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (866/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (921/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (1000/1109) Resolving deltas: 91% (1010/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1098/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. +_bk;t=1781335816472# Checking out `v3.8.0` +_bk;t=1781335816472$ git checkout -f v3.8.0 +_bk;t=1781335816478Note: switching to 'v3.8.0'. +_bk;t=1781335816478 +_bk;t=1781335816478You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335816478changes and commit them, and you can discard any commits you make in this +_bk;t=1781335816478state without impacting any branches by switching back to a branch. +_bk;t=1781335816478 +_bk;t=1781335816478If you want to create a new branch to retain commits you create, you may +_bk;t=1781335816478do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335816478 +_bk;t=1781335816478 git switch -c +_bk;t=1781335816478 +_bk;t=1781335816478Or undo this operation with: +_bk;t=1781335816478 +_bk;t=1781335816478 git switch - +_bk;t=1781335816478 +_bk;t=1781335816478Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335816478 +_bk;t=1781335816478HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master +_bk;t=1781335816479# Moving temporary plugin directory to final location +_bk;t=1781335816479$ mv /etc/buildkite-agent/plugins/1377464703 /etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 +_bk;t=1781335816479$ cd /var/lib/buildkite-agent/builds +_bk;t=1781335816479~~~ Running agent pre-checkout hook +_bk;t=1781335816479$ /etc/buildkite-agent/hooks/pre-checkout +_bk;t=1781335816498JOB_START_TIME: 1781335816498 +_bk;t=1781335816511Added: +_bk;t=1781335816511+ JOB_START_TIME +_bk;t=1781335816527~~~ Preparing working directory +_bk;t=1781335816527# Creating "/var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python" +_bk;t=1781335816527$ cd /var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python +_bk;t=1781335816528$ cd /var/lib/gitmirrors +_bk;t=1781335816537# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335816538# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously +_bk;t=1781335816538$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head +_bk;t=1781335816794remote: Enumerating objects: 2513, done._bk;t=1781335816794 +_bk;t=1781335816794remote: Counting objects: 0% (1/1602)_bk;t=1781335816794 remote: Counting objects: 1% (17/1602)_bk;t=1781335816794 remote: Counting objects: 2% (33/1602)_bk;t=1781335816794 remote: Counting objects: 3% (49/1602)_bk;t=1781335816794 remote: Counting objects: 4% (65/1602)_bk;t=1781335816794 remote: Counting objects: 5% (81/1602)_bk;t=1781335816794 remote: Counting objects: 6% (97/1602)_bk;t=1781335816794 remote: Counting objects: 7% (113/1602)_bk;t=1781335816794 remote: Counting objects: 8% (129/1602)_bk;t=1781335816794 remote: Counting objects: 9% (145/1602)_bk;t=1781335816794 remote: Counting objects: 10% (161/1602)_bk;t=1781335816794 remote: Counting objects: 11% (177/1602)_bk;t=1781335816794 remote: Counting objects: 12% (193/1602)_bk;t=1781335816794 remote: Counting objects: 13% (209/1602)_bk;t=1781335816794 remote: Counting objects: 14% (225/1602)_bk;t=1781335816794 remote: Counting objects: 15% (241/1602)_bk;t=1781335816795 remote: Counting objects: 16% (257/1602)_bk;t=1781335816795 remote: Counting objects: 17% (273/1602)_bk;t=1781335816795 remote: Counting objects: 18% (289/1602)_bk;t=1781335816795 remote: Counting objects: 19% (305/1602)_bk;t=1781335816795 remote: Counting objects: 20% (321/1602)_bk;t=1781335816795 remote: Counting objects: 21% (337/1602)_bk;t=1781335816795 remote: Counting objects: 22% (353/1602)_bk;t=1781335816795 remote: Counting objects: 23% (369/1602)_bk;t=1781335816795 remote: Counting objects: 24% (385/1602)_bk;t=1781335816795 remote: Counting objects: 25% (401/1602)_bk;t=1781335816795 remote: Counting objects: 26% (417/1602)_bk;t=1781335816795 remote: Counting objects: 27% (433/1602)_bk;t=1781335816795 remote: Counting objects: 28% (449/1602)_bk;t=1781335816795 remote: Counting objects: 29% (465/1602)_bk;t=1781335816795 remote: Counting objects: 30% (481/1602)_bk;t=1781335816795 remote: Counting objects: 31% (497/1602)_bk;t=1781335816795 remote: Counting objects: 32% (513/1602)_bk;t=1781335816795 remote: Counting objects: 33% (529/1602)_bk;t=1781335816795 remote: Counting objects: 34% (545/1602)_bk;t=1781335816795 remote: Counting objects: 35% (561/1602)_bk;t=1781335816795 remote: Counting objects: 36% (577/1602)_bk;t=1781335816795 remote: Counting objects: 37% (593/1602)_bk;t=1781335816795 remote: Counting objects: 38% (609/1602)_bk;t=1781335816795 remote: Counting objects: 39% (625/1602)_bk;t=1781335816795 remote: Counting objects: 40% (641/1602)_bk;t=1781335816795 remote: Counting objects: 41% (657/1602)_bk;t=1781335816795 remote: Counting objects: 42% (673/1602)_bk;t=1781335816795 remote: Counting objects: 43% (689/1602)_bk;t=1781335816795 remote: Counting objects: 44% (705/1602)_bk;t=1781335816795 remote: Counting objects: 45% (721/1602)_bk;t=1781335816795 remote: Counting objects: 46% (737/1602)_bk;t=1781335816795 remote: Counting objects: 47% (753/1602)_bk;t=1781335816795 remote: Counting objects: 48% (769/1602)_bk;t=1781335816795 remote: Counting objects: 49% (785/1602)_bk;t=1781335816795 remote: Counting objects: 50% (801/1602)_bk;t=1781335816795 remote: Counting objects: 51% (818/1602)_bk;t=1781335816795 remote: Counting objects: 52% (834/1602)_bk;t=1781335816795 remote: Counting objects: 53% (850/1602)_bk;t=1781335816795 remote: Counting objects: 54% (866/1602)_bk;t=1781335816796 remote: Counting objects: 55% (882/1602)_bk;t=1781335816796 remote: Counting objects: 56% (898/1602)_bk;t=1781335816796 remote: Counting objects: 57% (914/1602)_bk;t=1781335816796 remote: Counting objects: 58% (930/1602)_bk;t=1781335816796 remote: Counting objects: 59% (946/1602)_bk;t=1781335816796 remote: Counting objects: 60% (962/1602)_bk;t=1781335816796 remote: Counting objects: 61% (978/1602)_bk;t=1781335816796 remote: Counting objects: 62% (994/1602)_bk;t=1781335816796 remote: Counting objects: 63% (1010/1602)_bk;t=1781335816796 remote: Counting objects: 64% (1026/1602)_bk;t=1781335816796 remote: Counting objects: 65% (1042/1602)_bk;t=1781335816796 remote: Counting objects: 66% (1058/1602)_bk;t=1781335816796 remote: Counting objects: 67% (1074/1602)_bk;t=1781335816796 remote: Counting objects: 68% (1090/1602)_bk;t=1781335816796 remote: Counting objects: 69% (1106/1602)_bk;t=1781335816796 remote: Counting objects: 70% (1122/1602)_bk;t=1781335816796 remote: Counting objects: 71% (1138/1602)_bk;t=1781335816796 remote: Counting objects: 72% (1154/1602)_bk;t=1781335816796 remote: Counting objects: 73% (1170/1602)_bk;t=1781335816796 remote: Counting objects: 74% (1186/1602)_bk;t=1781335816796 remote: Counting objects: 75% (1202/1602)_bk;t=1781335816796 remote: Counting objects: 76% (1218/1602)_bk;t=1781335816796 remote: Counting objects: 77% (1234/1602)_bk;t=1781335816796 remote: Counting objects: 78% (1250/1602)_bk;t=1781335816819 remote: Counting objects: 79% (1266/1602)_bk;t=1781335816819 remote: Counting objects: 80% (1282/1602)_bk;t=1781335816819 remote: Counting objects: 81% (1298/1602)_bk;t=1781335816819 remote: Counting objects: 82% (1314/1602)_bk;t=1781335816819 remote: Counting objects: 83% (1330/1602)_bk;t=1781335816819 remote: Counting objects: 84% (1346/1602)_bk;t=1781335816819 remote: Counting objects: 85% (1362/1602)_bk;t=1781335816819 remote: Counting objects: 86% (1378/1602)_bk;t=1781335816819 remote: Counting objects: 87% (1394/1602)_bk;t=1781335816819 remote: Counting objects: 88% (1410/1602)_bk;t=1781335816819 remote: Counting objects: 89% (1426/1602)_bk;t=1781335816819 remote: Counting objects: 90% (1442/1602)_bk;t=1781335816819 remote: Counting objects: 91% (1458/1602)_bk;t=1781335816819 remote: Counting objects: 92% (1474/1602)_bk;t=1781335816819 remote: Counting objects: 93% (1490/1602)_bk;t=1781335816819 remote: Counting objects: 94% (1506/1602)_bk;t=1781335816819 remote: Counting objects: 95% (1522/1602)_bk;t=1781335816819 remote: Counting objects: 96% (1538/1602)_bk;t=1781335816819 remote: Counting objects: 97% (1554/1602)_bk;t=1781335816819 remote: Counting objects: 98% (1570/1602)_bk;t=1781335816819 remote: Counting objects: 99% (1586/1602)_bk;t=1781335816819 remote: Counting objects: 100% (1602/1602)_bk;t=1781335816819 remote: Counting objects: 100% (1602/1602), done._bk;t=1781335816819 +_bk;t=1781335816819remote: Compressing objects: 0% (1/449)_bk;t=1781335816819 remote: Compressing objects: 1% (5/449)_bk;t=1781335816819 remote: Compressing objects: 2% (9/449)_bk;t=1781335816819 remote: Compressing objects: 3% (14/449)_bk;t=1781335816819 remote: Compressing objects: 4% (18/449)_bk;t=1781335816819 remote: Compressing objects: 5% (23/449)_bk;t=1781335816819 remote: Compressing objects: 6% (27/449)_bk;t=1781335816819 remote: Compressing objects: 7% (32/449)_bk;t=1781335816819 remote: Compressing objects: 8% (36/449)_bk;t=1781335816819 remote: Compressing objects: 9% (41/449)_bk;t=1781335816819 remote: Compressing objects: 10% (45/449)_bk;t=1781335816819 remote: Compressing objects: 11% (50/449)_bk;t=1781335816819 remote: Compressing objects: 12% (54/449)_bk;t=1781335816826 remote: Compressing objects: 13% (59/449)_bk;t=1781335816843 remote: Compressing objects: 14% (63/449)_bk;t=1781335816848 remote: Compressing objects: 15% (68/449)_bk;t=1781335816858 remote: Compressing objects: 16% (72/449)_bk;t=1781335816867 remote: Compressing objects: 17% (77/449)_bk;t=1781335816875 remote: Compressing objects: 18% (81/449)_bk;t=1781335816881 remote: Compressing objects: 19% (86/449)_bk;t=1781335816889 remote: Compressing objects: 20% (90/449)_bk;t=1781335816895 remote: Compressing objects: 21% (95/449)_bk;t=1781335816900 remote: Compressing objects: 22% (99/449)_bk;t=1781335816903 remote: Compressing objects: 23% (104/449)_bk;t=1781335816907 remote: Compressing objects: 24% (108/449)_bk;t=1781335816910 remote: Compressing objects: 25% (113/449)_bk;t=1781335816914 remote: Compressing objects: 26% (117/449)_bk;t=1781335816918 remote: Compressing objects: 27% (122/449)_bk;t=1781335816921 remote: Compressing objects: 28% (126/449)_bk;t=1781335816923 remote: Compressing objects: 29% (131/449)_bk;t=1781335816925 remote: Compressing objects: 30% (135/449)_bk;t=1781335816927 remote: Compressing objects: 31% (140/449)_bk;t=1781335816928 remote: Compressing objects: 32% (144/449)_bk;t=1781335816929 remote: Compressing objects: 33% (149/449)_bk;t=1781335816930 remote: Compressing objects: 34% (153/449)_bk;t=1781335816930 remote: Compressing objects: 35% (158/449)_bk;t=1781335816931 remote: Compressing objects: 36% (162/449)_bk;t=1781335816932 remote: Compressing objects: 37% (167/449)_bk;t=1781335816932 remote: Compressing objects: 38% (171/449)_bk;t=1781335816933 remote: Compressing objects: 39% (176/449)_bk;t=1781335816933 remote: Compressing objects: 40% (180/449)_bk;t=1781335816933 remote: Compressing objects: 41% (185/449)_bk;t=1781335816934 remote: Compressing objects: 42% (189/449)_bk;t=1781335816934 remote: Compressing objects: 43% (194/449)_bk;t=1781335816934 remote: Compressing objects: 44% (198/449)_bk;t=1781335816934 remote: Compressing objects: 45% (203/449)_bk;t=1781335816934 remote: Compressing objects: 46% (207/449)_bk;t=1781335816934 remote: Compressing objects: 47% (212/449)_bk;t=1781335816934 remote: Compressing objects: 48% (216/449)_bk;t=1781335816934 remote: Compressing objects: 49% (221/449)_bk;t=1781335816935 remote: Compressing objects: 50% (225/449)_bk;t=1781335816935 remote: Compressing objects: 51% (229/449)_bk;t=1781335816935 remote: Compressing objects: 52% (234/449)_bk;t=1781335816935 remote: Compressing objects: 53% (238/449)_bk;t=1781335816935 remote: Compressing objects: 54% (243/449)_bk;t=1781335816935 remote: Compressing objects: 55% (247/449)_bk;t=1781335816935 remote: Compressing objects: 56% (252/449)_bk;t=1781335816935 remote: Compressing objects: 57% (256/449)_bk;t=1781335816936 remote: Compressing objects: 58% (261/449)_bk;t=1781335816936 remote: Compressing objects: 59% (265/449)_bk;t=1781335816936 remote: Compressing objects: 60% (270/449)_bk;t=1781335816936 remote: Compressing objects: 61% (274/449)_bk;t=1781335816936 remote: Compressing objects: 62% (279/449)_bk;t=1781335816937 remote: Compressing objects: 63% (283/449)_bk;t=1781335816937 remote: Compressing objects: 64% (288/449)_bk;t=1781335816937 remote: Compressing objects: 65% (292/449)_bk;t=1781335816937 remote: Compressing objects: 66% (297/449)_bk;t=1781335816937 remote: Compressing objects: 67% (301/449)_bk;t=1781335816938 remote: Compressing objects: 68% (306/449)_bk;t=1781335816938 remote: Compressing objects: 69% (310/449)_bk;t=1781335816938 remote: Compressing objects: 70% (315/449)_bk;t=1781335816939 remote: Compressing objects: 71% (319/449)_bk;t=1781335816939 remote: Compressing objects: 72% (324/449)_bk;t=1781335816939 remote: Compressing objects: 73% (328/449)_bk;t=1781335816939 remote: Compressing objects: 74% (333/449)_bk;t=1781335816939 remote: Compressing objects: 75% (337/449)_bk;t=1781335816939 remote: Compressing objects: 76% (342/449)_bk;t=1781335816939 remote: Compressing objects: 77% (346/449)_bk;t=1781335816939 remote: Compressing objects: 78% (351/449)_bk;t=1781335816939 remote: Compressing objects: 79% (355/449)_bk;t=1781335816946 remote: Compressing objects: 80% (360/449)_bk;t=1781335816946 remote: Compressing objects: 81% (364/449)_bk;t=1781335816946 remote: Compressing objects: 82% (369/449)_bk;t=1781335816946 remote: Compressing objects: 83% (373/449)_bk;t=1781335816946 remote: Compressing objects: 84% (378/449)_bk;t=1781335816946 remote: Compressing objects: 85% (382/449)_bk;t=1781335816946 remote: Compressing objects: 86% (387/449)_bk;t=1781335816946 remote: Compressing objects: 87% (391/449)_bk;t=1781335816946 remote: Compressing objects: 88% (396/449)_bk;t=1781335816946 remote: Compressing objects: 89% (400/449)_bk;t=1781335816946 remote: Compressing objects: 90% (405/449)_bk;t=1781335816946 remote: Compressing objects: 91% (409/449)_bk;t=1781335816946 remote: Compressing objects: 92% (414/449)_bk;t=1781335816946 remote: Compressing objects: 93% (418/449)_bk;t=1781335816946 remote: Compressing objects: 94% (423/449)_bk;t=1781335816946 remote: Compressing objects: 95% (427/449)_bk;t=1781335816946 remote: Compressing objects: 96% (432/449)_bk;t=1781335816946 remote: Compressing objects: 97% (436/449)_bk;t=1781335816946 remote: Compressing objects: 98% (441/449)_bk;t=1781335816946 remote: Compressing objects: 99% (445/449)_bk;t=1781335816946 remote: Compressing objects: 100% (449/449)_bk;t=1781335816946 remote: Compressing objects: 100% (449/449), done._bk;t=1781335816946 +_bk;t=1781335816951Receiving objects: 0% (1/2513) Receiving objects: 1% (26/2513) Receiving objects: 2% (51/2513) Receiving objects: 3% (76/2513) Receiving objects: 4% (101/2513) Receiving objects: 5% (126/2513) Receiving objects: 6% (151/2513) Receiving objects: 7% (176/2513) Receiving objects: 8% (202/2513) Receiving objects: 9% (227/2513) Receiving objects: 10% (252/2513) Receiving objects: 11% (277/2513) Receiving objects: 12% (302/2513) Receiving objects: 13% (327/2513) Receiving objects: 14% (352/2513) Receiving objects: 15% (377/2513) Receiving objects: 16% (403/2513) Receiving objects: 17% (428/2513) Receiving objects: 18% (453/2513) Receiving objects: 19% (478/2513) Receiving objects: 20% (503/2513) Receiving objects: 21% (528/2513) Receiving objects: 22% (553/2513) Receiving objects: 23% (578/2513) Receiving objects: 24% (604/2513) Receiving objects: 25% (629/2513) Receiving objects: 26% (654/2513) Receiving objects: 27% (679/2513) Receiving objects: 28% (704/2513) Receiving objects: 29% (729/2513) Receiving objects: 30% (754/2513) Receiving objects: 31% (780/2513) Receiving objects: 32% (805/2513) Receiving objects: 33% (830/2513) Receiving objects: 34% (855/2513) Receiving objects: 35% (880/2513) Receiving objects: 36% (905/2513) Receiving objects: 37% (930/2513) Receiving objects: 38% (955/2513) Receiving objects: 39% (981/2513) Receiving objects: 40% (1006/2513) Receiving objects: 41% (1031/2513) Receiving objects: 42% (1056/2513) Receiving objects: 43% (1081/2513) Receiving objects: 44% (1106/2513) Receiving objects: 45% (1131/2513) Receiving objects: 46% (1156/2513) Receiving objects: 47% (1182/2513) Receiving objects: 48% (1207/2513) Receiving objects: 49% (1232/2513) Receiving objects: 50% (1257/2513) Receiving objects: 51% (1282/2513) Receiving objects: 52% (1307/2513) Receiving objects: 53% (1332/2513) Receiving objects: 54% (1358/2513) Receiving objects: 55% (1383/2513) Receiving objects: 56% (1408/2513) Receiving objects: 57% (1433/2513) Receiving objects: 58% (1458/2513) Receiving objects: 59% (1483/2513) Receiving objects: 60% (1508/2513) Receiving objects: 61% (1533/2513) Receiving objects: 62% (1559/2513) Receiving objects: 63% (1584/2513) Receiving objects: 64% (1609/2513) Receiving objects: 65% (1634/2513) Receiving objects: 66% (1659/2513) Receiving objects: 67% (1684/2513) Receiving objects: 68% (1709/2513) Receiving objects: 69% (1734/2513) Receiving objects: 70% (1760/2513) Receiving objects: 71% (1785/2513) Receiving objects: 72% (1810/2513) Receiving objects: 73% (1835/2513) Receiving objects: 74% (1860/2513) Receiving objects: 75% (1885/2513) Receiving objects: 76% (1910/2513) Receiving objects: 77% (1936/2513) Receiving objects: 78% (1961/2513) Receiving objects: 79% (1986/2513) Receiving objects: 80% (2011/2513) Receiving objects: 81% (2036/2513) Receiving objects: 82% (2061/2513) Receiving objects: 83% (2086/2513) Receiving objects: 84% (2111/2513) Receiving objects: 85% (2137/2513) Receiving objects: 86% (2162/2513) Receiving objects: 87% (2187/2513) Receiving objects: 88% (2212/2513) Receiving objects: 89% (2237/2513) Receiving objects: 90% (2262/2513) Receiving objects: 91% (2287/2513) Receiving objects: 92% (2312/2513) Receiving objects: 93% (2338/2513) Receiving objects: 94% (2363/2513) Receiving objects: 95% (2388/2513) Receiving objects: 96% (2413/2513) remote: Total 2513 (delta 1370), reused 1217 (delta 1146), pack-reused 911 (from 3)_bk;t=1781335817086 +_bk;t=1781335817088Receiving objects: 97% (2438/2513) Receiving objects: 98% (2463/2513) Receiving objects: 99% (2488/2513) Receiving objects: 100% (2513/2513) Receiving objects: 100% (2513/2513), 1.58 MiB | 11.54 MiB/s, done. +_bk;t=1781335817088Resolving deltas: 0% (0/1537) Resolving deltas: 1% (16/1537) Resolving deltas: 2% (31/1537) Resolving deltas: 3% (47/1537) Resolving deltas: 4% (62/1537) Resolving deltas: 5% (77/1537) Resolving deltas: 6% (93/1537) Resolving deltas: 7% (108/1537) Resolving deltas: 8% (123/1537) Resolving deltas: 9% (140/1537) Resolving deltas: 10% (155/1537) Resolving deltas: 11% (171/1537) Resolving deltas: 12% (185/1537) Resolving deltas: 13% (201/1537) Resolving deltas: 14% (217/1537) Resolving deltas: 15% (232/1537) Resolving deltas: 16% (246/1537) Resolving deltas: 17% (264/1537) Resolving deltas: 18% (278/1537) Resolving deltas: 19% (294/1537) Resolving deltas: 20% (311/1537) Resolving deltas: 21% (323/1537) Resolving deltas: 22% (340/1537) Resolving deltas: 23% (355/1537) Resolving deltas: 24% (369/1537) Resolving deltas: 25% (385/1537) Resolving deltas: 26% (402/1537) Resolving deltas: 27% (415/1537) Resolving deltas: 28% (431/1537) Resolving deltas: 29% (446/1537) Resolving deltas: 30% (462/1537) Resolving deltas: 31% (477/1537) Resolving deltas: 32% (493/1537) Resolving deltas: 33% (508/1537) Resolving deltas: 34% (523/1537) Resolving deltas: 35% (538/1537) Resolving deltas: 36% (554/1537) Resolving deltas: 37% (569/1537) Resolving deltas: 38% (585/1537) Resolving deltas: 39% (600/1537) Resolving deltas: 40% (615/1537) Resolving deltas: 41% (631/1537) Resolving deltas: 42% (646/1537) Resolving deltas: 43% (661/1537) Resolving deltas: 44% (677/1537) Resolving deltas: 45% (692/1537) Resolving deltas: 46% (708/1537) Resolving deltas: 47% (723/1537) Resolving deltas: 48% (738/1537) Resolving deltas: 49% (754/1537) Resolving deltas: 50% (769/1537) Resolving deltas: 51% (784/1537) Resolving deltas: 52% (800/1537) Resolving deltas: 53% (815/1537) Resolving deltas: 54% (830/1537) Resolving deltas: 55% (846/1537) Resolving deltas: 56% (861/1537) Resolving deltas: 57% (877/1537) Resolving deltas: 58% (892/1537) Resolving deltas: 59% (907/1537) Resolving deltas: 60% (923/1537) Resolving deltas: 61% (938/1537) Resolving deltas: 62% (953/1537) Resolving deltas: 63% (969/1537) Resolving deltas: 64% (984/1537) Resolving deltas: 65% (1000/1537) Resolving deltas: 66% (1015/1537) Resolving deltas: 67% (1030/1537) Resolving deltas: 68% (1046/1537) Resolving deltas: 69% (1061/1537) Resolving deltas: 70% (1076/1537) Resolving deltas: 71% (1092/1537) Resolving deltas: 72% (1107/1537) Resolving deltas: 73% (1123/1537) Resolving deltas: 74% (1138/1537) Resolving deltas: 75% (1153/1537) Resolving deltas: 76% (1169/1537) Resolving deltas: 77% (1184/1537) Resolving deltas: 78% (1199/1537) Resolving deltas: 79% (1215/1537) Resolving deltas: 80% (1230/1537) Resolving deltas: 81% (1245/1537) Resolving deltas: 82% (1261/1537) Resolving deltas: 83% (1276/1537) Resolving deltas: 84% (1292/1537) Resolving deltas: 85% (1307/1537) Resolving deltas: 86% (1322/1537) Resolving deltas: 87% (1338/1537) Resolving deltas: 88% (1353/1537) Resolving deltas: 89% (1368/1537) Resolving deltas: 90% (1384/1537) Resolving deltas: 91% (1399/1537) Resolving deltas: 92% (1415/1537) Resolving deltas: 93% (1430/1537) Resolving deltas: 94% (1445/1537) Resolving deltas: 95% (1461/1537) Resolving deltas: 96% (1476/1537) Resolving deltas: 97% (1491/1537) Resolving deltas: 98% (1507/1537) Resolving deltas: 99% (1522/1537) Resolving deltas: 100% (1537/1537) Resolving deltas: 100% (1537/1537), completed with 253 local objects. +_bk;t=1781335817247From https://github.com/bazel-contrib/rules_python +_bk;t=1781335817247 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335817249$ cd /var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python +_bk;t=1781335817249$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335817250Cloning into '.'... +_bk;t=1781335817376POST git-upload-pack (175 bytes) +_bk;t=1781335817422POST git-upload-pack (gzip 2193 to 1014 bytes) +_bk;t=1781335817469remote: Enumerating objects: 2527, done._bk;t=1781335817469 +_bk;t=1781335817469remote: Counting objects: 0% (1/1595)_bk;t=1781335817469 remote: Counting objects: 1% (16/1595)_bk;t=1781335817469 remote: Counting objects: 2% (32/1595)_bk;t=1781335817469 remote: Counting objects: 3% (48/1595)_bk;t=1781335817469 remote: Counting objects: 4% (64/1595)_bk;t=1781335817469 remote: Counting objects: 5% (80/1595)_bk;t=1781335817469 remote: Counting objects: 6% (96/1595)_bk;t=1781335817469 remote: Counting objects: 7% (112/1595)_bk;t=1781335817469 remote: Counting objects: 8% (128/1595)_bk;t=1781335817469 remote: Counting objects: 9% (144/1595)_bk;t=1781335817469 remote: Counting objects: 10% (160/1595)_bk;t=1781335817469 remote: Counting objects: 11% (176/1595)_bk;t=1781335817469 remote: Counting objects: 12% (192/1595)_bk;t=1781335817469 remote: Counting objects: 13% (208/1595)_bk;t=1781335817469 remote: Counting objects: 14% (224/1595)_bk;t=1781335817469 remote: Counting objects: 15% (240/1595)_bk;t=1781335817469 remote: Counting objects: 16% (256/1595)_bk;t=1781335817469 remote: Counting objects: 17% (272/1595)_bk;t=1781335817469 remote: Counting objects: 18% (288/1595)_bk;t=1781335817469 remote: Counting objects: 19% (304/1595)_bk;t=1781335817469 remote: Counting objects: 20% (319/1595)_bk;t=1781335817469 remote: Counting objects: 21% (335/1595)_bk;t=1781335817469 remote: Counting objects: 22% (351/1595)_bk;t=1781335817469 remote: Counting objects: 23% (367/1595)_bk;t=1781335817469 remote: Counting objects: 24% (383/1595)_bk;t=1781335817469 remote: Counting objects: 25% (399/1595)_bk;t=1781335817469 remote: Counting objects: 26% (415/1595)_bk;t=1781335817469 remote: Counting objects: 27% (431/1595)_bk;t=1781335817469 remote: Counting objects: 28% (447/1595)_bk;t=1781335817469 remote: Counting objects: 29% (463/1595)_bk;t=1781335817469 remote: Counting objects: 30% (479/1595)_bk;t=1781335817469 remote: Counting objects: 31% (495/1595)_bk;t=1781335817469 remote: Counting objects: 32% (511/1595)_bk;t=1781335817469 remote: Counting objects: 33% (527/1595)_bk;t=1781335817469 remote: Counting objects: 34% (543/1595)_bk;t=1781335817469 remote: Counting objects: 35% (559/1595)_bk;t=1781335817469 remote: Counting objects: 36% (575/1595)_bk;t=1781335817469 remote: Counting objects: 37% (591/1595)_bk;t=1781335817469 remote: Counting objects: 38% (607/1595)_bk;t=1781335817469 remote: Counting objects: 39% (623/1595)_bk;t=1781335817469 remote: Counting objects: 40% (638/1595)_bk;t=1781335817469 remote: Counting objects: 41% (654/1595)_bk;t=1781335817469 remote: Counting objects: 42% (670/1595)_bk;t=1781335817469 remote: Counting objects: 43% (686/1595)_bk;t=1781335817469 remote: Counting objects: 44% (702/1595)_bk;t=1781335817469 remote: Counting objects: 45% (718/1595)_bk;t=1781335817469 remote: Counting objects: 46% (734/1595)_bk;t=1781335817469 remote: Counting objects: 47% (750/1595)_bk;t=1781335817469 remote: Counting objects: 48% (766/1595)_bk;t=1781335817469 remote: Counting objects: 49% (782/1595)_bk;t=1781335817469 remote: Counting objects: 50% (798/1595)_bk;t=1781335817469 remote: Counting objects: 51% (814/1595)_bk;t=1781335817469 remote: Counting objects: 52% (830/1595)_bk;t=1781335817469 remote: Counting objects: 53% (846/1595)_bk;t=1781335817469 remote: Counting objects: 54% (862/1595)_bk;t=1781335817469 remote: Counting objects: 55% (878/1595)_bk;t=1781335817469 remote: Counting objects: 56% (894/1595)_bk;t=1781335817469 remote: Counting objects: 57% (910/1595)_bk;t=1781335817469 remote: Counting objects: 58% (926/1595)_bk;t=1781335817469 remote: Counting objects: 59% (942/1595)_bk;t=1781335817469 remote: Counting objects: 60% (957/1595)_bk;t=1781335817469 remote: Counting objects: 61% (973/1595)_bk;t=1781335817469 remote: Counting objects: 62% (989/1595)_bk;t=1781335817469 remote: Counting objects: 63% (1005/1595)_bk;t=1781335817469 remote: Counting objects: 64% (1021/1595)_bk;t=1781335817469 remote: Counting objects: 65% (1037/1595)_bk;t=1781335817470 remote: Counting objects: 66% (1053/1595)_bk;t=1781335817470 remote: Counting objects: 67% (1069/1595)_bk;t=1781335817470 remote: Counting objects: 68% (1085/1595)_bk;t=1781335817470 remote: Counting objects: 69% (1101/1595)_bk;t=1781335817470 remote: Counting objects: 70% (1117/1595)_bk;t=1781335817470 remote: Counting objects: 71% (1133/1595)_bk;t=1781335817470 remote: Counting objects: 72% (1149/1595)_bk;t=1781335817470 remote: Counting objects: 73% (1165/1595)_bk;t=1781335817470 remote: Counting objects: 74% (1181/1595)_bk;t=1781335817470 remote: Counting objects: 75% (1197/1595)_bk;t=1781335817470 remote: Counting objects: 76% (1213/1595)_bk;t=1781335817470 remote: Counting objects: 77% (1229/1595)_bk;t=1781335817470 remote: Counting objects: 78% (1245/1595)_bk;t=1781335817470 remote: Counting objects: 79% (1261/1595)_bk;t=1781335817470 remote: Counting objects: 80% (1276/1595)_bk;t=1781335817470 remote: Counting objects: 81% (1292/1595)_bk;t=1781335817470 remote: Counting objects: 82% (1308/1595)_bk;t=1781335817470 remote: Counting objects: 83% (1324/1595)_bk;t=1781335817470 remote: Counting objects: 84% (1340/1595)_bk;t=1781335817470 remote: Counting objects: 85% (1356/1595)_bk;t=1781335817470 remote: Counting objects: 86% (1372/1595)_bk;t=1781335817470 remote: Counting objects: 87% (1388/1595)_bk;t=1781335817470 remote: Counting objects: 88% (1404/1595)_bk;t=1781335817470 remote: Counting objects: 89% (1420/1595)_bk;t=1781335817470 remote: Counting objects: 90% (1436/1595)_bk;t=1781335817470 remote: Counting objects: 91% (1452/1595)_bk;t=1781335817470 remote: Counting objects: 92% (1468/1595)_bk;t=1781335817470 remote: Counting objects: 93% (1484/1595)_bk;t=1781335817470 remote: Counting objects: 94% (1500/1595)_bk;t=1781335817470 remote: Counting objects: 95% (1516/1595)_bk;t=1781335817470 remote: Counting objects: 96% (1532/1595)_bk;t=1781335817470 remote: Counting objects: 97% (1548/1595)_bk;t=1781335817470 remote: Counting objects: 98% (1564/1595)_bk;t=1781335817470 remote: Counting objects: 99% (1580/1595)_bk;t=1781335817470 remote: Counting objects: 100% (1595/1595)_bk;t=1781335817470 remote: Counting objects: 100% (1595/1595), done._bk;t=1781335817470 +_bk;t=1781335817470remote: Compressing objects: 0% (1/384)_bk;t=1781335817470 remote: Compressing objects: 1% (4/384)_bk;t=1781335817470 remote: Compressing objects: 2% (8/384)_bk;t=1781335817470 remote: Compressing objects: 3% (12/384)_bk;t=1781335817470 remote: Compressing objects: 4% (16/384)_bk;t=1781335817470 remote: Compressing objects: 5% (20/384)_bk;t=1781335817470 remote: Compressing objects: 6% (24/384)_bk;t=1781335817470 remote: Compressing objects: 7% (27/384)_bk;t=1781335817470 remote: Compressing objects: 8% (31/384)_bk;t=1781335817470 remote: Compressing objects: 9% (35/384)_bk;t=1781335817470 remote: Compressing objects: 10% (39/384)_bk;t=1781335817470 remote: Compressing objects: 11% (43/384)_bk;t=1781335817470 remote: Compressing objects: 12% (47/384)_bk;t=1781335817470 remote: Compressing objects: 13% (50/384)_bk;t=1781335817470 remote: Compressing objects: 14% (54/384)_bk;t=1781335817470 remote: Compressing objects: 15% (58/384)_bk;t=1781335817470 remote: Compressing objects: 16% (62/384)_bk;t=1781335817470 remote: Compressing objects: 17% (66/384)_bk;t=1781335817470 remote: Compressing objects: 18% (70/384)_bk;t=1781335817470 remote: Compressing objects: 19% (73/384)_bk;t=1781335817470 remote: Compressing objects: 20% (77/384)_bk;t=1781335817470 remote: Compressing objects: 21% (81/384)_bk;t=1781335817470 remote: Compressing objects: 22% (85/384)_bk;t=1781335817470 remote: Compressing objects: 23% (89/384)_bk;t=1781335817470 remote: Compressing objects: 24% (93/384)_bk;t=1781335817470 remote: Compressing objects: 25% (96/384)_bk;t=1781335817470 remote: Compressing objects: 26% (100/384)_bk;t=1781335817470 remote: Compressing objects: 27% (104/384)_bk;t=1781335817470 remote: Compressing objects: 28% (108/384)_bk;t=1781335817470 remote: Compressing objects: 29% (112/384)_bk;t=1781335817470 remote: Compressing objects: 30% (116/384)_bk;t=1781335817470 remote: Compressing objects: 31% (120/384)_bk;t=1781335817470 remote: Compressing objects: 32% (123/384)_bk;t=1781335817470 remote: Compressing objects: 33% (127/384)_bk;t=1781335817470 remote: Compressing objects: 34% (131/384)_bk;t=1781335817470 remote: Compressing objects: 35% (135/384)_bk;t=1781335817470 remote: Compressing objects: 36% (139/384)_bk;t=1781335817470 remote: Compressing objects: 37% (143/384)_bk;t=1781335817470 remote: Compressing objects: 38% (146/384)_bk;t=1781335817470 remote: Compressing objects: 39% (150/384)_bk;t=1781335817470 remote: Compressing objects: 40% (154/384)_bk;t=1781335817470 remote: Compressing objects: 41% (158/384)_bk;t=1781335817470 remote: Compressing objects: 42% (162/384)_bk;t=1781335817470 remote: Compressing objects: 43% (166/384)_bk;t=1781335817470 remote: Compressing objects: 44% (169/384)_bk;t=1781335817470 remote: Compressing objects: 45% (173/384)_bk;t=1781335817470 remote: Compressing objects: 46% (177/384)_bk;t=1781335817470 remote: Compressing objects: 47% (181/384)_bk;t=1781335817470 remote: Compressing objects: 48% (185/384)_bk;t=1781335817470 remote: Compressing objects: 49% (189/384)_bk;t=1781335817470 remote: Compressing objects: 50% (192/384)_bk;t=1781335817470 remote: Compressing objects: 51% (196/384)_bk;t=1781335817470 remote: Compressing objects: 52% (200/384)_bk;t=1781335817470 remote: Compressing objects: 53% (204/384)_bk;t=1781335817470 remote: Compressing objects: 54% (208/384)_bk;t=1781335817470 remote: Compressing objects: 55% (212/384)_bk;t=1781335817470 remote: Compressing objects: 56% (216/384)_bk;t=1781335817470 remote: Compressing objects: 57% (219/384)_bk;t=1781335817470 remote: Compressing objects: 58% (223/384)_bk;t=1781335817470 remote: Compressing objects: 59% (227/384)_bk;t=1781335817470 remote: Compressing objects: 60% (231/384)_bk;t=1781335817470 remote: Compressing objects: 61% (235/384)_bk;t=1781335817470 remote: Compressing objects: 62% (239/384)_bk;t=1781335817470 remote: Compressing objects: 63% (242/384)_bk;t=1781335817470 remote: Compressing objects: 64% (246/384)_bk;t=1781335817470 remote: Compressing objects: 65% (250/384)_bk;t=1781335817470 remote: Compressing objects: 66% (254/384)_bk;t=1781335817470 remote: Compressing objects: 67% (258/384)_bk;t=1781335817470 remote: Compressing objects: 68% (262/384)_bk;t=1781335817470 remote: Compressing objects: 69% (265/384)_bk;t=1781335817470 remote: Compressing objects: 70% (269/384)_bk;t=1781335817470 remote: Compressing objects: 71% (273/384)_bk;t=1781335817470 remote: Compressing objects: 72% (277/384)_bk;t=1781335817470 remote: Compressing objects: 73% (281/384)_bk;t=1781335817470 remote: Compressing objects: 74% (285/384)_bk;t=1781335817470 remote: Compressing objects: 75% (288/384)_bk;t=1781335817470 remote: Compressing objects: 76% (292/384)_bk;t=1781335817470 remote: Compressing objects: 77% (296/384)_bk;t=1781335817470 remote: Compressing objects: 78% (300/384)_bk;t=1781335817470 remote: Compressing objects: 79% (304/384)_bk;t=1781335817470 remote: Compressing objects: 80% (308/384)_bk;t=1781335817470 remote: Compressing objects: 81% (312/384)_bk;t=1781335817470 remote: Compressing objects: 82% (315/384)_bk;t=1781335817470 remote: Compressing objects: 83% (319/384)_bk;t=1781335817470 remote: Compressing objects: 84% (323/384)_bk;t=1781335817470 remote: Compressing objects: 85% (327/384)_bk;t=1781335817470 remote: Compressing objects: 86% (331/384)_bk;t=1781335817470 remote: Compressing objects: 87% (335/384)_bk;t=1781335817470 remote: Compressing objects: 88% (338/384)_bk;t=1781335817470 remote: Compressing objects: 89% (342/384)_bk;t=1781335817470 remote: Compressing objects: 90% (346/384)_bk;t=1781335817470 remote: Compressing objects: 91% (350/384)_bk;t=1781335817470 remote: Compressing objects: 92% (354/384)_bk;t=1781335817471 remote: Compressing objects: 93% (358/384)_bk;t=1781335817471 remote: Compressing objects: 94% (361/384)_bk;t=1781335817471 remote: Compressing objects: 95% (365/384)_bk;t=1781335817471 remote: Compressing objects: 96% (369/384)_bk;t=1781335817471 remote: Compressing objects: 97% (373/384)_bk;t=1781335817480 remote: Compressing objects: 98% (377/384)_bk;t=1781335817480 remote: Compressing objects: 99% (381/384)_bk;t=1781335817480 remote: Compressing objects: 100% (384/384)_bk;t=1781335817480 remote: Compressing objects: 100% (384/384), done._bk;t=1781335817480 +_bk;t=1781335817493Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1421), reused 1216 (delta 1211), pack-reused 932 (from 3)_bk;t=1781335817608 +_bk;t=1781335817608Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.59 MiB | 13.72 MiB/s, done. +_bk;t=1781335817610Resolving deltas: 0% (0/1591) Resolving deltas: 1% (16/1591) Resolving deltas: 2% (32/1591) Resolving deltas: 3% (48/1591) Resolving deltas: 4% (64/1591) Resolving deltas: 5% (80/1591) Resolving deltas: 6% (96/1591) Resolving deltas: 7% (112/1591) Resolving deltas: 8% (128/1591) Resolving deltas: 9% (144/1591) Resolving deltas: 10% (160/1591) Resolving deltas: 11% (176/1591) Resolving deltas: 12% (191/1591) Resolving deltas: 13% (207/1591) Resolving deltas: 14% (223/1591) Resolving deltas: 15% (239/1591) Resolving deltas: 16% (255/1591) Resolving deltas: 17% (271/1591) Resolving deltas: 18% (287/1591) Resolving deltas: 19% (303/1591) Resolving deltas: 20% (319/1591) Resolving deltas: 21% (335/1591) Resolving deltas: 22% (351/1591) Resolving deltas: 23% (366/1591) Resolving deltas: 24% (382/1591) Resolving deltas: 25% (398/1591) Resolving deltas: 26% (414/1591) Resolving deltas: 27% (430/1591) Resolving deltas: 28% (446/1591) Resolving deltas: 29% (462/1591) Resolving deltas: 30% (478/1591) Resolving deltas: 31% (494/1591) Resolving deltas: 32% (510/1591) Resolving deltas: 33% (526/1591) Resolving deltas: 34% (541/1591) Resolving deltas: 35% (557/1591) Resolving deltas: 36% (573/1591) Resolving deltas: 37% (589/1591) Resolving deltas: 38% (605/1591) Resolving deltas: 39% (621/1591) Resolving deltas: 40% (637/1591) Resolving deltas: 41% (653/1591) Resolving deltas: 42% (669/1591) Resolving deltas: 43% (685/1591) Resolving deltas: 44% (701/1591) Resolving deltas: 45% (716/1591) Resolving deltas: 46% (732/1591) Resolving deltas: 47% (748/1591) Resolving deltas: 48% (764/1591) Resolving deltas: 49% (780/1591) Resolving deltas: 50% (796/1591) Resolving deltas: 51% (812/1591) Resolving deltas: 52% (828/1591) Resolving deltas: 53% (844/1591) Resolving deltas: 54% (860/1591) Resolving deltas: 55% (876/1591) Resolving deltas: 56% (891/1591) Resolving deltas: 57% (907/1591) Resolving deltas: 58% (923/1591) Resolving deltas: 59% (939/1591) Resolving deltas: 60% (955/1591) Resolving deltas: 61% (971/1591) Resolving deltas: 62% (987/1591) Resolving deltas: 63% (1003/1591) Resolving deltas: 64% (1019/1591) Resolving deltas: 65% (1035/1591) Resolving deltas: 66% (1051/1591) Resolving deltas: 67% (1066/1591) Resolving deltas: 68% (1082/1591) Resolving deltas: 69% (1098/1591) Resolving deltas: 70% (1114/1591) Resolving deltas: 71% (1130/1591) Resolving deltas: 72% (1146/1591) Resolving deltas: 73% (1162/1591) Resolving deltas: 74% (1178/1591) Resolving deltas: 75% (1194/1591) Resolving deltas: 76% (1210/1591) Resolving deltas: 77% (1226/1591) Resolving deltas: 78% (1241/1591) Resolving deltas: 79% (1257/1591) Resolving deltas: 80% (1273/1591) Resolving deltas: 81% (1289/1591) Resolving deltas: 82% (1305/1591) Resolving deltas: 83% (1321/1591) Resolving deltas: 84% (1337/1591) Resolving deltas: 85% (1353/1591) Resolving deltas: 86% (1369/1591) Resolving deltas: 87% (1385/1591) Resolving deltas: 88% (1401/1591) Resolving deltas: 89% (1416/1591) Resolving deltas: 90% (1432/1591) Resolving deltas: 91% (1448/1591) Resolving deltas: 92% (1464/1591) Resolving deltas: 93% (1480/1591) Resolving deltas: 94% (1496/1591) Resolving deltas: 95% (1512/1591) Resolving deltas: 96% (1528/1591) Resolving deltas: 97% (1544/1591) Resolving deltas: 98% (1560/1591) Resolving deltas: 99% (1576/1591) Resolving deltas: 100% (1591/1591) Resolving deltas: 100% (1591/1591), completed with 272 local objects. +_bk;t=1781335817887$ git clean -ffxdq +_bk;t=1781335817894# Fetch and checkout pull request head from GitHub +_bk;t=1781335817894$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335818024POST git-upload-pack (395 bytes) +_bk;t=1781335818071From https://github.com/bazel-contrib/rules_python +_bk;t=1781335818071 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335818071 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD +_bk;t=1781335818077# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` +_bk;t=1781335818077$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335818139Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. +_bk;t=1781335818139 +_bk;t=1781335818139You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335818139changes and commit them, and you can discard any commits you make in this +_bk;t=1781335818139state without impacting any branches by switching back to a branch. +_bk;t=1781335818139 +_bk;t=1781335818139If you want to create a new branch to retain commits you create, you may +_bk;t=1781335818139do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335818139 +_bk;t=1781335818139 git switch -c +_bk;t=1781335818139 +_bk;t=1781335818139Or undo this operation with: +_bk;t=1781335818139 +_bk;t=1781335818139 git switch - +_bk;t=1781335818139 +_bk;t=1781335818139Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335818139 +_bk;t=1781335818139HEAD is now at d6eeb759 feat(skills): Include Buildkite Build ID in monitor_remote_ci summary +_bk;t=1781335818140# Cleaning again to catch any post-checkout changes +_bk;t=1781335818140$ git clean -ffxdq +_bk;t=1781335818147# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335818147# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335818147~~~ Running agent post-checkout hook +_bk;t=1781335818147$ /etc/buildkite-agent/hooks/post-checkout +_bk;t=1781335818177CHECKOUT_END_TIME: 1781335818162 +_bk;t=1781335818177CHECKOUT_DURATION_S: 1.664 +_bk;t=1781335818188Added: +_bk;t=1781335818188+ CHECKOUT_END_TIME +_bk;t=1781335818201Added: +_bk;t=1781335818201+ CHECKOUT_DURATION_S +_bk;t=1781335818216~~~ Running agent pre-command hook +_bk;t=1781335818216$ /etc/buildkite-agent/hooks/pre-command +_bk;t=1781335818244PREP_DURATION_S: 0.069 +_bk;t=1781335818256Added: +_bk;t=1781335818256+ PREP_DURATION_S +_bk;t=1781335818271~~~ Running plugin docker-buildkite-plugin command hook +_bk;t=1781335818272$ /etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command +_bk;t=1781335818324--- :docker: Pulling gcr.io/bazel-public/ubuntu2204 +_bk;t=1781335818335Using default tag: latest +_bk;t=1781335819850latest: Pulling from bazel-public/ubuntu2204 +_bk;t=1781335819903Digest: sha256:3024b6fbc873688940dfe144c5f1a6cfe0c450bd287748c6f170db01e2459981 +_bk;t=1781335819903Status: Image is up to date for gcr.io/bazel-public/ubuntu2204:latest +_bk;t=1781335819904gcr.io/bazel-public/ubuntu2204:latest +_bk;t=1781335819920docker network host already exists +_bk;t=1781335819920--- :docker: Running command in gcr.io/bazel-public/ubuntu2204 +_bk;t=1781335819920$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_MESSAGE --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_STEP_ID --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_PIPELINE_NAME --env CI --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE_BRANCH --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_RETRY_COUNT --env BUILDKITE_REPO --env BUILDKITE_TAG --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_COMMIT --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_PULL_REQUEST --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_JOB_ID --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_PIPELINE_ID --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_SOURCE --env BUILDKITE_PLUGINS --env BUILDKITE_COMMAND --env BUILDKITE_AGENT_NAME --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_ORGANIZATION_SLUG --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_AGENT_ID --env BUILDKITE_TIMEOUT --env BUILDKITE --env BUILDKITE_BUILD_URL --env BUILDKITE_LABEL --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_STEP_KEY --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_COMPUTE_TYPE --env BUILDKITE_BUILD_ID --env BUILDKITE_REBUILT_FROM_BUILD_ID --network host --label com.buildkite.job-id=019ebfe3-63ae-4037-a692-c008a270a756 gcr.io/bazel-public/ubuntu2204 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py\npython3 bazelci.py runner --task=integration_test_bazelinbazel_ubuntu' +_bk;t=1781335821258 +_bk;t=1781335821258 +_bk;t=1781335821258--- :bazel: Using latest Bazel release +_bk;t=1781335821258 +_bk;t=1781335821258 +_bk;t=1781335821258bazel --version +_bk;t=17813358215542026/06/13 07:30:21 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-linux-x86_64... +_bk;t=1781335821566 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 27 MB out of 62 MB (42%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (77%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) +_bk;t=1781335822155bazel 9.1.1 +_bk;t=1781335822158bazel info output_base +_bk;t=1781335822330Extracting Bazel installation... +_bk;t=1781335823647Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335825006WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335825006INFO: Invocation ID: e6d74761-1d28-43e5-9c6e-6de4bf3a8e40 +_bk;t=1781335825054 +_bk;t=1781335825054 +_bk;t=1781335825054--- :information_source: Bazel Info +_bk;t=1781335825054 +_bk;t=1781335825054 +_bk;t=1781335825054bazel --nosystem_rc --nohome_rc version +_bk;t=1781335825248WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335825248INFO: Invocation ID: 58c7cf1b-3922-4fab-8f81-09af626c329a +_bk;t=1781335825253Bazelisk version: v1.28.1 +_bk;t=1781335825253Build label: 9.1.1 +_bk;t=1781335825253Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer +_bk;t=1781335825253Build time: Wed Jun 03 15:41:13 2026 (1780501273) +_bk;t=1781335825253Build timestamp: 1780501273 +_bk;t=1781335825253Build timestamp as int: 1780501273 +_bk;t=1781335825253 +_bk;t=1781335825253bazel --nosystem_rc --nohome_rc info +_bk;t=1781335825445WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335825445INFO: Invocation ID: 6d23de74-9a1a-4491-87ec-6fbc3892f2f9 +_bk;t=1781335825576WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335826594WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826600WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826600WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826600WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335827198bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335827199bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335827199bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335827200character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 +_bk;t=1781335827200command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log +_bk;t=1781335827200committed-heap-size: 117MB +_bk;t=1781335827200execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main +_bk;t=1781335827200gc-count: 15 +_bk;t=1781335827200gc-time: 52ms +_bk;t=1781335827201install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124 +_bk;t=1781335827201java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124/embedded_tools/jdk +_bk;t=1781335827201java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335827202java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335827202local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335827202max-heap-size: 31658MB +_bk;t=1781335827202output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 +_bk;t=1781335827203output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out +_bk;t=1781335827203package_path: %workspace% +_bk;t=1781335827203release: release 9.1.1 +_bk;t=1781335827203repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335827205server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073023.44 +_bk;t=1781335827205server_pid: 44 +_bk;t=1781335827206used-heap-size: 59MB +_bk;t=1781335827206workspace: /workdir +_bk;t=1781335827220 +_bk;t=1781335827223 +_bk;t=1781335827223--- :information_source: Environment Variables +_bk;t=1781335827223 +_bk;t=1781335827223 +_bk;t=1781335827223BUILDKITE_PULL_REQUEST_LABELS=() +_bk;t=1781335827223BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) +_bk;t=1781335827223LANGUAGE=(C.UTF-8) +_bk;t=1781335827223BUILDKITE_ARTIFACT_PATHS=() +_bk;t=1781335827223BUILDKITE_TRIGGERED_FROM_BUILD_ID=() +_bk;t=1781335827223CI=(true) +_bk;t=1781335827223BUILDKITE_BUILD_CREATOR=(Richard Levasseur) +_bk;t=1781335827223HOSTNAME=(bk-docker-9l5n) +_bk;t=1781335827223BUILDKITE_GITHUB_ACTION=(synchronize) +_bk;t=1781335827223BUILDKITE_AGENT_ID=(019ebfdc-dfaf-48a8-8698-da895de79f5c) +_bk;t=1781335827223BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) +_bk;t=1781335827223BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) +_bk;t=1781335827223BUILDKITE_AGENT_META_DATA_QUEUE=(default) +_bk;t=1781335827223BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) +_bk;t=1781335827223HOME=(/var/lib/buildkite-agent) +_bk;t=1781335827223BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335827223BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() +_bk;t=1781335827223BUILDKITE_STEP_KEY=() +_bk;t=1781335827223BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) +_bk;t=1781335827223BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) +_bk;t=1781335827223BUILDKITE=(true) +_bk;t=1781335827223BUILDKITE_COMPUTE_TYPE=(self-hosted) +_bk;t=1781335827223BUILDKITE_BUILD_NUMBER=(15722) +_bk;t=1781335827223BUILDKITE_TAG=() +_bk;t=1781335827223BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() +_bk;t=1781335827223BUILDKITE_PIPELINE_PROVIDER=(github) +_bk;t=1781335827223BUILDKITE_JOB_ID=(019ebfe3-63ae-4037-a692-c008a270a756) +_bk;t=1781335827223BUILDKITE_AGENT_META_DATA_OS=(linux) +_bk;t=1781335827223BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) +_bk;t=1781335827223BUILDKITE_PULL_REQUEST=(3812) +_bk;t=1781335827223TERM=(xterm) +_bk;t=1781335827223BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) +_bk;t=1781335827223BUILDKITE_COMMIT_RESOLVED=(true) +_bk;t=1781335827223BUILDKITE_PIPELINE_SLUG=(rules-python-python) +_bk;t=1781335827223PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) +_bk;t=1781335827223PREP_DURATION_S=(0.069) +_bk;t=1781335827223CHECKOUT_DURATION_S=(1.664) +_bk;t=1781335827223BUILDKITE_GITHUB_EVENT=(pull_request) +_bk;t=1781335827223BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) +_bk;t=1781335827223BUILDKITE_RETRY_COUNT=(0) +_bk;t=1781335827223BUILDKITE_SOURCE=(webhook) +_bk;t=1781335827223BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) +_bk;t=1781335827223LANG=(C.UTF-8) +_bk;t=1781335827223BUILDKITE_REBUILT_FROM_BUILD_ID=() +_bk;t=1781335827223BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/ubuntu2204","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) +_bk;t=1781335827223BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756) +_bk;t=1781335827223DEBIAN_FRONTEND=(noninteractive) +_bk;t=1781335827223BUILDKITE_ORGANIZATION_SLUG=(bazel) +_bk;t=1781335827223BUILDKITE_PROJECT_PROVIDER=(github) +_bk;t=1781335827223BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) +_bk;t=1781335827223BUILDKITE_LABEL=(tests/integration bazel-in-bazel: Ubuntu on :ubuntu: Ubuntu 22.04 LTS) +_bk;t=1781335827223BUILDKITE_AGENT_META_DATA_KIND=(docker) +_bk;t=1781335827223BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() +_bk;t=1781335827223BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335827223BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) +_bk;t=1781335827223BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335827223python3 bazelci.py runner --task=integration_test_bazelinbazel_ubuntu) +_bk;t=1781335827223BUILDKITE_TIMEOUT=(480) +_bk;t=1781335827223BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) +_bk;t=1781335827223BUILDKITE_STEP_ID=(019ebfe3-628d-4a74-8835-3a958d6b7798) +_bk;t=1781335827223BUILDKITE_PIPELINE_NAME=(rules_python :python:) +_bk;t=1781335827223BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335827223python3 bazelci.py runner --task=integration_test_bazelinbazel_ubuntu) +_bk;t=1781335827223LC_ALL=(C.UTF-8) +_bk;t=1781335827223JAVA_HOME=(/usr/lib/jvm/java-21-openjdk-amd64) +_bk;t=1781335827223PWD=(/workdir) +_bk;t=1781335827223ANDROID_HOME=(/opt/android-sdk-linux) +_bk;t=1781335827223BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) +_bk;t=1781335827223BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) +_bk;t=1781335827223BUILDKITE_AGENT_NAME=(bk-docker-9l5n) +_bk;t=1781335827224BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) +_bk;t=1781335827224ANDROID_NDK_HOME=(/opt/android-ndk-r15c) +_bk;t=1781335827224BAZELCI_TASK=(integration_test_bazelinbazel_ubuntu) +_bk;t=1781335827224BAZELISK_USER_AGENT=(Bazelisk/BazelCI) +_bk;t=1781335827224OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224--- :dart: Calculating targets +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224--- :bazel: Computing flags for build step +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224Adding to platform cache key: b'bazel' +_bk;t=1781335827224Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335827224Adding to platform cache key: b'ubuntu2204' +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224+++ :bazel: Build (9.1.1) +_bk;t=1781335827224 +_bk;t=1781335827224 +_bk;t=1781335827224bazel build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp5lw_aaog/build_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT -- ... +_bk;t=1781335827536(07:30:27) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335827536(07:30:27) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335827537(07:30:27) INFO: Invocation ID: 82aa8526-81b0-4419-b8bc-cde6e8a9a321 +_bk;t=1781335827537(07:30:27) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/82aa8526-81b0-4419-b8bc-cde6e8a9a321 +_bk;t=1781335827537(07:30:27) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks +_bk;t=1781335827537(07:30:27) INFO: Options provided by the client: +_bk;t=1781335827537 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335827538(07:30:27) INFO: Reading rc options for 'build' from /workdir/.bazelrc.deleted_packages: +_bk;t=1781335827538 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335827538(07:30:27) INFO: Reading rc options for 'build' from /workdir/.bazelrc: +_bk;t=1781335827538 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335827538(07:30:27) INFO: Reading rc options for 'build' from /workdir/.bazelrc: +_bk;t=1781335827538 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335827538(07:30:27) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335827580(07:30:27) INFO: Current date is 2026-06-13 +_bk;t=1781335827580(07:30:27) +_bk;t=1781335827580 _bk;t=1781335827580(07:30:27) Computing main repo mapping: +_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335827652(07:30:27) Computing main repo mapping: +_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335827652(07:30:27) Computing main repo mapping: +_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335827652(07:30:27) Computing main repo mapping: +_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335827652(07:30:27) Computing main repo mapping: +_bk;t=1781335828213 _bk;t=1781335828213(07:30:28) Loading: +_bk;t=1781335828228 _bk;t=1781335828228(07:30:28) Loading: 1 packages loaded +_bk;t=1781335830924 _bk;t=1781335830924(07:30:30) Analyzing: 53 targets (176 packages loaded, 0 targets configured) +_bk;t=1781335830945 _bk;t=1781335830945(07:30:30) Analyzing: 53 targets (176 packages loaded, 0 targets configured) +_bk;t=1781335830945 currently loading: @@bazel_tools//tools/test +_bk;t=1781335830945 +_bk;t=1781335834884 _bk;t=1781335834884 _bk;t=1781335834884 _bk;t=1781335834884(07:30:34) INFO: Analyzed 53 targets (276 packages loaded, 15942 targets configured). +_bk;t=1781335834884(07:30:34) [322 / 347] 11 actions, 8 running +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_7.7.0.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_self.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_self.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_9.1.0.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_7.7.0.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_9.1.0.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_8.5.1.runfiles; 0s local +_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_8.5.1.runfiles; 0s local ... +_bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229(07:30:35) INFO: Found 53 targets... +_bk;t=1781335835229(07:30:35) [359 / 359] no actions running +_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: Elapsed time: 7.852s, Critical Path: 0.54s +_bk;t=1781335835255(07:30:35) [359 / 359] no actions running +_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: 359 processes: 12 remote cache hit, 347 internal. +_bk;t=1781335835255(07:30:35) [359 / 359] no actions running +_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: Build completed successfully, 359 total actions +_bk;t=1781335835255(07:30:35) INFO: +_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: +_bk;t=1781335835526 _bk;t=1781335835526(07:30:35) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/82aa8526-81b0-4419-b8bc-cde6e8a9a321 +_bk;t=1781335835526curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmp5lw_aaog/bazelci-agent +_bk;t=1781335835530 +_bk;t=1781335835530 +_bk;t=1781335835530--- :bazel: Computing flags for test step +_bk;t=1781335835530 +_bk;t=1781335835531 +_bk;t=1781335835531Adding to platform cache key: b'bazel' +_bk;t=1781335835531Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335835531Adding to platform cache key: b'ubuntu2204' +_bk;t=1781335835531 +_bk;t=1781335835531 +_bk;t=1781335835531+++ :bazel: Test (9.1.1) +_bk;t=1781335835531 +_bk;t=1781335835531 +_bk;t=1781335835531bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp5lw_aaog/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- ... +_bk;t=1781335835729(07:30:35) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335835729(07:30:35) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335835729(07:30:35) INFO: Invocation ID: edfaa7d6-2eec-4df9-84db-2b6a65dd5a65 +_bk;t=1781335835729(07:30:35) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/edfaa7d6-2eec-4df9-84db-2b6a65dd5a65 +_bk;t=1781335835729(07:30:35) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks +_bk;t=1781335835729(07:30:35) INFO: Options provided by the client: +_bk;t=1781335835729 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: +_bk;t=1781335835729 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335835729 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335835729 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc: +_bk;t=1781335835729 'test' options: --test_output=errors +_bk;t=1781335835729(07:30:35) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335835843(07:30:35) INFO: Current date is 2026-06-13 +_bk;t=1781335835843(07:30:35) +_bk;t=1781335835843 _bk;t=1781335835843(07:30:35) Computing main repo mapping: +_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335835961(07:30:35) Computing main repo mapping: +_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335835961(07:30:35) Computing main repo mapping: +_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335835961(07:30:35) Computing main repo mapping: +_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335835961(07:30:35) Computing main repo mapping: +_bk;t=1781335836040 _bk;t=1781335836040(07:30:36) Loading: +_bk;t=1781335836042 _bk;t=1781335836042(07:30:36) Loading: 0 packages loaded +_bk;t=1781335836052/tmp/tmp5lw_aaog/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp5lw_aaog/test_bep.json +_bk;t=1781335836152 _bk;t=1781335836152(07:30:36) Analyzing: 53 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335836162 _bk;t=1781335836162(07:30:36) Analyzing: 53 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335836162 +_bk;t=1781335836262 _bk;t=1781335836262 _bk;t=1781335836262(07:30:36) INFO: Analyzed 53 targets (0 packages loaded, 0 targets configured). +_bk;t=1781335836262(07:30:36) [205 / 214] checking cached actions +_bk;t=1781335842774 _bk;t=1781335842774(07:30:42) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335842774 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache +_bk;t=1781335842930 _bk;t=1781335842930 _bk;t=1781335842930(07:30:42) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) +_bk;t=1781335842930(07:30:42) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335842930 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache +_bk;t=1781335844060buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=17813358440742026-06-13 07:30:44 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" +_bk;t=17813358440772026-06-13 07:30:44 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration +_bk;t=17813358440772026-06-13 07:30:44 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358442222026-06-13 07:30:44 INFO  Uploading 019ebfe3-e55c-4cbe-95cc-cb2c3eafad30 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) +_bk;t=17813358444242026-06-13 07:30:44 INFO  Artifact uploads completed successfully +_bk;t=1781335848600 _bk;t=1781335848600 _bk;t=1781335848600(07:30:48) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335848600 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 11s local, remote-cache +_bk;t=1781335848720 _bk;t=1781335848720 _bk;t=1781335848720(07:30:48) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) +_bk;t=1781335848720(07:30:48) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335848720 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache +_bk;t=1781335849060buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=17813358490732026-06-13 07:30:49 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" +_bk;t=17813358490742026-06-13 07:30:49 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration +_bk;t=17813358490742026-06-13 07:30:49 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358491762026-06-13 07:30:49 INFO  Uploading 019ebfe3-f8b8-4189-ba4e-40141bc81c30 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) +_bk;t=17813358493662026-06-13 07:30:49 INFO  Artifact uploads completed successfully +_bk;t=1781335854430 _bk;t=1781335854430 _bk;t=1781335854430(07:30:54) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335854430 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache +_bk;t=1781335854465 _bk;t=1781335854465 _bk;t=1781335854465(07:30:54) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) +_bk;t=1781335854465(07:30:54) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 +_bk;t=1781335854465 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache +_bk;t=1781335854466 _bk;t=1781335854466 _bk;t=1781335854466 +_bk;t=1781335854466FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335854466 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335854466 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335854466 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335854466(07:30:54) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335854466 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache +_bk;t=1781335854468 _bk;t=1781335854468 _bk;t=1781335854468(07:30:54) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335854468==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=17813358544682026/06/13 07:30:36 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-linux-x86_64... +_bk;t=1781335854468$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335854468Extracting Bazel installation... +_bk;t=1781335854468Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335854468bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335854468bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335854468bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335854468character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 +_bk;t=1781335854468command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log +_bk;t=1781335854468committed-heap-size: 117MB +_bk;t=1781335854468execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main +_bk;t=1781335854468gc-count: 14 +_bk;t=1781335854468gc-time: 44ms +_bk;t=1781335854468install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 +_bk;t=1781335854468java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk +_bk;t=1781335854468java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335854468java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335854468local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335854468max-heap-size: 31658MB +_bk;t=1781335854468output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 +_bk;t=1781335854468output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out +_bk;t=1781335854468package_path: %workspace% +_bk;t=1781335854468release: release 9.1.0 +_bk;t=1781335854468repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335854468server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073038.2938 +_bk;t=1781335854468server_pid: 2938 +_bk;t=1781335854468used-heap-size: 42MB +_bk;t=1781335854468workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335854468$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335854468Computing main repo mapping: +_bk;t=1781335854468Loading: +_bk;t=1781335854468Loading: 0 packages loaded +_bk;t=1781335854468Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335854468Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335854468 +_bk;t=1781335854468ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335854469INFO: Elapsed time: 0.804s, Critical Path: 0.03s +_bk;t=1781335854469INFO: 1 process: 1 internal. +_bk;t=1781335854469ERROR: Build did NOT complete successfully +_bk;t=1781335854469FAILED: +_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested +_bk;t=1781335854469================================================================================ +_bk;t=1781335854469==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335854469Extracting Bazel installation... +_bk;t=1781335854469Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335854469bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335854469bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335854469bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335854469character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 +_bk;t=1781335854469command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log +_bk;t=1781335854469committed-heap-size: 117MB +_bk;t=1781335854469execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main +_bk;t=1781335854469gc-count: 14 +_bk;t=1781335854469gc-time: 43ms +_bk;t=1781335854469install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 +_bk;t=1781335854469java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk +_bk;t=1781335854469java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335854469java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335854469local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335854469max-heap-size: 31658MB +_bk;t=1781335854469output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 +_bk;t=1781335854469output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out +_bk;t=1781335854469package_path: %workspace% +_bk;t=1781335854469release: release 9.1.0 +_bk;t=1781335854469repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335854469server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073044.3486 +_bk;t=1781335854469server_pid: 3486 +_bk;t=1781335854469used-heap-size: 42MB +_bk;t=1781335854469workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335854469Computing main repo mapping: +_bk;t=1781335854469Loading: +_bk;t=1781335854469Loading: 0 packages loaded +_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335854469 +_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335854469INFO: Elapsed time: 0.872s, Critical Path: 0.03s +_bk;t=1781335854469INFO: 1 process: 1 internal. +_bk;t=1781335854469ERROR: Build did NOT complete successfully +_bk;t=1781335854469FAILED: +_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested +_bk;t=1781335854469================================================================================ +_bk;t=1781335854469==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335854469Extracting Bazel installation... +_bk;t=1781335854469Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335854469bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335854469bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin +_bk;t=1781335854469bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs +_bk;t=1781335854469character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 +_bk;t=1781335854469command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log +_bk;t=1781335854469committed-heap-size: 117MB +_bk;t=1781335854469execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main +_bk;t=1781335854469gc-count: 14 +_bk;t=1781335854469gc-time: 44ms +_bk;t=1781335854469install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 +_bk;t=1781335854469java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk +_bk;t=1781335854469java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335854469java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335854469local_resources: RAM=120741MB, CPU=30.0 +_bk;t=1781335854469max-heap-size: 31658MB +_bk;t=1781335854469output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 +_bk;t=1781335854469output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out +_bk;t=1781335854469package_path: %workspace% +_bk;t=1781335854469release: release 9.1.0 +_bk;t=1781335854469repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 +_bk;t=1781335854469server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073050.4043 +_bk;t=1781335854469server_pid: 4043 +_bk;t=1781335854469used-heap-size: 42MB +_bk;t=1781335854469workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335854469Computing main repo mapping: +_bk;t=1781335854469Loading: +_bk;t=1781335854469Loading: 0 packages loaded +_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335854469 +_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335854469INFO: Elapsed time: 0.882s, Critical Path: 0.02s +_bk;t=1781335854469INFO: 1 process: 1 internal. +_bk;t=1781335854469ERROR: Build did NOT complete successfully +_bk;t=1781335854469FAILED: +_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested +_bk;t=1781335854469================================================================================ +_bk;t=1781335854469(07:30:54) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335854469 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache +_bk;t=1781335855061buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=17813358550732026-06-13 07:30:55 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" +_bk;t=17813358550742026-06-13 07:30:55 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration +_bk;t=17813358550742026-06-13 07:30:55 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358551692026-06-13 07:30:55 INFO  Uploading 019ebfe4-1023-4f8e-a864-dbfd05ceeb92 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) +_bk;t=17813358553672026-06-13 07:30:55 INFO  Artifact uploads completed successfully +_bk;t=1781335860851 _bk;t=1781335860851 _bk;t=1781335860851(07:31:00) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335860851 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 5s local, remote-cache +_bk;t=1781335865851 _bk;t=1781335865851 _bk;t=1781335865851(07:31:05) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335865851 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 10s local, remote-cache +_bk;t=1781335870853 _bk;t=1781335870853 _bk;t=1781335870853(07:31:10) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335870853 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 15s local, remote-cache +_bk;t=1781335874993 _bk;t=1781335874993 _bk;t=1781335874993(07:31:14) WARNING: //tests/integration:uv_lock_test_bazel_8.5.1: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335874993(07:31:14) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 +_bk;t=1781335874993 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 20s local, remote-cache +_bk;t=1781335880854 _bk;t=1781335880854 _bk;t=1781335880854(07:31:20) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 +_bk;t=1781335880854 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 5s local, remote-cache +_bk;t=1781335890854 _bk;t=1781335890854 _bk;t=1781335890854(07:31:30) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 +_bk;t=1781335890854 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 15s local, remote-cache +_bk;t=1781335893673 _bk;t=1781335893673 _bk;t=1781335893673(07:31:33) WARNING: //tests/integration:uv_lock_test_bazel_9.1.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335893673(07:31:33) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 +_bk;t=1781335893673 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335900855 _bk;t=1781335900855 _bk;t=1781335900855(07:31:40) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 +_bk;t=1781335900855 Testing //tests/integration:uv_lock_test_bazel_self; 6s local, remote-cache +_bk;t=1781335910855 _bk;t=1781335910855 _bk;t=1781335910855(07:31:50) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 +_bk;t=1781335910855 Testing //tests/integration:uv_lock_test_bazel_self; 16s local, remote-cache +_bk;t=1781335911414 _bk;t=1781335911414 _bk;t=1781335911414(07:31:51) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335911414(07:31:51) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 +_bk;t=1781335911414 Testing //tests/integration:uv_lock_test_bazel_self; 17s local, remote-cache +_bk;t=1781335920856 _bk;t=1781335920856 _bk;t=1781335920856(07:32:00) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 +_bk;t=1781335920856 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 8s local, remote-cache +_bk;t=1781335930856 _bk;t=1781335930856 _bk;t=1781335930856(07:32:10) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 +_bk;t=1781335930856 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 18s local, remote-cache +_bk;t=1781335932299 _bk;t=1781335932299 _bk;t=1781335932299(07:32:12) WARNING: //tests/integration:uv_lock_test_bazel_7.7.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335932299(07:32:12) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 +_bk;t=1781335932299 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 19s local, remote-cache +_bk;t=1781335934784 _bk;t=1781335934784 _bk;t=1781335934784(07:32:14) INFO: Found 53 test targets... +_bk;t=1781335934784(07:32:14) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 +_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: Elapsed time: 99.096s, Critical Path: 20.25s +_bk;t=1781335934804(07:32:14) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 +_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: 54 processes: 97 remote cache hit, 1 internal, 13 local. +_bk;t=1781335934804(07:32:14) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 +_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: Build completed, 1 test FAILED, 54 total actions +_bk;t=1781335934804(07:32:14) INFO: +_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: +_bk;t=1781335934808 _bk;t=1781335934808//tests/integration:compile_pip_requirements_test_bazel_7.7.0 (cached) PASSED in 12.8s +_bk;t=1781335934808(07:32:14) INFO: +_bk;t=1781335934808 _bk;t=1781335934808//tests/integration:compile_pip_requirements_test_bazel_8.5.1 (cached) PASSED in 12.9s +_bk;t=1781335934808(07:32:14) INFO: +_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_test_bazel_9.1.0 (cached) PASSED in 11.7s +_bk;t=1781335934809(07:32:14) INFO: +_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_test_bazel_self (cached) PASSED in 12.1s +_bk;t=1781335934809(07:32:14) INFO: +_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_workspace_test_bazel_7.7.0 (cached) PASSED in 10.3s +_bk;t=1781335934809(07:32:14) INFO: +_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_workspace_test_bazel_8.5.1 (cached) PASSED in 11.5s +_bk;t=1781335934809(07:32:14) INFO: +_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:compile_pip_requirements_workspace_test_bazel_9.1.0 (cached) PASSED in 12.1s +_bk;t=1781335934810(07:32:14) INFO: +_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:compile_pip_requirements_workspace_test_bazel_self (cached) PASSED in 11.9s +_bk;t=1781335934810(07:32:14) INFO: +_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:custom_commands_test_bazel_7.7.0 (cached) PASSED in 10.1s +_bk;t=1781335934810(07:32:14) INFO: +_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:custom_commands_test_bazel_8.5.1 (cached) PASSED in 10.2s +_bk;t=1781335934810(07:32:14) INFO: +_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:custom_commands_test_bazel_9.1.0 (cached) PASSED in 9.9s +_bk;t=1781335934811(07:32:14) INFO: +_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:custom_commands_test_bazel_self (cached) PASSED in 9.8s +_bk;t=1781335934811(07:32:14) INFO: +_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:local_toolchains_test_bazel_7.7.0 (cached) PASSED in 11.2s +_bk;t=1781335934811(07:32:14) INFO: +_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:local_toolchains_test_bazel_8.5.1 (cached) PASSED in 11.3s +_bk;t=1781335934811(07:32:14) INFO: +_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_test_bazel_9.1.0 (cached) PASSED in 10.8s +_bk;t=1781335934812(07:32:14) INFO: +_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 10.7s +_bk;t=1781335934812(07:32:14) INFO: +_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_workspace_test_bazel_7.7.0 (cached) PASSED in 10.3s +_bk;t=1781335934812(07:32:14) INFO: +_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_workspace_test_bazel_8.5.1 (cached) PASSED in 11.0s +_bk;t=1781335934812(07:32:14) INFO: +_bk;t=1781335934813 _bk;t=1781335934813//tests/integration:local_toolchains_workspace_test_bazel_9.1.0 (cached) PASSED in 11.3s +_bk;t=1781335934813(07:32:14) INFO: +_bk;t=1781335934813 _bk;t=1781335934813//tests/integration:local_toolchains_workspace_test_bazel_self (cached) PASSED in 10.5s +_bk;t=1781335934813(07:32:14) INFO: +_bk;t=1781335934813 _bk;t=1781335934813//tests/integration:pip_parse_isolated_test_bazel_7.7.0 (cached) PASSED in 11.6s +_bk;t=1781335934813(07:32:14) INFO: +_bk;t=1781335934814 _bk;t=1781335934814//tests/integration:pip_parse_isolated_test_bazel_8.5.1 (cached) PASSED in 12.2s +_bk;t=1781335934814(07:32:14) INFO: +_bk;t=1781335934814 _bk;t=1781335934814//tests/integration:pip_parse_isolated_test_bazel_9.1.0 (cached) PASSED in 12.0s +_bk;t=1781335934814(07:32:14) INFO: +_bk;t=1781335934814 _bk;t=1781335934815//tests/integration:pip_parse_isolated_test_bazel_self (cached) PASSED in 11.5s +_bk;t=1781335934815(07:32:14) INFO: +_bk;t=1781335934815 _bk;t=1781335934815//tests/integration:pip_parse_test_bazel_7.7.0 (cached) PASSED in 11.5s +_bk;t=1781335934815(07:32:14) INFO: +_bk;t=1781335934815 _bk;t=1781335934815//tests/integration:pip_parse_test_bazel_8.5.1 (cached) PASSED in 11.7s +_bk;t=1781335934815(07:32:14) INFO: +_bk;t=1781335934815 _bk;t=1781335934815//tests/integration:pip_parse_test_bazel_9.1.0 (cached) PASSED in 13.3s +_bk;t=1781335934815(07:32:14) INFO: +_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_test_bazel_self (cached) PASSED in 10.2s +_bk;t=1781335934816(07:32:14) INFO: +_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_7.7.0 (cached) PASSED in 9.0s +_bk;t=1781335934816(07:32:14) INFO: +_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_8.5.1 (cached) PASSED in 10.3s +_bk;t=1781335934816(07:32:14) INFO: +_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_9.1.0 (cached) PASSED in 10.8s +_bk;t=1781335934816(07:32:14) INFO: +_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_self (cached) PASSED in 10.3s +_bk;t=1781335934816(07:32:14) INFO: +_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_7.7.0 (cached) PASSED in 10.1s +_bk;t=1781335934817(07:32:14) INFO: +_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_8.5.1 (cached) PASSED in 10.1s +_bk;t=1781335934817(07:32:14) INFO: +_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_9.1.0 (cached) PASSED in 10.4s +_bk;t=1781335934817(07:32:14) INFO: +_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_self (cached) PASSED in 9.4s +_bk;t=1781335934817(07:32:14) INFO: +_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_7.7.0 (cached) PASSED in 8.0s +_bk;t=1781335934818(07:32:14) INFO: +_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_8.5.1 (cached) PASSED in 9.5s +_bk;t=1781335934818(07:32:14) INFO: +_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_9.1.0 (cached) PASSED in 10.2s +_bk;t=1781335934818(07:32:14) INFO: +_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_self (cached) PASSED in 9.4s +_bk;t=1781335934818(07:32:14) INFO: +_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_7.7.0 (cached) PASSED in 11.0s +_bk;t=1781335934819(07:32:14) INFO: +_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_8.5.1 (cached) PASSED in 11.6s +_bk;t=1781335934819(07:32:14) INFO: +_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_9.1.0 (cached) PASSED in 11.4s +_bk;t=1781335934819(07:32:14) INFO: +_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_self (cached) PASSED in 10.7s +_bk;t=1781335934819(07:32:14) INFO: +_bk;t=1781335934820 _bk;t=1781335934820//tests/integration:toolchain_target_settings_test_bazel_7.7.0 (cached) PASSED in 11.6s +_bk;t=1781335934820(07:32:14) INFO: +_bk;t=1781335934820 _bk;t=1781335934820//tests/integration:toolchain_target_settings_test_bazel_8.5.1 (cached) PASSED in 12.1s +_bk;t=1781335934820(07:32:14) INFO: +_bk;t=1781335934820 _bk;t=1781335934820//tests/integration:toolchain_target_settings_test_bazel_9.1.0 (cached) PASSED in 11.9s +_bk;t=1781335934820(07:32:14) INFO: +_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:toolchain_target_settings_test_bazel_self (cached) PASSED in 11.1s +_bk;t=1781335934821(07:32:14) INFO: +_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:uv_lock_test_bazel_7.7.0 PASSED in 19.7s +_bk;t=1781335934821(07:32:14) INFO: +_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:uv_lock_test_bazel_8.5.1 PASSED in 20.1s +_bk;t=1781335934821(07:32:14) INFO: +_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:uv_lock_test_bazel_9.1.0 PASSED in 18.2s +_bk;t=1781335934821(07:32:14) INFO: +_bk;t=1781335934822 _bk;t=1781335934822//tests/integration:uv_lock_test_bazel_self PASSED in 17.3s +_bk;t=1781335934822(07:32:14) INFO: +_bk;t=1781335934822 _bk;t=1781335934822//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 6.1s +_bk;t=1781335934822 Stats over 3 runs: max = 6.1s, min = 5.6s, avg = 5.8s, dev = 0.2s +_bk;t=1781335934822(07:32:14) INFO: +_bk;t=1781335934822 _bk;t=1781335934822 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335934822(07:32:14) INFO: +_bk;t=1781335934822 _bk;t=1781335934822 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335934822(07:32:14) INFO: +_bk;t=1781335934823 _bk;t=1781335934823 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335934823(07:32:14) INFO: +_bk;t=1781335934823 _bk;t=1781335934823 +_bk;t=1781335934823(07:32:14) INFO: +_bk;t=1781335934823 _bk;t=1781335934823Executed 5 out of 53 tests: 52 tests pass and 1 fails locally. +_bk;t=1781335934823(07:32:14) INFO: +_bk;t=1781335934823 _bk;t=1781335934823There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. +_bk;t=1781335934823(07:32:14) INFO: +_bk;t=1781335935033 _bk;t=1781335935033(07:32:15) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/edfaa7d6-2eec-4df9-84db-2b6a65dd5a65 +_bk;t=1781335935033bazel info output_base +_bk;t=1781335935243WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335935243INFO: Invocation ID: d59a4e07-4ef6-4cdf-8646-a9c3c03eb993 +_bk;t=1781335935253 +_bk;t=1781335935253 +_bk;t=1781335935253--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=1781335935253 +_bk;t=1781335935253 +_bk;t=1781335935253buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log +_bk;t=17813359352672026-06-13 07:32:15 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" +_bk;t=17813359352682026-06-13 07:32:15 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration +_bk;t=17813359352682026-06-13 07:32:15 INFO  Creating (0-1)/1 artifacts +_bk;t=17813359353712026-06-13 07:32:15 INFO  Uploading 019ebfe5-496b-485b-be3d-47c599f05e3b var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (164 KiB) +_bk;t=1781335935379buildkite-agent artifact upload /tmp/tmp5lw_aaog/test_bep.json +_bk;t=17813359353932026-06-13 07:32:15 INFO  Found 1 files that match "/tmp/tmp5lw_aaog/test_bep.json" +_bk;t=17813359353942026-06-13 07:32:15 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration +_bk;t=17813359353942026-06-13 07:32:15 INFO  Creating (0-1)/1 artifacts +_bk;t=17813359354982026-06-13 07:32:15 INFO  Uploading 019ebfe5-49e7-4aef-b84e-206999cb7e0d tmp/tmp5lw_aaog/test_bep.json (464 KiB) +_bk;t=17813359355672026-06-13 07:32:15 INFO  Artifact uploads completed successfully +_bk;t=17813359356942026-06-13 07:32:15 INFO  Artifact uploads completed successfully +_bk;t=1781335935695bazel test failed with exit code 3 +_bk;t=1781335938591^^^ +++ +_bk;t=1781335938591🚨 Error: The command exited with status 3 +_bk;t=1781335938591^^^ +++ +_bk;t=1781335938591user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 +_bk;t=1781335938591~~~ Running plugin docker-buildkite-plugin pre-exit hook +_bk;t=1781335938591$ /etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log new file mode 100644 index 0000000000..d5a3da6a76 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log @@ -0,0 +1,647 @@ +_bk;t=1781335322046~~~ Running agent environment hook +_bk;t=1781335322046$ /opt/homebrew/etc/buildkite-agent/hooks/environment +_bk;t=1781335322248# SSL_CERT_FILE added +_bk;t=1781335322248# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e" +_bk;t=1781335322248# BUILDKITE_GS_APPLICATION_CREDENTIALS added +_bk;t=1781335322248# JAVA_TOOL_OPTIONS added +_bk;t=1781335322248# ANDROID_NDK_HOME added +_bk;t=1781335322248# ANDROID_HOME added +_bk;t=1781335322248# COURSIER_OPTS added +_bk;t=1781335322248~~~ Preparing working directory +_bk;t=1781335322248# Creating "/Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python" +_bk;t=1781335322248$ cd /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python +_bk;t=1781335322248$ cd /usr/local/var/bazelbuild +_bk;t=1781335323416# Updating existing repository mirror to find commit 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335323426# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously +_bk;t=1781335323426$ git --git-dir=/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head +_bk;t=1781335323568remote: Enumerating objects: 13, done._bk;t=1781335323568 +_bk;t=1781335323568remote: Counting objects: 7% (1/13)_bk;t=1781335323568 remote: Counting objects: 15% (2/13)_bk;t=1781335323568 remote: Counting objects: 23% (3/13)_bk;t=1781335323568 remote: Counting objects: 30% (4/13)_bk;t=1781335323568 remote: Counting objects: 38% (5/13)_bk;t=1781335323568 remote: Counting objects: 46% (6/13)_bk;t=1781335323568 remote: Counting objects: 53% (7/13)_bk;t=1781335323568 remote: Counting objects: 61% (8/13)_bk;t=1781335323568 remote: Counting objects: 69% (9/13)_bk;t=1781335323568 remote: Counting objects: 76% (10/13)_bk;t=1781335323568 remote: Counting objects: 84% (11/13)_bk;t=1781335323568 remote: Counting objects: 92% (12/13)_bk;t=1781335323568 remote: Counting objects: 100% (13/13)_bk;t=1781335323568 remote: Counting objects: 100% (13/13), done._bk;t=1781335323568 +_bk;t=1781335323568remote: Compressing objects: 50% (1/2)_bk;t=1781335323568 remote: Compressing objects: 100% (2/2)_bk;t=1781335323568 remote: Compressing objects: 100% (2/2), done._bk;t=1781335323568 +_bk;t=1781335323568remote: Total 7 (delta 4), reused 7 (delta 4), pack-reused 0 (from 0)_bk;t=1781335323568 +_bk;t=1781335323574Unpacking objects: 14% (1/7) Unpacking objects: 28% (2/7) Unpacking objects: 42% (3/7) Unpacking objects: 57% (4/7) Unpacking objects: 71% (5/7) Unpacking objects: 85% (6/7) Unpacking objects: 100% (7/7) Unpacking objects: 100% (7/7), 1.03 KiB | 210.00 KiB/s, done. +_bk;t=1781335323605From https://github.com/bazel-contrib/rules_python +_bk;t=1781335323605 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335323605 76028c350..92c48e57c refs/pull/3812/head -> refs/pull/3812/head +_bk;t=1781335323610$ cd /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python +_bk;t=1781335323610$ git clone -v --reference /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335323621Cloning into '.'... +_bk;t=1781335323661POST git-upload-pack (182 bytes) +_bk;t=1781335324056$ git clean -ffxdq +_bk;t=1781335324078# Fetch and checkout pull request head from GitHub +_bk;t=1781335324078$ git fetch -v --prune -- origin refs/pull/3812/head 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335324121POST git-upload-pack (402 bytes) +_bk;t=1781335324160From https://github.com/bazel-contrib/rules_python +_bk;t=1781335324160 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335324160 * branch 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -> FETCH_HEAD +_bk;t=1781335324177# FETCH_HEAD is now `92c48e57c6353feb0452ad82f7cfc2c744616fa4` +_bk;t=1781335324177$ git checkout -f 92c48e57c6353feb0452ad82f7cfc2c744616fa4 +_bk;t=1781335324219Note: switching to '92c48e57c6353feb0452ad82f7cfc2c744616fa4'. +_bk;t=1781335324219 +_bk;t=1781335324219You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335324219changes and commit them, and you can discard any commits you make in this +_bk;t=1781335324219state without impacting any branches by switching back to a branch. +_bk;t=1781335324219 +_bk;t=1781335324219If you want to create a new branch to retain commits you create, you may +_bk;t=1781335324219do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335324219 +_bk;t=1781335324219 git switch -c +_bk;t=1781335324219 +_bk;t=1781335324219Or undo this operation with: +_bk;t=1781335324219 +_bk;t=1781335324219 git switch - +_bk;t=1781335324219 +_bk;t=1781335324219Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335324219 +_bk;t=1781335324219HEAD is now at 92c48e57c feat(skills): Output swarm summary and job IDs in monitor_remote_ci +_bk;t=1781335324220# Cleaning again to catch any post-checkout changes +_bk;t=1781335324220$ git clean -ffxdq +_bk;t=1781335324244# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335324244# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335324244~~~ Running commands +_bk;t=1781335324244$ which python3 +_bk;t=1781335324244python3 -V +_bk;t=1781335324244curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py +_bk;t=1781335324244python3 bazelci.py runner --task=integration_test_bazelinbazel_macos +_bk;t=1781335324248/opt/homebrew/bin/python3 +_bk;t=1781335324255Python 3.12.11 +_bk;t=1781335324460 +_bk;t=1781335324460 +_bk;t=1781335324460--- :xcode: Activating Xcode 26.0... +_bk;t=1781335324460 +_bk;t=1781335324460 +_bk;t=1781335324460/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode26.0.app +_bk;t=1781335324482/usr/bin/sudo /usr/bin/xcodebuild -runFirstLaunch +_bk;t=1781335324638 +_bk;t=1781335324638 +_bk;t=1781335324638--- :bazel: Using latest Bazel release +_bk;t=1781335324638 +_bk;t=1781335324638 +_bk;t=1781335324638bazel --version +_bk;t=17813353251842026/06/13 09:22:05 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-darwin-arm64... +_bk;t=1781335325218 Downloading: 0 MB out of 57 MB (0%) Downloading: 0 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (2%) Downloading: 1 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (4%) Downloading: 2 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (7%) Downloading: 4 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (9%) Downloading: 5 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (11%) Downloading: 6 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (14%) Downloading: 8 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (16%) Downloading: 9 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (18%) Downloading: 10 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (21%) Downloading: 12 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (23%) Downloading: 13 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (25%) Downloading: 14 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (28%) Downloading: 16 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (30%) Downloading: 17 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (32%) Downloading: 19 MB out of 57 MB (33%) Downloading: 19 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (35%) Downloading: 20 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (37%) Downloading: 21 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (40%) Downloading: 23 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (42%) Downloading: 24 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (44%) Downloading: 25 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (47%) Downloading: 27 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (49%) Downloading: 28 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (51%) Downloading: 29 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (54%) Downloading: 31 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (56%) Downloading: 32 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (58%) Downloading: 33 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (61%) Downloading: 35 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (63%) Downloading: 36 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (65%) Downloading: 38 MB out of 57 MB (66%) Downloading: 38 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (68%) Downloading: 39 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (70%) Downloading: 40 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (73%) Downloading: 42 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (75%) Downloading: 43 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (77%) Downloading: 44 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (80%) Downloading: 46 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (82%) Downloading: 47 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (84%) Downloading: 48 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (87%) Downloading: 50 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (89%) Downloading: 51 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (91%) Downloading: 52 MB out of 57 MB (92%) Downloading: 53 MB out of 57 MB (92%) Downloading: 53 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (94%) Downloading: 54 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (96%) Downloading: 55 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (98%) Downloading: 57 MB out of 57 MB (99%) Downloading: 57 MB out of 57 MB (100%) +_bk;t=1781335325970bazel 9.1.1 +_bk;t=1781335325971bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base +_bk;t=1781335326503Extracting Bazel installation... +_bk;t=1781335327273Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335327273WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335329364WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335329364INFO: Invocation ID: 5418b96d-1dd0-45de-b627-d6bca42fbb1d +_bk;t=1781335329398 +_bk;t=1781335329398 +_bk;t=1781335329398--- :information_source: Bazel Info +_bk;t=1781335329398 +_bk;t=1781335329398 +_bk;t=1781335329398bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc version +_bk;t=1781335329926WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: +_bk;t=1781335329926/etc/bazel.bazelrc +_bk;t=1781335329963WARNING: Running Bazel server needs to be killed, because the following startup options are different: +_bk;t=1781335329963 - Only in old server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true +_bk;t=1781335329963 - Only in new server: +_bk;t=1781335330309Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335330309WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335331065WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335331065INFO: Invocation ID: e942680b-1cc3-4226-ad7f-5a68fdab4761 +_bk;t=1781335331093Bazelisk version: v1.26.0 +_bk;t=1781335331093Build label: 9.1.1 +_bk;t=1781335331093Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer +_bk;t=1781335331093Build time: Wed Jun 03 15:47:00 2026 (1780501620) +_bk;t=1781335331093Build timestamp: 1780501620 +_bk;t=1781335331093Build timestamp as int: 1780501620 +_bk;t=1781335331093 +_bk;t=1781335331093bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc info +_bk;t=1781335331601WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: +_bk;t=1781335331601/etc/bazel.bazelrc +_bk;t=1781335331660WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335331660INFO: Invocation ID: 82b75b6f-3ca2-4350-94d0-e474ea0e6c27 +_bk;t=1781335331723WARNING: /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335332595WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335332595WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335332595WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335332595WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335332919bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335332919bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335332919bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335332920character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335332920command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/command.log +_bk;t=1781335332920committed-heap-size: 100MB +_bk;t=1781335332920execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main +_bk;t=1781335332921gc-count: 15 +_bk;t=1781335332921gc-time: 28ms +_bk;t=1781335332922install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10 +_bk;t=1781335332922java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10/embedded_tools/jdk +_bk;t=1781335332922java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335332922java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335332922local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335332923max-heap-size: 8589MB +_bk;t=1781335332923output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b +_bk;t=1781335332923output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out +_bk;t=1781335332923package_path: %workspace% +_bk;t=1781335332923release: release 9.1.1 +_bk;t=1781335332923repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335332924server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-092210.73226 +_bk;t=1781335332924server_pid: 73226 +_bk;t=1781335332925used-heap-size: 38MB +_bk;t=1781335332925workspace: /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python +_bk;t=1781335332932 +_bk;t=1781335332934 +_bk;t=1781335332934--- :information_source: Environment Variables +_bk;t=1781335332934 +_bk;t=1781335332934 +_bk;t=1781335332934BUILDKITE_CONFIG_PATH=(/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg) +_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_OS_VERSION=(15.7.2) +_bk;t=1781335332934BUILDKITE_SIGNAL_GRACE_PERIOD_SECONDS=(9) +_bk;t=1781335332934BUILDKITE_BUILD_CREATOR=(Richard Levasseur) +_bk;t=1781335332934BUILDKITE_LAST_HOOK_EXIT_STATUS=(0) +_bk;t=1781335332934BUILDKITE_AGENT_EXPERIMENT=() +_bk;t=1781335332934SSL_CERT_FILE=(/opt/homebrew/lib/python3.12/site-packages/certifi/cacert.pem) +_bk;t=1781335332934BUILDKITE_AGENT_PID=(73155) +_bk;t=1781335332934ANDROID_HOME=(/Users/buildkite/android-sdk-macosx) +_bk;t=1781335332934TERM=(xterm-256color) +_bk;t=1781335332934SHELL=(/bin/zsh) +_bk;t=1781335332934BUILDKITE_RETRY_COUNT=(0) +_bk;t=1781335332934BUILDKITE_NO_HTTP2=(false) +_bk;t=1781335332934BUILDKITE_ENV_FILE=(/tmp/job-env-019ebfdb-e00f-4bcc-bba1-9c5de8379c7e2144443939) +_bk;t=1781335332934BUILDKITE_ENV_JSON_FILE=(/tmp/job-env-json-019ebfdb-e00f-4bcc-bba1-9c5de8379c7e2641349067) +_bk;t=1781335332934BUILDKITE_ARTIFACT_PATHS=() +_bk;t=1781335332934GOOGLE_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) +_bk;t=1781335332934BUILDKITE_GIT_FETCH_FLAGS=(-v --prune) +_bk;t=1781335332934BUILDKITE_CANCEL_GRACE_PERIOD=(10) +_bk;t=1781335332934BUILDKITE_SOURCE=(webhook) +_bk;t=1781335332934BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e) +_bk;t=1781335332934BUILDKITE_AGENT_DEBUG=(false) +_bk;t=1781335332934BUILDKITE_GIT_CLONE_MIRROR_FLAGS=(-v --bare) +_bk;t=1781335332934BUILDKITE_SCRIPT_PATH=(which python3 +_bk;t=1781335332934python3 -V +_bk;t=1781335332934curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py +_bk;t=1781335332934python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) +_bk;t=1781335332934BUILDKITE_ORGANIZATION_SLUG=(bazel) +_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_MACHINE_TYPE=(applevirtualmachine1) +_bk;t=1781335332934BUILDKITE_LOCAL_HOOKS_ENABLED=(true) +_bk;t=1781335332934BUILDKITE_COMMIT_RESOLVED=(true) +_bk;t=1781335332934BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) +_bk;t=1781335332934BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) +_bk;t=1781335332934GIT_TERMINAL_PROMPT=(0) +_bk;t=1781335332934BUILDKITE_SOCKETS_PATH=(/Users/buildkite/.buildkite-agent/sockets) +_bk;t=1781335332934USER=(buildkite) +_bk;t=1781335332934BUILDKITE_COMPUTE_TYPE=(self-hosted) +_bk;t=1781335332934SUDO_USER=(root) +_bk;t=1781335332934BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) +_bk;t=1781335332934SUDO_UID=(0) +_bk;t=1781335332934BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) +_bk;t=1781335332934BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335332934BUILDKITE_PROJECT_PROVIDER=(github) +_bk;t=1781335332934BUILDKITE_STEP_KEY=() +_bk;t=1781335332934BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) +_bk;t=1781335332934BUILDKITE_PLUGINS_ENABLED=(true) +_bk;t=1781335332934BUILDKITE_GS_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) +_bk;t=1781335332934BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) +_bk;t=1781335332934BUILDKITE_AGENT_DEBUG_HTTP=(false) +_bk;t=1781335332934BUILDKITE_PULL_REQUEST=(3812) +_bk;t=1781335332934BUILDKITE_GIT_MIRRORS_LOCK_TIMEOUT=(300) +_bk;t=1781335332934BUILDKITE_AGENT_ENDPOINT=(https://agent.buildkite.com/v3) +_bk;t=1781335332934BUILDKITE_HOOKS_PATH=(/opt/homebrew/etc/buildkite-agent/hooks) +_bk;t=1781335332934BUILDKITE_GIT_CLEAN_FLAGS=(-ffxdq) +_bk;t=1781335332934BUILDKITE_GITHUB_ACTION=(synchronize) +_bk;t=1781335332934BUILDKITE_REQUEST_HEADER_BUILDKITE_PIPELINES_SHARD_ID=(011) +_bk;t=1781335332934BUILDKITE_GITHUB_EVENT=(pull_request) +_bk;t=1781335332934BUILDKITE_BUILD_ID=(019ebfdb-afc0-4350-be53-56e1e1dcf7df) +_bk;t=1781335332934PATH=(/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin) +_bk;t=1781335332934MAIL=(/var/mail/root) +_bk;t=1781335332934BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() +_bk;t=1781335332934BUILDKITE_REDACTED_VARS=(*_PASSWORD,*_SECRET,*_TOKEN,*_PRIVATE_KEY,*_ACCESS_KEY,*_SECRET_KEY,*_CONNECTION_STRING) +_bk;t=1781335332934BUILDKITE_GIT_MIRRORS_PATH=(/usr/local/var/bazelbuild) +_bk;t=1781335332934BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) +_bk;t=1781335332934COURSIER_OPTS=(-Djava.net.preferIPv6Addresses=true) +_bk;t=1781335332934BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335332934PWD=(/Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python) +_bk;t=1781335332934BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) +_bk;t=1781335332934BUILDKITE_SHELL=(/bin/bash -e -c) +_bk;t=1781335332934BUILDKITE_PIPELINE_PROVIDER=(github) +_bk;t=1781335332934BUILDKITE_GIT_SUBMODULES=(true) +_bk;t=1781335332934BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() +_bk;t=1781335332934BUILDKITE_GIT_MIRRORS_SKIP_UPDATE=(false) +_bk;t=1781335332934BUILDKITE_BUILD_NUMBER=(15720) +_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_QUEUE=(macos_arm64) +_bk;t=1781335332934BAZEL_BUCKET_TYPE=(untrusted) +_bk;t=1781335332934BUILDKITE_SSH_KEYSCAN=(true) +_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_KIND=(worker) +_bk;t=1781335332935BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() +_bk;t=1781335332935BUILDKITE_PLUGINS_PATH=(/usr/local/var/buildkite-agent/plugins) +_bk;t=1781335332935BUILDKITE_LABEL=(tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64) +_bk;t=1781335332935BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15720) +_bk;t=1781335332935BUILDKITE_PULL_REQUEST_LABELS=() +_bk;t=1781335332935BUILDKITE_JOB_ID=(019ebfdb-e00f-4bcc-bba1-9c5de8379c7e) +_bk;t=1781335332935BUILDKITE_PIPELINE_SLUG=(rules-python-python) +_bk;t=1781335332935BUILDKITE_AGENT_ID=(019ebfda-eb3c-4605-a88b-fe2ba441ed63) +_bk;t=1781335332935JAVA_TOOL_OPTIONS=(-Djava.net.preferIPv6Addresses=true) +_bk;t=1781335332935SHLVL=(1) +_bk;t=1781335332935SUDO_COMMAND=(/usr/bin/env GOOGLE_APPLICATION_CREDENTIALS=/opt/homebrew/etc/buildkite-agent/bazel.json PATH=/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin BUILDKITE_AGENT_DISCONNECT_AFTER_JOB=true BUILDKITE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT=82800 BUILDKITE_AGENT_NAME=bk-macos-arm64-1u9v BUILDKITE_AGENT_PRIORITY=0 BUILDKITE_AGENT_TOKEN=f411f9d8498d4f9762e554835e81a24e2cd9a15fa6740b1276 BUILDKITE_AGENT_TAGS=queue=macos_arm64,kind=worker,os=macos,os-version=15.7.2,machine-type=applevirtualmachine1 BUILDKITE_BUILD_PATH=/Users/buildkite/builds BUILDKITE_CONFIG_PATH=/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg BUILDKITE_GIT_MIRRORS_PATH=/usr/local/var/bazelbuild BUILDKITE_GIT_CLONE_MIRROR_FLAGS=-v --bare BAZEL_BUCKET_TYPE=untrusted /opt/homebrew/bin/buildkite-agent start) +_bk;t=1781335332935HOME=(/Users/buildkite) +_bk;t=1781335332935BUILDKITE_TRIGGERED_FROM_BUILD_ID=() +_bk;t=1781335332935BUILDKITE_REPO_MIRROR=(/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git) +_bk;t=1781335332935BUILDKITE_AGENT_JOB_API_SOCKET=(/Users/buildkite/.buildkite-agent/sockets/job-api/73160-62344.sock) +_bk;t=1781335332935BUILDKITE_COMMAND=(which python3 +_bk;t=1781335332935python3 -V +_bk;t=1781335332935curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py +_bk;t=1781335332935python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) +_bk;t=1781335332935BUILDKITE_BIN_PATH=(/opt/homebrew/bin) +_bk;t=1781335332935CI=(true) +_bk;t=1781335332935BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) +_bk;t=1781335332935BUILDKITE_TRACE_CONTEXT_ENCODING=(gob) +_bk;t=1781335332935BUILDKITE=(true) +_bk;t=1781335332935BUILDKITE_STEP_ID=(019ebfdb-dede-4457-be66-235b16e82f9c) +_bk;t=1781335332935LOGNAME=(buildkite) +_bk;t=1781335332935BUILDKITE_ADDITIONAL_HOOKS_PATHS=() +_bk;t=1781335332935BUILDKITE_TAG=() +_bk;t=1781335332935BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) +_bk;t=1781335332935BUILDKITE_TIMEOUT=(480) +_bk;t=1781335332935BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) +_bk;t=1781335332935BUILDKITE_AGENT_DISABLE_WARNINGS_FOR=() +_bk;t=1781335332935BUILDKITE_REBUILT_FROM_BUILD_ID=() +_bk;t=1781335332935BUILDKITE_BUILD_CHECKOUT_PATH=(/Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python) +_bk;t=1781335332935BUILDKITE_AGENT_NAME=(bk-macos-arm64-1u9v) +_bk;t=1781335332935BUILDKITE_COMMAND_EVAL=(true) +_bk;t=1781335332935BUILDKITE_AGENT_JOB_API_TOKEN=([REDACTED]) +_bk;t=1781335332935BUILDKITE_PLUGIN_VALIDATION=(false) +_bk;t=1781335332935BUILDKITE_AGENT_META_DATA_OS=(macos) +_bk;t=1781335332935ANDROID_NDK_HOME=(/Users/buildkite/android-ndk-r15c) +_bk;t=1781335332935SUDO_GID=(0) +_bk;t=1781335332935BUILDKITE_STRICT_SINGLE_HOOKS=(false) +_bk;t=1781335332935BUILDKITE_GIT_CHECKOUT_FLAGS=(-f) +_bk;t=1781335332935BUILDKITE_COMMIT=(92c48e57c6353feb0452ad82f7cfc2c744616fa4) +_bk;t=1781335332935BUILDKITE_PIPELINE_NAME=(rules_python :python:) +_bk;t=1781335332935BUILDKITE_GIT_CLONE_FLAGS=(-v) +_bk;t=1781335332935BUILDKITE_BUILD_PATH=(/Users/buildkite/builds) +_bk;t=1781335332935BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) +_bk;t=1781335332935BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) +_bk;t=1781335332935_=(/opt/homebrew/bin/python3) +_bk;t=1781335332935__CF_USER_TEXT_ENCODING=(0x1F6:0:0) +_bk;t=1781335332935LC_CTYPE=(C.UTF-8) +_bk;t=1781335332935BAZELCI_TASK=(integration_test_bazelinbazel_macos) +_bk;t=1781335332935BAZELISK_USER_AGENT=(Bazelisk/BazelCI) +_bk;t=1781335332935OUTPUT_BASE=(/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b) +_bk;t=1781335332935 +_bk;t=1781335332935 +_bk;t=1781335332935--- :dart: Calculating targets +_bk;t=1781335332935 +_bk;t=1781335332935 +_bk;t=1781335332935 +_bk;t=1781335332935 +_bk;t=1781335332935--- :bazel: Computing flags for build step +_bk;t=1781335332935 +_bk;t=1781335332935 +_bk;t=1781335333017Adding to platform cache key: b'bazel' +_bk;t=1781335333017Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335333017Adding to platform cache key: b'macos_arm64' +_bk;t=1781335333017Adding to platform cache key: b'15.7.2\n' +_bk;t=1781335333017Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' +_bk;t=1781335333017Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' +_bk;t=1781335333017 +_bk;t=1781335333017 +_bk;t=1781335333017+++ :bazel: Build (9.1.1) +_bk;t=1781335333017 +_bk;t=1781335333017 +_bk;t=1781335333017bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmpwsin4oco/build_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE -- //tests/integration:subset +_bk;t=1781335333561WARNING: Running Bazel server needs to be killed, because the following startup options are different: +_bk;t=1781335333561 - Only in old server: +_bk;t=1781335333561 - Only in new server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true +_bk;t=1781335333902Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335333902WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335334877(09:22:14) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335334879(09:22:14) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335334879(09:22:14) INFO: Invocation ID: 11239ebc-d274-413a-b184-1bf5cc2827c2 +_bk;t=1781335334879(09:22:14) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true +_bk;t=1781335334879(09:22:14) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks +_bk;t=1781335334879(09:22:14) INFO: Options provided by the client: +_bk;t=1781335334879 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /private/etc/bazel.bazelrc: +_bk;t=1781335334879 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses +_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc.deleted_packages: +_bk;t=1781335334879 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: +_bk;t=1781335334879 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: +_bk;t=1781335334879 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335334879(09:22:14) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335334912(09:22:14) INFO: Current date is 2026-06-13 +_bk;t=1781335334912(09:22:14) +_bk;t=1781335334912 _bk;t=1781335334912(09:22:14) Computing main repo mapping: +_bk;t=1781335334934 _bk;t=1781335334934(09:22:14) WARNING: /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335334934(09:22:14) Computing main repo mapping: +_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335068(09:22:15) Computing main repo mapping: +_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335068(09:22:15) Computing main repo mapping: +_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335068(09:22:15) Computing main repo mapping: +_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335335068(09:22:15) Computing main repo mapping: +_bk;t=1781335335646 _bk;t=1781335335646(09:22:15) Loading: +_bk;t=1781335335655 _bk;t=1781335335655(09:22:15) Loading: 1 packages loaded +_bk;t=1781335336199 _bk;t=1781335336199(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335336207 _bk;t=1781335336207(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335336207 +_bk;t=1781335336221 _bk;t=1781335336221 _bk;t=1781335336221(09:22:16) INFO: Found 0 targets... +_bk;t=1781335336221(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335336221 +_bk;t=1781335336238 _bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: Elapsed time: 2.700s, Critical Path: 0.01s +_bk;t=1781335336238(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335336238 +_bk;t=1781335336238 _bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: 1 process: 1 internal. +_bk;t=1781335336238(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335336238 +_bk;t=1781335336238 _bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: Build completed successfully, 1 total action +_bk;t=1781335336238(09:22:16) INFO: +_bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: +_bk;t=1781335336271 _bk;t=1781335336271(09:22:16) INFO: Build Event Protocol files produced successfully. +_bk;t=1781335336272curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-aarch64-apple-darwin -o /tmp/tmpwsin4oco/bazelci-agent +_bk;t=1781335336279 +_bk;t=1781335336279 +_bk;t=1781335336279--- :bazel: Computing flags for test step +_bk;t=1781335336279 +_bk;t=1781335336279 +_bk;t=1781335336335/tmp/tmpwsin4oco/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmpwsin4oco/test_bep.json +_bk;t=1781335336371Adding to platform cache key: b'bazel' +_bk;t=1781335336371Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335336371Adding to platform cache key: b'macos_arm64' +_bk;t=1781335336371Adding to platform cache key: b'15.7.2\n' +_bk;t=1781335336371Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' +_bk;t=1781335336371Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' +_bk;t=1781335336371 +_bk;t=1781335336371 +_bk;t=1781335336371+++ :bazel: Test (9.1.1) +_bk;t=1781335336371 +_bk;t=1781335336371 +_bk;t=1781335336371bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=3 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmpwsin4oco/test_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE --sandbox_writable_path=/Users/buildkite/Library/Caches/bazelisk -- //tests/integration:subset +_bk;t=1781335336926(09:22:16) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335336926(09:22:16) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335336926(09:22:16) INFO: Invocation ID: 7133c34a-2865-4989-836d-692f2d126876 +_bk;t=1781335336926(09:22:16) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true +_bk;t=1781335336927(09:22:16) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks +_bk;t=1781335336927(09:22:16) INFO: Options provided by the client: +_bk;t=1781335336927 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /private/etc/bazel.bazelrc: +_bk;t=1781335336927 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses +_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc.deleted_packages: +_bk;t=1781335336927 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: +_bk;t=1781335336927 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: +_bk;t=1781335336927 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: +_bk;t=1781335336927 'test' options: --test_output=errors +_bk;t=1781335336927(09:22:16) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335336952(09:22:16) INFO: Current date is 2026-06-13 +_bk;t=1781335336952(09:22:16) +_bk;t=1781335336952 _bk;t=1781335336952(09:22:16) Computing main repo mapping: +_bk;t=1781335336998 _bk;t=1781335336998(09:22:16) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336998(09:22:16) Computing main repo mapping: +_bk;t=1781335336999 _bk;t=1781335336999(09:22:16) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336999(09:22:16) Computing main repo mapping: +_bk;t=1781335336999 _bk;t=1781335336999(09:22:16) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336999(09:22:16) Computing main repo mapping: +_bk;t=1781335336999 _bk;t=1781335336999(09:22:16) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335336999(09:22:16) Computing main repo mapping: +_bk;t=1781335337048 _bk;t=1781335337048(09:22:17) Loading: +_bk;t=1781335337050 _bk;t=1781335337050(09:22:17) Loading: 0 packages loaded +_bk;t=1781335337078 _bk;t=1781335337078(09:22:17) Analyzing: 3 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335337079 _bk;t=1781335337079(09:22:17) Analyzing: 3 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335337079 +_bk;t=1781335342090 _bk;t=1781335342090 _bk;t=1781335342090(09:22:22) Analyzing: 3 targets (114 packages loaded, 12721 targets configured) +_bk;t=1781335342090[13 / 13] no actions running +_bk;t=1781335342090 Fetching repository @@+python+python_3_11_15_aarch64-apple-darwin; Running python_repository.FixUpDyldIdPath +_bk;t=1781335342090 Fetching repository @@rules_cc++cc_configure_extension+local_config_cc; starting +_bk;t=1781335342090 Fetching repository @@+pip+pypiserver; starting +_bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700(09:22:27) Analyzing: 3 targets (130 packages loaded, 15704 targets configured) +_bk;t=1781335347700 currently loading: @@bazel_tools+xcode_configure_extension+local_config_xcode// +_bk;t=1781335347700[13 / 13] no actions running +_bk;t=1781335347758 _bk;t=1781335347758 _bk;t=1781335347758 _bk;t=1781335347758(09:22:27) INFO: Analyzed 3 targets (132 packages loaded, 15716 targets configured). +_bk;t=1781335347758(09:22:27) [13 / 13] no actions running +_bk;t=1781335355093 _bk;t=1781335355093(09:22:35) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache +_bk;t=1781335356141 _bk;t=1781335356141(09:22:36) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) +_bk;t=1781335356141(09:22:36) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 7s local, remote-cache +_bk;t=1781335356661buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=17813353566822026-06-13 09:22:36 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" +_bk;t=17813353566832026-06-13 09:22:36 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration +_bk;t=17813353566832026-06-13 09:22:36 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353568152026-06-13 09:22:36 INFO  Uploading 019ebfdc-7611-4721-a8c8-9202fe0ed8d8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) +_bk;t=17813353573832026-06-13 09:22:37 INFO  Artifact uploads completed successfully +_bk;t=1781335361338 _bk;t=1781335361338(09:22:41) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache +_bk;t=1781335362011 _bk;t=1781335362011(09:22:42) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) +_bk;t=1781335362011(09:22:42) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 13s local, remote-cache +_bk;t=1781335362719buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=17813353627442026-06-13 09:22:42 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" +_bk;t=17813353627452026-06-13 09:22:42 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration +_bk;t=17813353627452026-06-13 09:22:42 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353628622026-06-13 09:22:42 INFO  Uploading 019ebfdc-8dae-438e-98f0-13a4125befc4 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) +_bk;t=17813353634512026-06-13 09:22:43 INFO  Artifact uploads completed successfully +_bk;t=1781335367339 _bk;t=1781335367339(09:22:47) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335367948 _bk;t=1781335367948(09:22:47) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) +_bk;t=1781335367948(09:22:47) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 19s local, remote-cache +_bk;t=1781335367957 _bk;t=1781335367957 +_bk;t=1781335367957FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335367957 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335367957 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335367957 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335367957(09:22:47) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335367957 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 19s local, remote-cache +_bk;t=1781335367965 _bk;t=1781335367965 _bk;t=1781335367965(09:22:47) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335367965==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=17813353679652026/06/13 07:22:29 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-darwin-arm64... +_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335367965Extracting Bazel installation... +_bk;t=1781335367965Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335367965WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335367965bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335367965bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335367965bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335367965character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335367965command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/command.log +_bk;t=1781335367965committed-heap-size: 293MB +_bk;t=1781335367965execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main +_bk;t=1781335367965gc-count: 11 +_bk;t=1781335367965gc-time: 18ms +_bk;t=1781335367965install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 +_bk;t=1781335367965java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk +_bk;t=1781335367965java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335367965java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335367965local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335367965max-heap-size: 8589MB +_bk;t=1781335367965output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c +_bk;t=1781335367965output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out +_bk;t=1781335367965package_path: %workspace% +_bk;t=1781335367965release: release 9.1.0 +_bk;t=1781335367965repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335367965server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-072232.73761 +_bk;t=1781335367965server_pid: 73761 +_bk;t=1781335367965used-heap-size: 99MB +_bk;t=1781335367965workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335367965Computing main repo mapping: +_bk;t=1781335367965Loading: +_bk;t=1781335367965Loading: 0 packages loaded +_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335367965 +_bk;t=1781335367965ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335367965INFO: Elapsed time: 0.655s, Critical Path: 0.02s +_bk;t=1781335367965INFO: 1 process: 1 internal. +_bk;t=1781335367965ERROR: Build did NOT complete successfully +_bk;t=1781335367965FAILED: +_bk;t=1781335367965ERROR: No test targets were found, yet testing was requested +_bk;t=1781335367965================================================================================ +_bk;t=1781335367965==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335367965Extracting Bazel installation... +_bk;t=1781335367965Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335367965WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335367965bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335367965bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335367965bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335367965character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335367965command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/command.log +_bk;t=1781335367965committed-heap-size: 75MB +_bk;t=1781335367965execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main +_bk;t=1781335367965gc-count: 14 +_bk;t=1781335367965gc-time: 25ms +_bk;t=1781335367965install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 +_bk;t=1781335367965java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk +_bk;t=1781335367965java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335367965java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335367965local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335367965max-heap-size: 8589MB +_bk;t=1781335367965output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c +_bk;t=1781335367965output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out +_bk;t=1781335367965package_path: %workspace% +_bk;t=1781335367965release: release 9.1.0 +_bk;t=1781335367965repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335367965server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-072238.73886 +_bk;t=1781335367965server_pid: 73886 +_bk;t=1781335367965used-heap-size: 24MB +_bk;t=1781335367965workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335367965Computing main repo mapping: +_bk;t=1781335367965Loading: +_bk;t=1781335367965Loading: 0 packages loaded +_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335367965 +_bk;t=1781335367965ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335367965INFO: Elapsed time: 0.665s, Critical Path: 0.02s +_bk;t=1781335367965INFO: 1 process: 1 internal. +_bk;t=1781335367965ERROR: Build did NOT complete successfully +_bk;t=1781335367965FAILED: +_bk;t=1781335367965ERROR: No test targets were found, yet testing was requested +_bk;t=1781335367965================================================================================ +_bk;t=1781335367965==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335367966$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335367966Extracting Bazel installation... +_bk;t=1781335367966Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335367966WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335367966bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335367966bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335367966bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335367966character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335367966command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/command.log +_bk;t=1781335367966committed-heap-size: 100MB +_bk;t=1781335367966execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main +_bk;t=1781335367966gc-count: 15 +_bk;t=1781335367966gc-time: 23ms +_bk;t=1781335367966install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 +_bk;t=1781335367966java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk +_bk;t=1781335367966java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335367966java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335367966local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335367966max-heap-size: 8589MB +_bk;t=1781335367966output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c +_bk;t=1781335367966output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out +_bk;t=1781335367966package_path: %workspace% +_bk;t=1781335367966release: release 9.1.0 +_bk;t=1781335367966repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335367966server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-072244.74020 +_bk;t=1781335367966server_pid: 74020 +_bk;t=1781335367966used-heap-size: 28MB +_bk;t=1781335367966workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335367966$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335367966Computing main repo mapping: +_bk;t=1781335367966Loading: +_bk;t=1781335367966Loading: 0 packages loaded +_bk;t=1781335367966Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335367966Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335367966 +_bk;t=1781335367966ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335367966INFO: Elapsed time: 0.651s, Critical Path: 0.02s +_bk;t=1781335367966INFO: 1 process: 1 internal. +_bk;t=1781335367966ERROR: Build did NOT complete successfully +_bk;t=1781335367966FAILED: +_bk;t=1781335367966ERROR: No test targets were found, yet testing was requested +_bk;t=1781335367966================================================================================ +_bk;t=1781335367966(09:22:47) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335367966 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 19s local, remote-cache +_bk;t=1781335368802buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=17813353688252026-06-13 09:22:48 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" +_bk;t=17813353688252026-06-13 09:22:48 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration +_bk;t=17813353688252026-06-13 09:22:48 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353689312026-06-13 09:22:48 INFO  Uploading 019ebfdc-a566-4c8b-9e5d-596047139e1a tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) +_bk;t=17813353694862026-06-13 09:22:49 INFO  Artifact uploads completed successfully +_bk;t=1781335377019 _bk;t=1781335377019 _bk;t=1781335377019(09:22:57) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335377019 Testing //tests/integration:uv_lock_test_bazel_self; 8s local, remote-cache +_bk;t=1781335382021 _bk;t=1781335382021 _bk;t=1781335382021(09:23:02) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335382021 Testing //tests/integration:uv_lock_test_bazel_self; 13s local, remote-cache +_bk;t=1781335386746 _bk;t=1781335386746 _bk;t=1781335386746(09:23:06) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335386746(09:23:06) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335386746 Testing //tests/integration:uv_lock_test_bazel_self; 18s local, remote-cache +_bk;t=1781335389005 _bk;t=1781335389005 _bk;t=1781335389005(09:23:09) INFO: Found 3 test targets... +_bk;t=1781335389005(09:23:09) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self +_bk;t=1781335389030 _bk;t=1781335389030(09:23:09) INFO: Elapsed time: 52.140s, Critical Path: 20.38s +_bk;t=1781335389030(09:23:09) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self +_bk;t=1781335389031 _bk;t=1781335389031(09:23:09) INFO: 32 processes: 3 remote cache hit, 28 internal, 8 local. +_bk;t=1781335389031(09:23:09) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self +_bk;t=1781335389031 _bk;t=1781335389031(09:23:09) INFO: Build completed, 1 test FAILED, 32 total actions +_bk;t=1781335389031(09:23:09) INFO: +_bk;t=1781335389031 _bk;t=1781335389031(09:23:09) INFO: +_bk;t=1781335389034 _bk;t=1781335389034//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 12.2s +_bk;t=1781335389034(09:23:09) INFO: +_bk;t=1781335389034 _bk;t=1781335389034//tests/integration:uv_lock_test_bazel_self PASSED in 18.3s +_bk;t=1781335389034(09:23:09) INFO: +_bk;t=1781335389035 _bk;t=1781335389035//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 6.6s +_bk;t=1781335389035 Stats over 3 runs: max = 6.6s, min = 4.9s, avg = 5.5s, dev = 0.7s +_bk;t=1781335389035(09:23:09) INFO: +_bk;t=1781335389035 _bk;t=1781335389035 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335389035(09:23:09) INFO: +_bk;t=1781335389035 _bk;t=1781335389035 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335389035(09:23:09) INFO: +_bk;t=1781335389035 _bk;t=1781335389035 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335389035(09:23:09) INFO: +_bk;t=1781335389036 _bk;t=1781335389036 +_bk;t=1781335389036(09:23:09) INFO: +_bk;t=1781335389036 _bk;t=1781335389036Executed 2 out of 3 tests: 2 tests pass and 1 fails locally. +_bk;t=1781335389036(09:23:09) INFO: +_bk;t=1781335389036 _bk;t=1781335389036There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. +_bk;t=1781335389036(09:23:09) INFO: +_bk;t=1781335389058 _bk;t=1781335389058(09:23:09) INFO: Build Event Protocol files produced successfully. +_bk;t=1781335389058bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base +_bk;t=1781335389613WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335389613INFO: Invocation ID: 9310cb2b-3e5d-443c-a707-820f6a2ae4fc +_bk;t=1781335389631 +_bk;t=1781335389631 +_bk;t=1781335389631--- :gcloud: Uploading log file: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log +_bk;t=1781335389631 +_bk;t=1781335389631 +_bk;t=1781335389631buildkite-agent artifact upload /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log +_bk;t=17813353896542026-06-13 09:23:09 INFO  Found 1 files that match "/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log" +_bk;t=17813353896542026-06-13 09:23:09 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration +_bk;t=17813353896542026-06-13 09:23:09 INFO  Creating (0-1)/1 artifacts +_bk;t=1781335389742buildkite-agent artifact upload /tmp/tmpwsin4oco/test_bep.json +_bk;t=17813353897582026-06-13 09:23:09 INFO  Uploading 019ebfdc-f6bf-422f-85b8-292aa782fafb Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log (121 KiB) +_bk;t=17813353897682026-06-13 09:23:09 INFO  Found 1 files that match "/tmp/tmpwsin4oco/test_bep.json" +_bk;t=17813353897682026-06-13 09:23:09 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration +_bk;t=17813353897682026-06-13 09:23:09 INFO  Creating (0-1)/1 artifacts +_bk;t=17813353898752026-06-13 09:23:09 INFO  Uploading 019ebfdc-f733-48fc-a196-09fc8aad3101 tmp/tmpwsin4oco/test_bep.json (304 KiB) +_bk;t=17813353905322026-06-13 09:23:10 INFO  Artifact uploads completed successfully +_bk;t=17813353906832026-06-13 09:23:10 INFO  Artifact uploads completed successfully +_bk;t=1781335390690bazel test failed with exit code 3 +_bk;t=1781335390736^^^ +++ +_bk;t=1781335390736🚨 Error: The command exited with status 3 +_bk;t=1781335390736^^^ +++ +_bk;t=1781335390736user command error: exit status 3 diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log new file mode 100644 index 0000000000..119ada5f4f --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log @@ -0,0 +1,653 @@ +_bk;t=1781335811706~~~ Running agent environment hook +_bk;t=1781335811708$ /opt/homebrew/etc/buildkite-agent/hooks/environment +_bk;t=1781335811986# JAVA_TOOL_OPTIONS added +_bk;t=1781335811986# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96" +_bk;t=1781335811986# BUILDKITE_GS_APPLICATION_CREDENTIALS added +_bk;t=1781335811986# SSL_CERT_FILE added +_bk;t=1781335811986# ANDROID_HOME added +_bk;t=1781335811986# COURSIER_OPTS added +_bk;t=1781335811986# ANDROID_NDK_HOME added +_bk;t=1781335812015~~~ Preparing working directory +_bk;t=1781335812015# Creating "/Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python" +_bk;t=1781335812015$ cd /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python +_bk;t=1781335812016$ cd /usr/local/var/bazelbuild +_bk;t=1781335814257# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335814272# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously +_bk;t=1781335814272$ git --git-dir=/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head +_bk;t=1781335814448remote: Enumerating objects: 52, done._bk;t=1781335814448 +_bk;t=1781335814448remote: Counting objects: 1% (1/52)_bk;t=1781335814448 remote: Counting objects: 3% (2/52)_bk;t=1781335814448 remote: Counting objects: 5% (3/52)_bk;t=1781335814448 remote: Counting objects: 7% (4/52)_bk;t=1781335814448 remote: Counting objects: 9% (5/52)_bk;t=1781335814448 remote: Counting objects: 11% (6/52)_bk;t=1781335814448 remote: Counting objects: 13% (7/52)_bk;t=1781335814448 remote: Counting objects: 15% (8/52)_bk;t=1781335814448 remote: Counting objects: 17% (9/52)_bk;t=1781335814448 remote: Counting objects: 19% (10/52)_bk;t=1781335814448 remote: Counting objects: 21% (11/52)_bk;t=1781335814448 remote: Counting objects: 23% (12/52)_bk;t=1781335814448 remote: Counting objects: 25% (13/52)_bk;t=1781335814448 remote: Counting objects: 26% (14/52)_bk;t=1781335814448 remote: Counting objects: 28% (15/52)_bk;t=1781335814448 remote: Counting objects: 30% (16/52)_bk;t=1781335814448 remote: Counting objects: 32% (17/52)_bk;t=1781335814448 remote: Counting objects: 34% (18/52)_bk;t=1781335814448 remote: Counting objects: 36% (19/52)_bk;t=1781335814448 remote: Counting objects: 38% (20/52)_bk;t=1781335814448 remote: Counting objects: 40% (21/52)_bk;t=1781335814448 remote: Counting objects: 42% (22/52)_bk;t=1781335814448 remote: Counting objects: 44% (23/52)_bk;t=1781335814448 remote: Counting objects: 46% (24/52)_bk;t=1781335814448 remote: Counting objects: 48% (25/52)_bk;t=1781335814448 remote: Counting objects: 50% (26/52)_bk;t=1781335814448 remote: Counting objects: 51% (27/52)_bk;t=1781335814448 remote: Counting objects: 53% (28/52)_bk;t=1781335814448 remote: Counting objects: 55% (29/52)_bk;t=1781335814448 remote: Counting objects: 57% (30/52)_bk;t=1781335814448 remote: Counting objects: 59% (31/52)_bk;t=1781335814448 remote: Counting objects: 61% (32/52)_bk;t=1781335814448 remote: Counting objects: 63% (33/52)_bk;t=1781335814448 remote: Counting objects: 65% (34/52)_bk;t=1781335814448 remote: Counting objects: 67% (35/52)_bk;t=1781335814448 remote: Counting objects: 69% (36/52)_bk;t=1781335814448 remote: Counting objects: 71% (37/52)_bk;t=1781335814448 remote: Counting objects: 73% (38/52)_bk;t=1781335814448 remote: Counting objects: 75% (39/52)_bk;t=1781335814448 remote: Counting objects: 76% (40/52)_bk;t=1781335814448 remote: Counting objects: 78% (41/52)_bk;t=1781335814448 remote: Counting objects: 80% (42/52)_bk;t=1781335814448 remote: Counting objects: 82% (43/52)_bk;t=1781335814448 remote: Counting objects: 84% (44/52)_bk;t=1781335814448 remote: Counting objects: 86% (45/52)_bk;t=1781335814448 remote: Counting objects: 88% (46/52)_bk;t=1781335814448 remote: Counting objects: 90% (47/52)_bk;t=1781335814448 remote: Counting objects: 92% (48/52)_bk;t=1781335814448 remote: Counting objects: 94% (49/52)_bk;t=1781335814448 remote: Counting objects: 96% (50/52)_bk;t=1781335814448 remote: Counting objects: 98% (51/52)_bk;t=1781335814448 remote: Counting objects: 100% (52/52)_bk;t=1781335814448 remote: Counting objects: 100% (52/52), done._bk;t=1781335814448 +_bk;t=1781335814448remote: Compressing objects: 4% (1/21)_bk;t=1781335814448 remote: Compressing objects: 9% (2/21)_bk;t=1781335814448 remote: Compressing objects: 14% (3/21)_bk;t=1781335814448 remote: Compressing objects: 19% (4/21)_bk;t=1781335814448 remote: Compressing objects: 23% (5/21)_bk;t=1781335814448 remote: Compressing objects: 28% (6/21)_bk;t=1781335814448 remote: Compressing objects: 33% (7/21)_bk;t=1781335814448 remote: Compressing objects: 38% (8/21)_bk;t=1781335814448 remote: Compressing objects: 42% (9/21)_bk;t=1781335814448 remote: Compressing objects: 47% (10/21)_bk;t=1781335814448 remote: Compressing objects: 52% (11/21)_bk;t=1781335814448 remote: Compressing objects: 57% (12/21)_bk;t=1781335814448 remote: Compressing objects: 61% (13/21)_bk;t=1781335814449 remote: Compressing objects: 66% (14/21)_bk;t=1781335814449 remote: Compressing objects: 71% (15/21)_bk;t=1781335814449 remote: Compressing objects: 76% (16/21)_bk;t=1781335814449 remote: Compressing objects: 80% (17/21)_bk;t=1781335814449 remote: Compressing objects: 85% (18/21)_bk;t=1781335814449 remote: Compressing objects: 90% (19/21)_bk;t=1781335814449 remote: Compressing objects: 95% (20/21)_bk;t=1781335814449 remote: Compressing objects: 100% (21/21)_bk;t=1781335814449 remote: Compressing objects: 100% (21/21), done._bk;t=1781335814449 +_bk;t=1781335814450remote: Total 45 (delta 23), reused 41 (delta 19), pack-reused 0 (from 0)_bk;t=1781335814450 +_bk;t=1781335814461Unpacking objects: 2% (1/45) Unpacking objects: 4% (2/45) Unpacking objects: 6% (3/45) Unpacking objects: 8% (4/45) Unpacking objects: 11% (5/45) Unpacking objects: 13% (6/45) Unpacking objects: 15% (7/45) Unpacking objects: 17% (8/45) Unpacking objects: 20% (9/45) Unpacking objects: 22% (10/45) Unpacking objects: 24% (11/45) Unpacking objects: 26% (12/45) Unpacking objects: 28% (13/45) Unpacking objects: 31% (14/45) Unpacking objects: 33% (15/45) Unpacking objects: 35% (16/45) Unpacking objects: 37% (17/45) Unpacking objects: 40% (18/45) Unpacking objects: 42% (19/45) Unpacking objects: 44% (20/45) Unpacking objects: 46% (21/45) Unpacking objects: 48% (22/45) Unpacking objects: 51% (23/45) Unpacking objects: 53% (24/45) Unpacking objects: 55% (25/45) Unpacking objects: 57% (26/45) Unpacking objects: 60% (27/45) Unpacking objects: 62% (28/45) Unpacking objects: 64% (29/45) Unpacking objects: 66% (30/45) Unpacking objects: 68% (31/45) Unpacking objects: 71% (32/45) Unpacking objects: 73% (33/45) Unpacking objects: 75% (34/45) Unpacking objects: 77% (35/45) Unpacking objects: 80% (36/45) Unpacking objects: 82% (37/45) Unpacking objects: 84% (38/45) Unpacking objects: 86% (39/45) Unpacking objects: 88% (40/45) Unpacking objects: 91% (41/45) Unpacking objects: 93% (42/45) Unpacking objects: 95% (43/45) Unpacking objects: 97% (44/45) Unpacking objects: 100% (45/45) Unpacking objects: 100% (45/45), 8.83 KiB | 347.00 KiB/s, done. +_bk;t=1781335814522From https://github.com/bazel-contrib/rules_python +_bk;t=1781335814522 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335814522 8759e1bb1..d6eeb759a refs/pull/3812/head -> refs/pull/3812/head +_bk;t=1781335814528$ cd /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python +_bk;t=1781335814528$ git clone -v --reference /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . +_bk;t=1781335814545Cloning into '.'... +_bk;t=1781335814593POST git-upload-pack (182 bytes) +_bk;t=1781335814950$ git clean -ffxdq +_bk;t=1781335814979# Fetch and checkout pull request head from GitHub +_bk;t=1781335814979$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335815035POST git-upload-pack (402 bytes) +_bk;t=1781335815086From https://github.com/bazel-contrib/rules_python +_bk;t=1781335815086 * branch refs/pull/3812/head -> FETCH_HEAD +_bk;t=1781335815086 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD +_bk;t=1781335815109# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` +_bk;t=1781335815109$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b +_bk;t=1781335815221Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. +_bk;t=1781335815221 +_bk;t=1781335815221You are in 'detached HEAD' state. You can look around, make experimental +_bk;t=1781335815221changes and commit them, and you can discard any commits you make in this +_bk;t=1781335815221state without impacting any branches by switching back to a branch. +_bk;t=1781335815221 +_bk;t=1781335815221If you want to create a new branch to retain commits you create, you may +_bk;t=1781335815221do so (now or later) by using -c with the switch command. Example: +_bk;t=1781335815221 +_bk;t=1781335815221 git switch -c +_bk;t=1781335815221 +_bk;t=1781335815221Or undo this operation with: +_bk;t=1781335815221 +_bk;t=1781335815221 git switch - +_bk;t=1781335815221 +_bk;t=1781335815221Turn off this advice by setting config variable advice.detachedHead to false +_bk;t=1781335815221 +_bk;t=1781335815221HEAD is now at d6eeb759a feat(skills): Include Buildkite Build ID in monitor_remote_ci summary +_bk;t=1781335815222# Cleaning again to catch any post-checkout changes +_bk;t=1781335815222$ git clean -ffxdq +_bk;t=1781335815256# Checking to see if git commit information needs to be sent to Buildkite... +_bk;t=1781335815256# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping +_bk;t=1781335815256~~~ Running commands +_bk;t=1781335815256$ which python3 +_bk;t=1781335815256python3 -V +_bk;t=1781335815256curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335815256python3 bazelci.py runner --task=integration_test_bazelinbazel_macos +_bk;t=1781335815262/opt/homebrew/bin/python3 +_bk;t=1781335815275Python 3.12.11 +_bk;t=1781335815566 +_bk;t=1781335815566 +_bk;t=1781335815566--- :xcode: Activating Xcode 26.0... +_bk;t=1781335815566 +_bk;t=1781335815566 +_bk;t=1781335815566/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode26.0.app +_bk;t=1781335815595/usr/bin/sudo /usr/bin/xcodebuild -runFirstLaunch +_bk;t=1781335815821 +_bk;t=1781335815821 +_bk;t=1781335815821--- :bazel: Using latest Bazel release +_bk;t=1781335815821 +_bk;t=1781335815821 +_bk;t=1781335815821bazel --version +_bk;t=17813358163452026/06/13 09:30:16 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-darwin-arm64... +_bk;t=1781335816376 Downloading: 0 MB out of 57 MB (0%) Downloading: 0 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (2%) Downloading: 1 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (4%) Downloading: 2 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (7%) Downloading: 4 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (9%) Downloading: 5 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (11%) Downloading: 6 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (14%) Downloading: 8 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (16%) Downloading: 9 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (18%) Downloading: 10 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (21%) Downloading: 12 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (23%) Downloading: 13 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (25%) Downloading: 14 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (28%) Downloading: 16 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (30%) Downloading: 17 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (32%) Downloading: 19 MB out of 57 MB (33%) Downloading: 19 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (35%) Downloading: 20 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (37%) Downloading: 21 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (40%) Downloading: 23 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (42%) Downloading: 24 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (44%) Downloading: 25 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (47%) Downloading: 27 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (49%) Downloading: 28 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (51%) Downloading: 29 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (54%) Downloading: 31 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (56%) Downloading: 32 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (58%) Downloading: 33 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (61%) Downloading: 35 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (63%) Downloading: 36 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (65%) Downloading: 38 MB out of 57 MB (66%) Downloading: 38 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (68%) Downloading: 39 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (70%) Downloading: 40 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (73%) Downloading: 42 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (75%) Downloading: 43 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (77%) Downloading: 44 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (80%) Downloading: 46 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (82%) Downloading: 47 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (84%) Downloading: 48 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (87%) Downloading: 50 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (89%) Downloading: 51 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (91%) Downloading: 53 MB out of 57 MB (92%) Downloading: 53 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (94%) Downloading: 54 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (96%) Downloading: 55 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (98%) Downloading: 57 MB out of 57 MB (98%) Downloading: 57 MB out of 57 MB (99%) Downloading: 57 MB out of 57 MB (100%) +_bk;t=1781335817100bazel 9.1.1 +_bk;t=1781335817102bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base +_bk;t=1781335817642Extracting Bazel installation... +_bk;t=1781335818554Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335818554WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335820795WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335820795INFO: Invocation ID: 4aeeb232-ba69-43e6-a945-33387b5eb80f +_bk;t=1781335820822 +_bk;t=1781335820822 +_bk;t=1781335820822--- :information_source: Bazel Info +_bk;t=1781335820822 +_bk;t=1781335820822 +_bk;t=1781335820822bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc version +_bk;t=1781335821339WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: +_bk;t=1781335821339/etc/bazel.bazelrc +_bk;t=1781335821383WARNING: Running Bazel server needs to be killed, because the following startup options are different: +_bk;t=1781335821383 - Only in old server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true +_bk;t=1781335821383 - Only in new server: +_bk;t=1781335821724Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335821724WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335822609WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335822609INFO: Invocation ID: 2cc0b3c3-eeda-4feb-b8a5-5fda6863f5a9 +_bk;t=1781335822646Bazelisk version: v1.26.0 +_bk;t=1781335822646Build label: 9.1.1 +_bk;t=1781335822646Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer +_bk;t=1781335822646Build time: Wed Jun 03 15:47:00 2026 (1780501620) +_bk;t=1781335822646Build timestamp: 1780501620 +_bk;t=1781335822646Build timestamp as int: 1780501620 +_bk;t=1781335822646 +_bk;t=1781335822646bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc info +_bk;t=1781335823156WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: +_bk;t=1781335823156/etc/bazel.bazelrc +_bk;t=1781335823217WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335823217INFO: Invocation ID: 7286c3cf-527e-4239-87d7-3a280bc4802c +_bk;t=1781335823284WARNING: /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335824205WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335824205WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335824205WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335824205WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335824547bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335824548bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335824548bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335824548character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335824548command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/command.log +_bk;t=1781335824548committed-heap-size: 100MB +_bk;t=1781335824548execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main +_bk;t=1781335824549gc-count: 15 +_bk;t=1781335824550gc-time: 34ms +_bk;t=1781335824550install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10 +_bk;t=1781335824551java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10/embedded_tools/jdk +_bk;t=1781335824551java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335824551java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335824551local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335824551max-heap-size: 8589MB +_bk;t=1781335824551output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f +_bk;t=1781335824552output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out +_bk;t=1781335824552package_path: %workspace% +_bk;t=1781335824552release: release 9.1.1 +_bk;t=1781335824552repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335824553server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-093021.24179 +_bk;t=1781335824553server_pid: 24179 +_bk;t=1781335824553used-heap-size: 38MB +_bk;t=1781335824553workspace: /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python +_bk;t=1781335824560 +_bk;t=1781335824562 +_bk;t=1781335824562--- :information_source: Environment Variables +_bk;t=1781335824562 +_bk;t=1781335824562 +_bk;t=1781335824562BUILDKITE_CONFIG_PATH=(/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg) +_bk;t=1781335824562BUILDKITE_AGENT_META_DATA_OS_VERSION=(15.7.2) +_bk;t=1781335824562BUILDKITE_SIGNAL_GRACE_PERIOD_SECONDS=(9) +_bk;t=1781335824562BUILDKITE_BUILD_CREATOR=(Richard Levasseur) +_bk;t=1781335824562BUILDKITE_LAST_HOOK_EXIT_STATUS=(0) +_bk;t=1781335824562BUILDKITE_AGENT_EXPERIMENT=() +_bk;t=1781335824562SSL_CERT_FILE=(/opt/homebrew/lib/python3.12/site-packages/certifi/cacert.pem) +_bk;t=1781335824562BUILDKITE_AGENT_PID=(24101) +_bk;t=1781335824562ANDROID_HOME=(/Users/buildkite/android-sdk-macosx) +_bk;t=1781335824562TERM=(xterm-256color) +_bk;t=1781335824562SHELL=(/bin/zsh) +_bk;t=1781335824562BUILDKITE_RETRY_COUNT=(0) +_bk;t=1781335824562BUILDKITE_NO_HTTP2=(false) +_bk;t=1781335824562BUILDKITE_ENV_FILE=(/tmp/job-env-019ebfe3-63af-4914-8a69-2794cb5a8d961161276127) +_bk;t=1781335824562BUILDKITE_ENV_JSON_FILE=(/tmp/job-env-json-019ebfe3-63af-4914-8a69-2794cb5a8d964190198327) +_bk;t=1781335824562BUILDKITE_ARTIFACT_PATHS=() +_bk;t=1781335824562GOOGLE_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) +_bk;t=1781335824562BUILDKITE_GIT_FETCH_FLAGS=(-v --prune) +_bk;t=1781335824562BUILDKITE_CANCEL_GRACE_PERIOD=(10) +_bk;t=1781335824562BUILDKITE_SOURCE=(webhook) +_bk;t=1781335824562BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96) +_bk;t=1781335824562BUILDKITE_AGENT_DEBUG=(false) +_bk;t=1781335824562BUILDKITE_GIT_CLONE_MIRROR_FLAGS=(-v --bare) +_bk;t=1781335824563BUILDKITE_SCRIPT_PATH=(which python3 +_bk;t=1781335824563python3 -V +_bk;t=1781335824563curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335824563python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) +_bk;t=1781335824563BUILDKITE_ORGANIZATION_SLUG=(bazel) +_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_MACHINE_TYPE=(applevirtualmachine1) +_bk;t=1781335824563BUILDKITE_LOCAL_HOOKS_ENABLED=(true) +_bk;t=1781335824563BUILDKITE_COMMIT_RESOLVED=(true) +_bk;t=1781335824563BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) +_bk;t=1781335824563BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) +_bk;t=1781335824563GIT_TERMINAL_PROMPT=(0) +_bk;t=1781335824563BUILDKITE_SOCKETS_PATH=(/Users/buildkite/.buildkite-agent/sockets) +_bk;t=1781335824563USER=(buildkite) +_bk;t=1781335824563BUILDKITE_COMPUTE_TYPE=(self-hosted) +_bk;t=1781335824563SUDO_USER=(root) +_bk;t=1781335824563BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) +_bk;t=1781335824563SUDO_UID=(0) +_bk;t=1781335824563BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) +_bk;t=1781335824563BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335824563BUILDKITE_PROJECT_PROVIDER=(github) +_bk;t=1781335824563BUILDKITE_STEP_KEY=() +_bk;t=1781335824563BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) +_bk;t=1781335824563BUILDKITE_PLUGINS_ENABLED=(true) +_bk;t=1781335824563BUILDKITE_GS_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) +_bk;t=1781335824563BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) +_bk;t=1781335824563BUILDKITE_AGENT_DEBUG_HTTP=(false) +_bk;t=1781335824563BUILDKITE_PULL_REQUEST=(3812) +_bk;t=1781335824563BUILDKITE_GIT_MIRRORS_LOCK_TIMEOUT=(300) +_bk;t=1781335824563BUILDKITE_AGENT_ENDPOINT=(https://agent.buildkite.com/v3) +_bk;t=1781335824563BUILDKITE_HOOKS_PATH=(/opt/homebrew/etc/buildkite-agent/hooks) +_bk;t=1781335824563BUILDKITE_GIT_CLEAN_FLAGS=(-ffxdq) +_bk;t=1781335824563BUILDKITE_GITHUB_ACTION=(synchronize) +_bk;t=1781335824563BUILDKITE_REQUEST_HEADER_BUILDKITE_PIPELINES_SHARD_ID=(011) +_bk;t=1781335824563BUILDKITE_GITHUB_EVENT=(pull_request) +_bk;t=1781335824563BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) +_bk;t=1781335824563PATH=(/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin) +_bk;t=1781335824563MAIL=(/var/mail/root) +_bk;t=1781335824563BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() +_bk;t=1781335824563BUILDKITE_REDACTED_VARS=(*_PASSWORD,*_SECRET,*_TOKEN,*_PRIVATE_KEY,*_ACCESS_KEY,*_SECRET_KEY,*_CONNECTION_STRING) +_bk;t=1781335824563BUILDKITE_GIT_MIRRORS_PATH=(/usr/local/var/bazelbuild) +_bk;t=1781335824563BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) +_bk;t=1781335824563COURSIER_OPTS=(-Djava.net.preferIPv6Addresses=true) +_bk;t=1781335824563BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) +_bk;t=1781335824563PWD=(/Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python) +_bk;t=1781335824563BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) +_bk;t=1781335824563BUILDKITE_SHELL=(/bin/bash -e -c) +_bk;t=1781335824563BUILDKITE_PIPELINE_PROVIDER=(github) +_bk;t=1781335824563BUILDKITE_GIT_SUBMODULES=(true) +_bk;t=1781335824563BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() +_bk;t=1781335824563BUILDKITE_GIT_MIRRORS_SKIP_UPDATE=(false) +_bk;t=1781335824563BUILDKITE_BUILD_NUMBER=(15722) +_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_QUEUE=(macos_arm64) +_bk;t=1781335824563BAZEL_BUCKET_TYPE=(untrusted) +_bk;t=1781335824563BUILDKITE_SSH_KEYSCAN=(true) +_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_KIND=(worker) +_bk;t=1781335824563BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() +_bk;t=1781335824563BUILDKITE_PLUGINS_PATH=(/usr/local/var/buildkite-agent/plugins) +_bk;t=1781335824563BUILDKITE_LABEL=(tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64) +_bk;t=1781335824563BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) +_bk;t=1781335824563BUILDKITE_PULL_REQUEST_LABELS=() +_bk;t=1781335824563BUILDKITE_JOB_ID=(019ebfe3-63af-4914-8a69-2794cb5a8d96) +_bk;t=1781335824563BUILDKITE_PIPELINE_SLUG=(rules-python-python) +_bk;t=1781335824563BUILDKITE_AGENT_ID=(019ebfd3-b177-48b4-9bdd-8d03617df3b0) +_bk;t=1781335824563JAVA_TOOL_OPTIONS=(-Djava.net.preferIPv6Addresses=true) +_bk;t=1781335824563SHLVL=(1) +_bk;t=1781335824563SUDO_COMMAND=(/usr/bin/env GOOGLE_APPLICATION_CREDENTIALS=/opt/homebrew/etc/buildkite-agent/bazel.json PATH=/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin BUILDKITE_AGENT_DISCONNECT_AFTER_JOB=true BUILDKITE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT=82800 BUILDKITE_AGENT_NAME=bk-macos-arm64-cv10 BUILDKITE_AGENT_PRIORITY=0 BUILDKITE_AGENT_TOKEN=f411f9d8498d4f9762e554835e81a24e2cd9a15fa6740b1276 BUILDKITE_AGENT_TAGS=queue=macos_arm64,kind=worker,os=macos,os-version=15.7.2,machine-type=applevirtualmachine1 BUILDKITE_BUILD_PATH=/Users/buildkite/builds BUILDKITE_CONFIG_PATH=/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg BUILDKITE_GIT_MIRRORS_PATH=/usr/local/var/bazelbuild BUILDKITE_GIT_CLONE_MIRROR_FLAGS=-v --bare BAZEL_BUCKET_TYPE=untrusted /opt/homebrew/bin/buildkite-agent start) +_bk;t=1781335824563HOME=(/Users/buildkite) +_bk;t=1781335824563BUILDKITE_TRIGGERED_FROM_BUILD_ID=() +_bk;t=1781335824563BUILDKITE_REPO_MIRROR=(/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git) +_bk;t=1781335824563BUILDKITE_AGENT_JOB_API_SOCKET=(/Users/buildkite/.buildkite-agent/sockets/job-api/24113-34771.sock) +_bk;t=1781335824563BUILDKITE_COMMAND=(which python3 +_bk;t=1781335824563python3 -V +_bk;t=1781335824563curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py +_bk;t=1781335824563python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) +_bk;t=1781335824563BUILDKITE_BIN_PATH=(/opt/homebrew/bin) +_bk;t=1781335824563CI=(true) +_bk;t=1781335824563BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) +_bk;t=1781335824563BUILDKITE_TRACE_CONTEXT_ENCODING=(gob) +_bk;t=1781335824563BUILDKITE=(true) +_bk;t=1781335824563BUILDKITE_STEP_ID=(019ebfe3-628f-4a0a-859c-67ebc1ae36eb) +_bk;t=1781335824563LOGNAME=(buildkite) +_bk;t=1781335824563BUILDKITE_ADDITIONAL_HOOKS_PATHS=() +_bk;t=1781335824563BUILDKITE_TAG=() +_bk;t=1781335824563BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) +_bk;t=1781335824563BUILDKITE_TIMEOUT=(480) +_bk;t=1781335824563BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) +_bk;t=1781335824563BUILDKITE_AGENT_DISABLE_WARNINGS_FOR=() +_bk;t=1781335824563BUILDKITE_REBUILT_FROM_BUILD_ID=() +_bk;t=1781335824563BUILDKITE_BUILD_CHECKOUT_PATH=(/Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python) +_bk;t=1781335824563BUILDKITE_AGENT_NAME=(bk-macos-arm64-cv10) +_bk;t=1781335824563BUILDKITE_COMMAND_EVAL=(true) +_bk;t=1781335824563BUILDKITE_AGENT_JOB_API_TOKEN=([REDACTED]) +_bk;t=1781335824563BUILDKITE_PLUGIN_VALIDATION=(false) +_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_OS=(macos) +_bk;t=1781335824563ANDROID_NDK_HOME=(/Users/buildkite/android-ndk-r15c) +_bk;t=1781335824563SUDO_GID=(0) +_bk;t=1781335824563BUILDKITE_STRICT_SINGLE_HOOKS=(false) +_bk;t=1781335824563BUILDKITE_GIT_CHECKOUT_FLAGS=(-f) +_bk;t=1781335824563BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) +_bk;t=1781335824563BUILDKITE_PIPELINE_NAME=(rules_python :python:) +_bk;t=1781335824563BUILDKITE_GIT_CLONE_FLAGS=(-v) +_bk;t=1781335824563BUILDKITE_BUILD_PATH=(/Users/buildkite/builds) +_bk;t=1781335824563BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) +_bk;t=1781335824563BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) +_bk;t=1781335824563_=(/opt/homebrew/bin/python3) +_bk;t=1781335824563__CF_USER_TEXT_ENCODING=(0x1F6:0:0) +_bk;t=1781335824563LC_CTYPE=(C.UTF-8) +_bk;t=1781335824563BAZELCI_TASK=(integration_test_bazelinbazel_macos) +_bk;t=1781335824563BAZELISK_USER_AGENT=(Bazelisk/BazelCI) +_bk;t=1781335824563OUTPUT_BASE=(/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f) +_bk;t=1781335824563 +_bk;t=1781335824563 +_bk;t=1781335824563--- :dart: Calculating targets +_bk;t=1781335824563 +_bk;t=1781335824563 +_bk;t=1781335824563 +_bk;t=1781335824563 +_bk;t=1781335824563--- :bazel: Computing flags for build step +_bk;t=1781335824563 +_bk;t=1781335824563 +_bk;t=1781335824661Adding to platform cache key: b'bazel' +_bk;t=1781335824661Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335824661Adding to platform cache key: b'macos_arm64' +_bk;t=1781335824661Adding to platform cache key: b'15.7.2\n' +_bk;t=1781335824661Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' +_bk;t=1781335824661Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' +_bk;t=1781335824661 +_bk;t=1781335824661 +_bk;t=1781335824661+++ :bazel: Build (9.1.1) +_bk;t=1781335824661 +_bk;t=1781335824661 +_bk;t=1781335824661bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp10egavvm/build_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE -- //tests/integration:subset +_bk;t=1781335825219WARNING: Running Bazel server needs to be killed, because the following startup options are different: +_bk;t=1781335825219 - Only in old server: +_bk;t=1781335825219 - Only in new server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true +_bk;t=1781335825562Starting local Bazel server (9.1.1) and connecting to it... +_bk;t=1781335825562WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335826688(09:30:26) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335826690(09:30:26) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335826690(09:30:26) INFO: Invocation ID: 22d832a8-520e-4fbb-8454-8ca1332aede4 +_bk;t=1781335826690(09:30:26) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true +_bk;t=1781335826690(09:30:26) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks +_bk;t=1781335826690(09:30:26) INFO: Options provided by the client: +_bk;t=1781335826690 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /private/etc/bazel.bazelrc: +_bk;t=1781335826690 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses +_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc.deleted_packages: +_bk;t=1781335826690 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: +_bk;t=1781335826690 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: +_bk;t=1781335826690 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335826690(09:30:26) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335826720(09:30:26) INFO: Current date is 2026-06-13 +_bk;t=1781335826720(09:30:26) +_bk;t=1781335826721 _bk;t=1781335826721(09:30:26) Computing main repo mapping: +_bk;t=1781335826742 _bk;t=1781335826742(09:30:26) WARNING: /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. +_bk;t=1781335826742(09:30:26) Computing main repo mapping: +_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826891(09:30:26) Computing main repo mapping: +_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826891(09:30:26) Computing main repo mapping: +_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826891(09:30:26) Computing main repo mapping: +_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335826891(09:30:26) Computing main repo mapping: +_bk;t=1781335827548 _bk;t=1781335827548(09:30:27) Loading: +_bk;t=1781335827555 _bk;t=1781335827555(09:30:27) Loading: 1 packages loaded +_bk;t=1781335828043 _bk;t=1781335828043(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335828053 _bk;t=1781335828053(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335828053 +_bk;t=1781335828067 _bk;t=1781335828067 _bk;t=1781335828067(09:30:28) INFO: Found 0 targets... +_bk;t=1781335828067(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335828067 +_bk;t=1781335828082 _bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: Elapsed time: 2.892s, Critical Path: 0.01s +_bk;t=1781335828082(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335828082 +_bk;t=1781335828082 _bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: 1 process: 1 internal. +_bk;t=1781335828082(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) +_bk;t=1781335828082 +_bk;t=1781335828082 _bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: Build completed successfully, 1 total action +_bk;t=1781335828082(09:30:28) INFO: +_bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: +_bk;t=1781335828120 _bk;t=1781335828120(09:30:28) INFO: Build Event Protocol files produced successfully. +_bk;t=1781335828120curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-aarch64-apple-darwin -o /tmp/tmp10egavvm/bazelci-agent +_bk;t=1781335828127 +_bk;t=1781335828127 +_bk;t=1781335828127--- :bazel: Computing flags for test step +_bk;t=1781335828127 +_bk;t=1781335828127 +_bk;t=1781335828196/tmp/tmp10egavvm/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp10egavvm/test_bep.json +_bk;t=1781335828232Adding to platform cache key: b'bazel' +_bk;t=1781335828232Adding to platform cache key: b'cache-poisoning-20250808' +_bk;t=1781335828232Adding to platform cache key: b'macos_arm64' +_bk;t=1781335828232Adding to platform cache key: b'15.7.2\n' +_bk;t=1781335828232Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' +_bk;t=1781335828232Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' +_bk;t=1781335828232 +_bk;t=1781335828232 +_bk;t=1781335828232+++ :bazel: Test (9.1.1) +_bk;t=1781335828232 +_bk;t=1781335828232 +_bk;t=1781335828232bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=3 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp10egavvm/test_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE --sandbox_writable_path=/Users/buildkite/Library/Caches/bazelisk -- //tests/integration:subset +_bk;t=1781335828828(09:30:28) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335828828(09:30:28) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead +_bk;t=1781335828828(09:30:28) INFO: Invocation ID: 1a06c66d-dc55-48e9-be53-31995be5baeb +_bk;t=1781335828828(09:30:28) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true +_bk;t=1781335828828(09:30:28) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks +_bk;t=1781335828828(09:30:28) INFO: Options provided by the client: +_bk;t=1781335828828 Inherited 'common' options: --isatty=1 --terminal_columns=160 +_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /private/etc/bazel.bazelrc: +_bk;t=1781335828828 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses +_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc.deleted_packages: +_bk;t=1781335828828 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data +_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: +_bk;t=1781335828828 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export +_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: +_bk;t=1781335828828 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update +_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: +_bk;t=1781335828828 'test' options: --test_output=errors +_bk;t=1781335828828(09:30:28) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare +_bk;t=1781335828856(09:30:28) INFO: Current date is 2026-06-13 +_bk;t=1781335828856(09:30:28) +_bk;t=1781335828856 _bk;t=1781335828856(09:30:28) Computing main repo mapping: +_bk;t=1781335828905 _bk;t=1781335828905(09:30:28) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335828905(09:30:28) Computing main repo mapping: +_bk;t=1781335828906 _bk;t=1781335828906(09:30:28) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335828906(09:30:28) Computing main repo mapping: +_bk;t=1781335828906 _bk;t=1781335828906(09:30:28) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335828906(09:30:28) Computing main repo mapping: +_bk;t=1781335828906 _bk;t=1781335828906(09:30:28) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off +_bk;t=1781335828906(09:30:28) Computing main repo mapping: +_bk;t=1781335828965 _bk;t=1781335828965(09:30:28) Loading: +_bk;t=1781335828967 _bk;t=1781335828967(09:30:28) Loading: 0 packages loaded +_bk;t=1781335828995 _bk;t=1781335828995(09:30:28) Analyzing: 3 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335828997 _bk;t=1781335828997(09:30:28) Analyzing: 3 targets (0 packages loaded, 0 targets configured) +_bk;t=1781335828997 +_bk;t=1781335834001 _bk;t=1781335834001 _bk;t=1781335834001(09:30:33) Analyzing: 3 targets (114 packages loaded, 12721 targets configured) +_bk;t=1781335834001[13 / 13] no actions running +_bk;t=1781335834001 Fetching repository @@+python+python_3_11_15_aarch64-apple-darwin; starting +_bk;t=1781335834001 Fetching repository @@rules_cc++cc_configure_extension+local_config_cc; starting +_bk;t=1781335834001 Fetching module extension @@//python/extensions:pip.bzl%pip; Fetching package URLs from PyPI index +_bk;t=1781335834001 Fetching ...nal/+python+python_3_11_15_aarch64-apple-darwin; Extracting cpython-3.11.15_20260414-aarch64-apple-darwin-install_only.tar.gz +_bk;t=1781335834001 Fetching https://pypi.org/simple/macholib/ +_bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874(09:30:40) Analyzing: 3 targets (124 packages loaded, 15676 targets configured) +_bk;t=1781335840874 currently loading: @@rules_cc++cc_configure_extension+local_config_cc// +_bk;t=1781335840874[13 / 13] no actions running +_bk;t=1781335844187 _bk;t=1781335844187 _bk;t=1781335844187 _bk;t=1781335844187(09:30:44) INFO: Analyzed 3 targets (132 packages loaded, 15716 targets configured). +_bk;t=1781335844187(09:30:44) [13 / 13] no actions running +_bk;t=1781335853926 _bk;t=1781335853926(09:30:53) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 8s local, remote-cache +_bk;t=1781335858934 _bk;t=1781335858934(09:30:58) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 13s local, remote-cache +_bk;t=1781335863940 _bk;t=1781335863940(09:31:03) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache +_bk;t=1781335867602 _bk;t=1781335867602(09:31:07) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) +_bk;t=1781335867602(09:31:07) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 22s local, remote-cache +_bk;t=1781335868812buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=17813358688502026-06-13 09:31:08 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" +_bk;t=17813358688502026-06-13 09:31:08 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration +_bk;t=17813358688502026-06-13 09:31:08 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358689642026-06-13 09:31:08 INFO  Uploading 019ebfe4-6b1a-4713-b0f8-e87b79f28b73 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) +_bk;t=17813358695602026-06-13 09:31:09 INFO  Artifact uploads completed successfully +_bk;t=1781335873266 _bk;t=1781335873266(09:31:13) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 28s local, remote-cache +_bk;t=1781335873880 _bk;t=1781335873880(09:31:13) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) +_bk;t=1781335873880(09:31:13) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 28s local, remote-cache +_bk;t=1781335874875buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=17813358749082026-06-13 09:31:14 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" +_bk;t=17813358749082026-06-13 09:31:14 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration +_bk;t=17813358749082026-06-13 09:31:14 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358750152026-06-13 09:31:15 INFO  Uploading 019ebfe4-82b8-4cff-8645-48c520943d13 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) +_bk;t=17813358755802026-06-13 09:31:15 INFO  Artifact uploads completed successfully +_bk;t=1781335878972 _bk;t=1781335878972(09:31:18) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 33s local, remote-cache +_bk;t=1781335881977 _bk;t=1781335881977(09:31:21) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) +_bk;t=1781335881977(09:31:21) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 36s local, remote-cache +_bk;t=1781335881986 _bk;t=1781335881986 +_bk;t=1781335881986FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335881986 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335881986 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335881986 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335881986(09:31:21) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335881986 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 36s local, remote-cache +_bk;t=1781335881994 _bk;t=1781335881994 _bk;t=1781335881994(09:31:21) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335881994==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=17813358819942026/06/13 07:30:45 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-darwin-arm64... +_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335881994Extracting Bazel installation... +_bk;t=1781335881994Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335881994WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335881994bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335881994bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335881994bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335881994character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335881994command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/command.log +_bk;t=1781335881994committed-heap-size: 75MB +_bk;t=1781335881994execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main +_bk;t=1781335881994gc-count: 16 +_bk;t=1781335881994gc-time: 36ms +_bk;t=1781335881994install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 +_bk;t=1781335881994java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk +_bk;t=1781335881994java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335881994java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335881994local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335881994max-heap-size: 8589MB +_bk;t=1781335881994output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143 +_bk;t=1781335881994output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out +_bk;t=1781335881994package_path: %workspace% +_bk;t=1781335881994release: release 9.1.0 +_bk;t=1781335881994repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335881994server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-073049.24716 +_bk;t=1781335881994server_pid: 24716 +_bk;t=1781335881994used-heap-size: 24MB +_bk;t=1781335881994workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335881994Computing main repo mapping: +_bk;t=1781335881994Loading: +_bk;t=1781335881994Loading: 0 packages loaded +_bk;t=1781335881994Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335881994Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335881994 +_bk;t=1781335881994ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335881994INFO: Elapsed time: 0.696s, Critical Path: 0.02s +_bk;t=1781335881994INFO: 1 process: 1 internal. +_bk;t=1781335881994ERROR: Build did NOT complete successfully +_bk;t=1781335881994FAILED: +_bk;t=1781335881994ERROR: No test targets were found, yet testing was requested +_bk;t=1781335881994================================================================================ +_bk;t=1781335881994==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335881994Extracting Bazel installation... +_bk;t=1781335881994Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335881994WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335881994bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335881994bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335881994bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335881994character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335881994command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/command.log +_bk;t=1781335881994committed-heap-size: 75MB +_bk;t=1781335881994execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main +_bk;t=1781335881994gc-count: 16 +_bk;t=1781335881994gc-time: 39ms +_bk;t=1781335881994install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 +_bk;t=1781335881994java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk +_bk;t=1781335881994java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335881994java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335881994local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335881994max-heap-size: 8589MB +_bk;t=1781335881994output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143 +_bk;t=1781335881994output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out +_bk;t=1781335881994package_path: %workspace% +_bk;t=1781335881994release: release 9.1.0 +_bk;t=1781335881994repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335881994server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-073110.24845 +_bk;t=1781335881994server_pid: 24845 +_bk;t=1781335881994used-heap-size: 24MB +_bk;t=1781335881994workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335881995Computing main repo mapping: +_bk;t=1781335881995Loading: +_bk;t=1781335881995Loading: 0 packages loaded +_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335881995 +_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335881995INFO: Elapsed time: 0.705s, Critical Path: 0.02s +_bk;t=1781335881995INFO: 1 process: 1 internal. +_bk;t=1781335881995ERROR: Build did NOT complete successfully +_bk;t=1781335881995FAILED: +_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested +_bk;t=1781335881995================================================================================ +_bk;t=1781335881995==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: +_bk;t=1781335881995$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335881995Extracting Bazel installation... +_bk;t=1781335881995Starting local Bazel server (9.1.0) and connecting to it... +_bk;t=1781335881995WARNING: ignoring JAVA_TOOL_OPTIONS in environment. +_bk;t=1781335881995bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335881995bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin +_bk;t=1781335881995bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs +_bk;t=1781335881995character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 +_bk;t=1781335881995command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/command.log +_bk;t=1781335881995committed-heap-size: 75MB +_bk;t=1781335881995execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main +_bk;t=1781335881995gc-count: 15 +_bk;t=1781335881995gc-time: 31ms +_bk;t=1781335881995install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 +_bk;t=1781335881995java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk +_bk;t=1781335881995java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. +_bk;t=1781335881995java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. +_bk;t=1781335881995local_resources: RAM=32768MB, CPU=6.0 +_bk;t=1781335881995max-heap-size: 8589MB +_bk;t=1781335881995output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143 +_bk;t=1781335881995output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out +_bk;t=1781335881995package_path: %workspace% +_bk;t=1781335881995release: release 9.1.0 +_bk;t=1781335881995repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 +_bk;t=1781335881995server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-073116.24970 +_bk;t=1781335881995server_pid: 24970 +_bk;t=1781335881995used-heap-size: 24MB +_bk;t=1781335881995workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile +_bk;t=1781335881995$TEST_TMPDIR defined, some defaults will be overridden +_bk;t=1781335881995Computing main repo mapping: +_bk;t=1781335881995Loading: +_bk;t=1781335881995Loading: 0 packages loaded +_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) +_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) +_bk;t=1781335881995 +_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335881995INFO: Elapsed time: 0.704s, Critical Path: 0.02s +_bk;t=1781335881995INFO: 1 process: 1 internal. +_bk;t=1781335881995ERROR: Build did NOT complete successfully +_bk;t=1781335881995FAILED: +_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested +_bk;t=1781335881995================================================================================ +_bk;t=1781335881995(09:31:21) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335881995 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 36s local, remote-cache +_bk;t=1781335882969buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=17813358830062026-06-13 09:31:23 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" +_bk;t=17813358830062026-06-13 09:31:23 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration +_bk;t=17813358830062026-06-13 09:31:23 INFO  Creating (0-1)/1 artifacts +_bk;t=17813358831222026-06-13 09:31:23 INFO  Uploading 019ebfe4-a25b-409d-b1f1-660ed06789f7 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) +_bk;t=17813358836952026-06-13 09:31:23 INFO  Artifact uploads completed successfully +_bk;t=1781335888991 _bk;t=1781335888991 _bk;t=1781335888991(09:31:28) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335888991 Testing //tests/integration:uv_lock_test_bazel_self; 6s local, remote-cache +_bk;t=1781335894002 _bk;t=1781335894002 _bk;t=1781335894002(09:31:34) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335894002 Testing //tests/integration:uv_lock_test_bazel_self; 11s local, remote-cache +_bk;t=1781335899004 _bk;t=1781335899004 _bk;t=1781335899004(09:31:39) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335899004 Testing //tests/integration:uv_lock_test_bazel_self; 16s local, remote-cache +_bk;t=1781335902431 _bk;t=1781335902431 _bk;t=1781335902431(09:31:42) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution +_bk;t=1781335902431(09:31:42) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 +_bk;t=1781335902431 Testing //tests/integration:uv_lock_test_bazel_self; 20s local, remote-cache +_bk;t=1781335903932 _bk;t=1781335903932 _bk;t=1781335903932(09:31:43) INFO: Found 3 test targets... +_bk;t=1781335903932(09:31:43) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self +_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: Elapsed time: 75.167s, Critical Path: 37.06s +_bk;t=1781335903968(09:31:43) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self +_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: 32 processes: 3 remote cache hit, 28 internal, 8 local. +_bk;t=1781335903968(09:31:43) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self +_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: Build completed, 1 test FAILED, 32 total actions +_bk;t=1781335903968(09:31:43) INFO: +_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: +_bk;t=1781335903971 _bk;t=1781335903971//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 12.2s +_bk;t=1781335903972(09:31:43) INFO: +_bk;t=1781335903972 _bk;t=1781335903972//tests/integration:uv_lock_test_bazel_self PASSED in 20.1s +_bk;t=1781335903972(09:31:43) INFO: +_bk;t=1781335903972 _bk;t=1781335903972//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 21.6s +_bk;t=1781335903972 Stats over 3 runs: max = 21.6s, min = 5.4s, avg = 11.4s, dev = 7.2s +_bk;t=1781335903972(09:31:43) INFO: +_bk;t=1781335903972 _bk;t=1781335903972 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log +_bk;t=1781335903973(09:31:43) INFO: +_bk;t=1781335903973 _bk;t=1781335903973 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log +_bk;t=1781335903973(09:31:43) INFO: +_bk;t=1781335903973 _bk;t=1781335903973 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log +_bk;t=1781335903973(09:31:43) INFO: +_bk;t=1781335903973 _bk;t=1781335903973 +_bk;t=1781335903973(09:31:43) INFO: +_bk;t=1781335903973 _bk;t=1781335903973Executed 2 out of 3 tests: 2 tests pass and 1 fails locally. +_bk;t=1781335903973(09:31:43) INFO: +_bk;t=1781335903974 _bk;t=1781335903974There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. +_bk;t=1781335903974(09:31:43) INFO: +_bk;t=1781335904000 _bk;t=1781335904000(09:31:44) INFO: Build Event Protocol files produced successfully. +_bk;t=1781335904000bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base +_bk;t=1781335904604WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead +_bk;t=1781335904604INFO: Invocation ID: 9350ba90-5e28-44a8-8643-8bf392ffa60c +_bk;t=1781335904628 +_bk;t=1781335904628 +_bk;t=1781335904628--- :gcloud: Uploading log file: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log +_bk;t=1781335904628 +_bk;t=1781335904628 +_bk;t=1781335904628buildkite-agent artifact upload /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log +_bk;t=17813359046582026-06-13 09:31:44 INFO  Found 1 files that match "/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log" +_bk;t=17813359046592026-06-13 09:31:44 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration +_bk;t=17813359046592026-06-13 09:31:44 INFO  Creating (0-1)/1 artifacts +_bk;t=17813359047742026-06-13 09:31:44 INFO  Uploading 019ebfe4-f6fa-43a4-914e-b946db6f4e88 Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log (120 KiB) +_bk;t=1781335904879buildkite-agent artifact upload /tmp/tmp10egavvm/test_bep.json +_bk;t=17813359049422026-06-13 09:31:44 INFO  Found 1 files that match "/tmp/tmp10egavvm/test_bep.json" +_bk;t=17813359049422026-06-13 09:31:44 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration +_bk;t=17813359049422026-06-13 09:31:44 INFO  Creating (0-1)/1 artifacts +_bk;t=17813359050442026-06-13 09:31:45 INFO  Uploading 019ebfe4-f809-43ff-a0ac-efb1302b5c43 tmp/tmp10egavvm/test_bep.json (305 KiB) +_bk;t=17813359055122026-06-13 09:31:45 INFO  Artifact uploads completed successfully +_bk;t=17813359059012026-06-13 09:31:45 INFO  Artifact uploads completed successfully +_bk;t=1781335905908bazel test failed with exit code 3 +_bk;t=1781335905953^^^ +++ +_bk;t=1781335905953🚨 Error: The command exited with status 3 +_bk;t=1781335905953^^^ +++ +_bk;t=1781335905954user command error: exit status 3 diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md new file mode 100644 index 0000000000..b6c72b20ca --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md @@ -0,0 +1,15 @@ +# 🚨 CI Failure Analysis Report: Default: MacOS, Bazel 8.x on :darwin: macOS arm64 + +## 📁 CI Log Path +`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log` + +## 🔥 Extracted Failure Snippets +```text +_bk;t=1781335354023Traceback (most recent call last): +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log`. +2. **Reproduce Locally**: Run `./replicate_ci "Default: MacOS, Bazel 8.x on :darwin: macOS arm64"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md new file mode 100644 index 0000000000..9a7300a29c --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md @@ -0,0 +1,19 @@ +# 🚨 CI Failure Analysis Report: Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS + +## 📁 CI Log Path +`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log` + +## 🔥 Extracted Failure Snippets +```text +_bk;t=1781335881315FAILED: //tests/toolchains/transitions:test_minor_versions (Summary) +_bk;t=1781335884977FAILED: //tests/toolchains/transitions:test_full_version (Summary) +_bk;t=1781335885519FAILED: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Summary) +_bk;t=1781335895361(07:31:35) INFO: Elapsed time: 65.045s, Critical Path: 10.77s +_bk;t=1781335896500bazel test failed with exit code 3 +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log`. +2. **Reproduce Locally**: Run `./replicate_ci "Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md new file mode 100644 index 0000000000..e22c586f13 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md @@ -0,0 +1,33 @@ +# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: Debian on :debian: Debian 11 Bullseye (OpenJDK 17, gcc 10.2.1) + +## 📁 CI Log Path +`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log` + +## 🔥 Extracted Failure Snippets +```text +_bk;t=1781335839968(07:30:39) INFO: Elapsed time: 8.078s, Critical Path: 0.53s +_bk;t=1781335859547FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335859549INFO: Elapsed time: 0.817s, Critical Path: 0.03s +_bk;t=1781335859549ERROR: Build did NOT complete successfully +_bk;t=1781335859549FAILED: +_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested +_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335859549INFO: Elapsed time: 0.845s, Critical Path: 0.02s +_bk;t=1781335859549ERROR: Build did NOT complete successfully +_bk;t=1781335859549FAILED: +_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested +_bk;t=1781335859550ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335859550INFO: Elapsed time: 0.862s, Critical Path: 0.03s +_bk;t=1781335859550ERROR: Build did NOT complete successfully +_bk;t=1781335859550FAILED: +_bk;t=1781335859550ERROR: No test targets were found, yet testing was requested +_bk;t=1781335944023(07:32:24) INFO: Elapsed time: 103.543s, Critical Path: 20.55s +_bk;t=1781335945162bazel test failed with exit code 3 +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log`. +2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: Debian on :debian: Debian 11 Bullseye (OpenJDK 17, gcc 10.2.1)"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md new file mode 100644 index 0000000000..a3b86dde09 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md @@ -0,0 +1,33 @@ +# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: Ubuntu on :ubuntu: Ubuntu 22.04 LTS + +## 📁 CI Log Path +`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log` + +## 🔥 Extracted Failure Snippets +```text +_bk;t=1781335835255(07:30:35) INFO: Elapsed time: 7.852s, Critical Path: 0.54s +_bk;t=1781335854466FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335854468ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335854469INFO: Elapsed time: 0.804s, Critical Path: 0.03s +_bk;t=1781335854469ERROR: Build did NOT complete successfully +_bk;t=1781335854469FAILED: +_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested +_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335854469INFO: Elapsed time: 0.872s, Critical Path: 0.03s +_bk;t=1781335854469ERROR: Build did NOT complete successfully +_bk;t=1781335854469FAILED: +_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested +_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335854469INFO: Elapsed time: 0.882s, Critical Path: 0.02s +_bk;t=1781335854469ERROR: Build did NOT complete successfully +_bk;t=1781335854469FAILED: +_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested +_bk;t=1781335934804(07:32:14) INFO: Elapsed time: 99.096s, Critical Path: 20.25s +_bk;t=1781335935695bazel test failed with exit code 3 +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log`. +2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: Ubuntu on :ubuntu: Ubuntu 22.04 LTS"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md new file mode 100644 index 0000000000..fc8da6c92f --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md @@ -0,0 +1,33 @@ +# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: Windows (subset) on :windows: Windows + +## 📁 CI Log Path +`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows_019ebfe3-63b0-4973-b6f3-2de99fee6dca.log` + +## 🔥 Extracted Failure Snippets +```text +_bk;t=1781335841820(07:30:41) INFO: Elapsed time: 1.875s, Critical Path: 0.03s +_bk;t=1781335879971FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335879971ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335879971INFO: Elapsed time: 1.167s, Critical Path: 0.03s +_bk;t=1781335879971ERROR: Build did NOT complete successfully +_bk;t=1781335879971FAILED: +_bk;t=1781335879971ERROR: No test targets were found, yet testing was requested +_bk;t=1781335879971ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335879971INFO: Elapsed time: 1.243s, Critical Path: 0.03s +_bk;t=1781335879971ERROR: Build did NOT complete successfully +_bk;t=1781335879971FAILED: +_bk;t=1781335879971ERROR: No test targets were found, yet testing was requested +_bk;t=1781335879972ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335879972INFO: Elapsed time: 1.270s, Critical Path: 0.03s +_bk;t=1781335879972ERROR: Build did NOT complete successfully +_bk;t=1781335879972FAILED: +_bk;t=1781335879972ERROR: No test targets were found, yet testing was requested +_bk;t=1781335879988(07:31:19) INFO: Elapsed time: 37.680s, Critical Path: 24.60s +_bk;t=1781335881170bazel test failed with exit code 3 +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows_019ebfe3-63b0-4973-b6f3-2de99fee6dca.log`. +2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: Windows (subset) on :windows: Windows"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md new file mode 100644 index 0000000000..d58de2d41f --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md @@ -0,0 +1,33 @@ +# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64 + +## 📁 CI Log Path +`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log` + +## 🔥 Extracted Failure Snippets +```text +_bk;t=1781335828082(09:30:28) INFO: Elapsed time: 2.892s, Critical Path: 0.01s +_bk;t=1781335881986FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) +_bk;t=1781335881994ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335881994INFO: Elapsed time: 0.696s, Critical Path: 0.02s +_bk;t=1781335881994ERROR: Build did NOT complete successfully +_bk;t=1781335881994FAILED: +_bk;t=1781335881994ERROR: No test targets were found, yet testing was requested +_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335881995INFO: Elapsed time: 0.705s, Critical Path: 0.02s +_bk;t=1781335881995ERROR: Build did NOT complete successfully +_bk;t=1781335881995FAILED: +_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested +_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. +_bk;t=1781335881995INFO: Elapsed time: 0.704s, Critical Path: 0.02s +_bk;t=1781335881995ERROR: Build did NOT complete successfully +_bk;t=1781335881995FAILED: +_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested +_bk;t=1781335903968(09:31:43) INFO: Elapsed time: 75.167s, Critical Path: 37.06s +_bk;t=1781335905908bazel test failed with exit code 3 +``` + +## 🛠️ Suggested Plan to Fix +1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log`. +2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64"` or the matching `bazel build/test` command locally. +3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. +4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 857a34fd38..6eb6a58b2e 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -4,7 +4,6 @@ import argparse import json import os -import re import subprocess import sys import time @@ -61,31 +60,6 @@ def get_buildkite_jobs(build_url): return [] -def download_buildkite_log(job, output_path): - log_url = job.get("log_url") - if not log_url: - jid = job.get("id") - log_url = f"https://buildkite.com/organizations/bazel/pipelines/rules-python-python/builds/15716/jobs/{jid}/download.txt" - - if not log_url.endswith("/download.txt") and "buildkite.com" in log_url: - log_url = re.sub(r"/log$", "/download.txt", log_url) - - req = urllib.request.Request(log_url, headers={"User-Agent": "ci-monitor"}) - try: - with urllib.request.urlopen(req) as resp: - content = resp.read() - with open(output_path, "wb") as f: - f.write(content) - return True - except Exception as e: - print(f"⚠️ Failed to download log from {log_url}: {e}", file=sys.stderr) - with open(output_path, "w") as f: - f.write( - f"Failed to download log from {log_url}: {e}\nRaw job metadata:\n{json.dumps(job, indent=2)}" - ) - return False - - def main(): parser = argparse.ArgumentParser( description="Monitor remote CI for failures and trigger analysis." @@ -107,8 +81,6 @@ def main(): args = parser.parse_args() skill_dir = os.path.abspath(os.path.dirname(__file__)) - logs_dir = os.path.join(skill_dir, "ci_logs") - os.makedirs(logs_dir, exist_ok=True) state_file = os.path.join(skill_dir, f"monitored_state_pr_{args.pr}.json") monitored = {} @@ -122,7 +94,6 @@ def main(): print( f"🚀 Starting continuous remote CI monitoring for PR #{args.pr} every {args.interval}s..." ) - analyzer_script = os.path.join(skill_dir, "analyze_ci_failure.py") for i in range(args.max_iterations): print( @@ -176,56 +147,50 @@ def main(): jkey = f"bk_{jid}" exit_status = job.get("exit_status") - is_failed = jstate in ["failed", "failing"] or ( - exit_status != 0 and exit_status is not None - ) + is_failed = ( + jstate in ["failed", "failing"] + or (exit_status != 0 and exit_status is not None) + ) and "rolling" not in jname.lower() if is_failed and jkey not in monitored: print( - f"🚨 New Buildkite job error detected: '{jname}' (ID: {jid})" + f"🚨 Notifying failure for Buildkite job '{jname}' (ID: {jid})..." ) - log_path = os.path.join( - logs_dir, - f"bk_{re.sub(r'[^a-zA-Z0-9]', '_', jname)}_{jid}.log", + msg = ( + f"⚠️ Remote CI Buildkite Job '{jname}' completed with errors!\n\n" + f"Build ID: {build_id} | Job ID: {jid}\n" + f"Log URL: {job.get('log_url', link)}\n\n" + f"Please start a background task or run the analyze-ci-failure skill to analyze this failure!" ) - download_buildkite_log(job, log_path) - - print(f"🚀 Starting background analysis task for '{jname}'...") - subprocess.Popen( + subprocess.run( [ - sys.executable, - analyzer_script, - jname, - log_path, + "agentapi", + "send-message", + "--title=CI Job Failed", args.conv_id, + msg, ] ) - monitored[jkey] = time.time() with open(state_file, "w") as f: json.dump(monitored, f) elif state in ["FAILURE", "failed"] and name not in monitored: - print(f"🚨 New GitHub check error detected: '{name}'") - log_path = os.path.join( - logs_dir, f"gh_{re.sub(r'[^a-zA-Z0-9]', '_', name)}.log" + print(f"🚨 Notifying failure for GitHub check '{name}'...") + msg = ( + f"⚠️ Remote CI GitHub Check '{name}' completed with errors!\n\n" + f"Link: {link}\n\n" + f"Please start a background task or run the analyze-ci-failure skill to analyze this failure!" ) - with open(log_path, "w") as f: - f.write( - f"GitHub Check '{name}' failed.\nLink: {link}\nState: {state}\n" - ) - - print(f"🚀 Starting background analysis task for '{name}'...") - subprocess.Popen( + subprocess.run( [ - sys.executable, - analyzer_script, - name, - log_path, + "agentapi", + "send-message", + "--title=CI Check Failed", args.conv_id, + msg, ] ) - monitored[name] = time.time() with open(state_file, "w") as f: json.dump(monitored, f) diff --git a/.agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json b/.agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json new file mode 100644 index 0000000000..f6963d42b6 --- /dev/null +++ b/.agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json @@ -0,0 +1 @@ +{"bk_019ebfdb-dffb-4f9a-b540-dce4625e2d98": 1781335606.0726287, "bk_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e": 1781335606.6685977, "bk_019ebfdb-e010-4a46-b432-e206917cf421": 1781335607.1897428, "bk_019ebfdb-e028-4d6f-970b-6f5657a65b8c": 1781335607.649478, "bk_019ebfe2-2684-40c0-9841-fec97ed4d3f5": 1781335793.7448206, "bk_019ebfe3-63b0-4973-b6f3-2de99fee6dca": 1781335891.3656147, "bk_019ebfe3-639c-45e9-a409-b70bc82f1980": 1781335923.3640246, "bk_019ebfe3-63af-4914-8a69-2794cb5a8d96": 1781335923.56756, "bk_019ebfe3-63ae-4037-a692-c008a270a756": 1781335955.4221787, "bk_019ebfe3-63af-485c-806c-39bfc8991bf8": 1781335955.5952237} \ No newline at end of file From 03fd5696ffd581c21869084acd596e8cd3f32a8f Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:37:23 +0000 Subject: [PATCH 41/53] feat(skills): Ignore soft-failed Buildkite jobs in monitor_remote_ci Replaces the hardcoded 'rolling' job filter with an architectural inspection of the 'soft_failed' attribute in Buildkite metadata. Ensures that jobs allowed to fail are correctly categorized as passed/ignored rather than triggering failure alerts. Also removes cached runtime log artifacts from repository tracking. --- ...4_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log | 109 - ...S_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log | 2628 ---------------- ...S_019ebfe3-639c-45e9-a409-b70bc82f1980.log | 2647 ----------------- ...__019ebfe3-63af-485c-806c-39bfc8991bf8.log | 742 ----- ...S_019ebfe3-63ae-4037-a692-c008a270a756.log | 744 ----- ...4_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log | 647 ---- ...4_019ebfe3-63af-4914-8a69-2794cb5a8d96.log | 653 ---- ...acOS__Bazel_8_x_on__darwin__macOS_arm64.md | 15 - ...ling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md | 19 - ...an_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md | 33 - ...el__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md | 33 - ...__Windows__subset__on__windows__Windows.md | 33 - ..._macOS__subset__on__darwin__macOS_arm64.md | 33 - .../scripts/monitor_remote_ci.py | 17 +- .../scripts/monitored_state_pr_3812.json | 1 - 15 files changed, 11 insertions(+), 8343 deletions(-) delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md delete mode 100644 .agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md delete mode 100644 .agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log deleted file mode 100644 index 28176c158e..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log +++ /dev/null @@ -1,109 +0,0 @@ -_bk;t=1781335323099~~~ Running agent environment hook -_bk;t=1781335323100$ /opt/homebrew/etc/buildkite-agent/hooks/environment -_bk;t=1781335323475# ANDROID_HOME added -_bk;t=1781335323475# SSL_CERT_FILE added -_bk;t=1781335323475# COURSIER_OPTS added -_bk;t=1781335323475# BUILDKITE_GS_APPLICATION_CREDENTIALS added -_bk;t=1781335323475# ANDROID_NDK_HOME added -_bk;t=1781335323475# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e028-4d6f-970b-6f5657a65b8c" -_bk;t=1781335323475# JAVA_TOOL_OPTIONS added -_bk;t=1781335323475~~~ Preparing working directory -_bk;t=1781335323475# Creating "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python" -_bk;t=1781335323475$ cd /Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python -_bk;t=1781335323475$ cd /usr/local/var/bazelbuild -_bk;t=1781335323475# Cloning a mirror of the repository to "/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git" -_bk;t=1781335323475$ git clone --mirror -v --bare -- https://github.com/bazel-contrib/rules_python.git /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -_bk;t=1781335326905Cloning into bare repository '/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git'... -_bk;t=1781335327005POST git-upload-pack (150 bytes) -_bk;t=1781335327042POST git-upload-pack (gzip 135559 to 67146 bytes) -_bk;t=1781335327260remote: Enumerating objects: 73964, done._bk;t=1781335327260 -_bk;t=1781335327260remote: Counting objects: 0% (1/1614)_bk;t=1781335327260 remote: Counting objects: 1% (17/1614)_bk;t=1781335327260 remote: Counting objects: 2% (33/1614)_bk;t=1781335327260 remote: Counting objects: 3% (49/1614)_bk;t=1781335327260 remote: Counting objects: 4% (65/1614)_bk;t=1781335327260 remote: Counting objects: 5% (81/1614)_bk;t=1781335327260 remote: Counting objects: 6% (97/1614)_bk;t=1781335327260 remote: Counting objects: 7% (113/1614)_bk;t=1781335327260 remote: Counting objects: 8% (130/1614)_bk;t=1781335327260 remote: Counting objects: 9% (146/1614)_bk;t=1781335327260 remote: Counting objects: 10% (162/1614)_bk;t=1781335327260 remote: Counting objects: 11% (178/1614)_bk;t=1781335327260 remote: Counting objects: 12% (194/1614)_bk;t=1781335327260 remote: Counting objects: 13% (210/1614)_bk;t=1781335327260 remote: Counting objects: 14% (226/1614)_bk;t=1781335327260 remote: Counting objects: 15% (243/1614)_bk;t=1781335327260 remote: Counting objects: 16% (259/1614)_bk;t=1781335327261 remote: Counting objects: 17% (275/1614)_bk;t=1781335327261 remote: Counting objects: 18% (291/1614)_bk;t=1781335327261 remote: Counting objects: 19% (307/1614)_bk;t=1781335327261 remote: Counting objects: 20% (323/1614)_bk;t=1781335327261 remote: Counting objects: 21% (339/1614)_bk;t=1781335327261 remote: Counting objects: 22% (356/1614)_bk;t=1781335327261 remote: Counting objects: 23% (372/1614)_bk;t=1781335327261 remote: Counting objects: 24% (388/1614)_bk;t=1781335327261 remote: Counting objects: 25% (404/1614)_bk;t=1781335327261 remote: Counting objects: 26% (420/1614)_bk;t=1781335327261 remote: Counting objects: 27% (436/1614)_bk;t=1781335327261 remote: Counting objects: 28% (452/1614)_bk;t=1781335327261 remote: Counting objects: 29% (469/1614)_bk;t=1781335327261 remote: Counting objects: 30% (485/1614)_bk;t=1781335327261 remote: Counting objects: 31% (501/1614)_bk;t=1781335327261 remote: Counting objects: 32% (517/1614)_bk;t=1781335327261 remote: Counting objects: 33% (533/1614)_bk;t=1781335327261 remote: Counting objects: 34% (549/1614)_bk;t=1781335327261 remote: Counting objects: 35% (565/1614)_bk;t=1781335327261 remote: Counting objects: 36% (582/1614)_bk;t=1781335327261 remote: Counting objects: 37% (598/1614)_bk;t=1781335327261 remote: Counting objects: 38% (614/1614)_bk;t=1781335327261 remote: Counting objects: 39% (630/1614)_bk;t=1781335327261 remote: Counting objects: 40% (646/1614)_bk;t=1781335327261 remote: Counting objects: 41% (662/1614)_bk;t=1781335327261 remote: Counting objects: 42% (678/1614)_bk;t=1781335327261 remote: Counting objects: 43% (695/1614)_bk;t=1781335327261 remote: Counting objects: 44% (711/1614)_bk;t=1781335327261 remote: Counting objects: 45% (727/1614)_bk;t=1781335327261 remote: Counting objects: 46% (743/1614)_bk;t=1781335327261 remote: Counting objects: 47% (759/1614)_bk;t=1781335327261 remote: Counting objects: 48% (775/1614)_bk;t=1781335327261 remote: Counting objects: 49% (791/1614)_bk;t=1781335327261 remote: Counting objects: 50% (807/1614)_bk;t=1781335327261 remote: Counting objects: 51% (824/1614)_bk;t=1781335327261 remote: Counting objects: 52% (840/1614)_bk;t=1781335327261 remote: Counting objects: 53% (856/1614)_bk;t=1781335327261 remote: Counting objects: 54% (872/1614)_bk;t=1781335327261 remote: Counting objects: 55% (888/1614)_bk;t=1781335327261 remote: Counting objects: 56% (904/1614)_bk;t=1781335327261 remote: Counting objects: 57% (920/1614)_bk;t=1781335327261 remote: Counting objects: 58% (937/1614)_bk;t=1781335327261 remote: Counting objects: 59% (953/1614)_bk;t=1781335327261 remote: Counting objects: 60% (969/1614)_bk;t=1781335327261 remote: Counting objects: 61% (985/1614)_bk;t=1781335327261 remote: Counting objects: 62% (1001/1614)_bk;t=1781335327261 remote: Counting objects: 63% (1017/1614)_bk;t=1781335327261 remote: Counting objects: 64% (1033/1614)_bk;t=1781335327261 remote: Counting objects: 65% (1050/1614)_bk;t=1781335327261 remote: Counting objects: 66% (1066/1614)_bk;t=1781335327261 remote: Counting objects: 67% (1082/1614)_bk;t=1781335327261 remote: Counting objects: 68% (1098/1614)_bk;t=1781335327261 remote: Counting objects: 69% (1114/1614)_bk;t=1781335327261 remote: Counting objects: 70% (1130/1614)_bk;t=1781335327261 remote: Counting objects: 71% (1146/1614)_bk;t=1781335327261 remote: Counting objects: 72% (1163/1614)_bk;t=1781335327261 remote: Counting objects: 73% (1179/1614)_bk;t=1781335327261 remote: Counting objects: 74% (1195/1614)_bk;t=1781335327261 remote: Counting objects: 75% (1211/1614)_bk;t=1781335327261 remote: Counting objects: 76% (1227/1614)_bk;t=1781335327261 remote: Counting objects: 77% (1243/1614)_bk;t=1781335327261 remote: Counting objects: 78% (1259/1614)_bk;t=1781335327261 remote: Counting objects: 79% (1276/1614)_bk;t=1781335327261 remote: Counting objects: 80% (1292/1614)_bk;t=1781335327261 remote: Counting objects: 81% (1308/1614)_bk;t=1781335327261 remote: Counting objects: 82% (1324/1614)_bk;t=1781335327261 remote: Counting objects: 83% (1340/1614)_bk;t=1781335327261 remote: Counting objects: 84% (1356/1614)_bk;t=1781335327261 remote: Counting objects: 85% (1372/1614)_bk;t=1781335327261 remote: Counting objects: 86% (1389/1614)_bk;t=1781335327261 remote: Counting objects: 87% (1405/1614)_bk;t=1781335327261 remote: Counting objects: 88% (1421/1614)_bk;t=1781335327261 remote: Counting objects: 89% (1437/1614)_bk;t=1781335327261 remote: Counting objects: 90% (1453/1614)_bk;t=1781335327261 remote: Counting objects: 91% (1469/1614)_bk;t=1781335327261 remote: Counting objects: 92% (1485/1614)_bk;t=1781335327261 remote: Counting objects: 93% (1502/1614)_bk;t=1781335327261 remote: Counting objects: 94% (1518/1614)_bk;t=1781335327261 remote: Counting objects: 95% (1534/1614)_bk;t=1781335327261 remote: Counting objects: 96% (1550/1614)_bk;t=1781335327261 remote: Counting objects: 97% (1566/1614)_bk;t=1781335327261 remote: Counting objects: 98% (1582/1614)_bk;t=1781335327261 remote: Counting objects: 99% (1598/1614)_bk;t=1781335327261 remote: Counting objects: 100% (1614/1614)_bk;t=1781335327261 remote: Counting objects: 100% (1614/1614), done._bk;t=1781335327261 -_bk;t=1781335327261remote: Compressing objects: 0% (1/476)_bk;t=1781335327261 remote: Compressing objects: 1% (5/476)_bk;t=1781335327263 remote: Compressing objects: 2% (10/476)_bk;t=1781335327264 remote: Compressing objects: 3% (15/476)_bk;t=1781335327265 remote: Compressing objects: 4% (20/476)_bk;t=1781335327266 remote: Compressing objects: 5% (24/476)_bk;t=1781335327269 remote: Compressing objects: 6% (29/476)_bk;t=1781335327272 remote: Compressing objects: 7% (34/476)_bk;t=1781335327273 remote: Compressing objects: 8% (39/476)_bk;t=1781335327273 remote: Compressing objects: 9% (43/476)_bk;t=1781335327277 remote: Compressing objects: 10% (48/476)_bk;t=1781335327279 remote: Compressing objects: 11% (53/476)_bk;t=1781335327282 remote: Compressing objects: 12% (58/476)_bk;t=1781335327285 remote: Compressing objects: 13% (62/476)_bk;t=1781335327300 remote: Compressing objects: 14% (67/476)_bk;t=1781335327308 remote: Compressing objects: 15% (72/476)_bk;t=1781335327310 remote: Compressing objects: 16% (77/476)_bk;t=1781335327326 remote: Compressing objects: 17% (81/476)_bk;t=1781335327332 remote: Compressing objects: 18% (86/476)_bk;t=1781335327339 remote: Compressing objects: 19% (91/476)_bk;t=1781335327344 remote: Compressing objects: 20% (96/476)_bk;t=1781335327347 remote: Compressing objects: 21% (100/476)_bk;t=1781335327350 remote: Compressing objects: 22% (105/476)_bk;t=1781335327354 remote: Compressing objects: 23% (110/476)_bk;t=1781335327357 remote: Compressing objects: 24% (115/476)_bk;t=1781335327358 remote: Compressing objects: 25% (119/476)_bk;t=1781335327359 remote: Compressing objects: 26% (124/476)_bk;t=1781335327359 remote: Compressing objects: 27% (129/476)_bk;t=1781335327360 remote: Compressing objects: 28% (134/476)_bk;t=1781335327360 remote: Compressing objects: 29% (139/476)_bk;t=1781335327361 remote: Compressing objects: 30% (143/476)_bk;t=1781335327361 remote: Compressing objects: 31% (148/476)_bk;t=1781335327361 remote: Compressing objects: 32% (153/476)_bk;t=1781335327361 remote: Compressing objects: 33% (158/476)_bk;t=1781335327361 remote: Compressing objects: 34% (162/476)_bk;t=1781335327361 remote: Compressing objects: 35% (167/476)_bk;t=1781335327361 remote: Compressing objects: 36% (172/476)_bk;t=1781335327361 remote: Compressing objects: 37% (177/476)_bk;t=1781335327362 remote: Compressing objects: 38% (181/476)_bk;t=1781335327362 remote: Compressing objects: 39% (186/476)_bk;t=1781335327362 remote: Compressing objects: 40% (191/476)_bk;t=1781335327362 remote: Compressing objects: 41% (196/476)_bk;t=1781335327362 remote: Compressing objects: 42% (200/476)_bk;t=1781335327363 remote: Compressing objects: 43% (205/476)_bk;t=1781335327363 remote: Compressing objects: 44% (210/476)_bk;t=1781335327363 remote: Compressing objects: 45% (215/476)_bk;t=1781335327363 remote: Compressing objects: 46% (219/476)_bk;t=1781335327363 remote: Compressing objects: 47% (224/476)_bk;t=1781335327364 remote: Compressing objects: 48% (229/476)_bk;t=1781335327364 remote: Compressing objects: 49% (234/476)_bk;t=1781335327364 remote: Compressing objects: 50% (238/476)_bk;t=1781335327364 remote: Compressing objects: 51% (243/476)_bk;t=1781335327365 remote: Compressing objects: 52% (248/476)_bk;t=1781335327365 remote: Compressing objects: 53% (253/476)_bk;t=1781335327365 remote: Compressing objects: 54% (258/476)_bk;t=1781335327365 remote: Compressing objects: 55% (262/476)_bk;t=1781335327366 remote: Compressing objects: 56% (267/476)_bk;t=1781335327367 remote: Compressing objects: 57% (272/476)_bk;t=1781335327367 remote: Compressing objects: 58% (277/476)_bk;t=1781335327367 remote: Compressing objects: 59% (281/476)_bk;t=1781335327367 remote: Compressing objects: 60% (286/476)_bk;t=1781335327367 remote: Compressing objects: 61% (291/476)_bk;t=1781335327367 remote: Compressing objects: 62% (296/476)_bk;t=1781335327367 remote: Compressing objects: 63% (300/476)_bk;t=1781335327367 remote: Compressing objects: 64% (305/476)_bk;t=1781335327367 remote: Compressing objects: 65% (310/476)_bk;t=1781335327368 remote: Compressing objects: 66% (315/476)_bk;t=1781335327368 remote: Compressing objects: 67% (319/476)_bk;t=1781335327368 remote: Compressing objects: 68% (324/476)_bk;t=1781335327368 remote: Compressing objects: 69% (329/476)_bk;t=1781335327369 remote: Compressing objects: 70% (334/476)_bk;t=1781335327369 remote: Compressing objects: 71% (338/476)_bk;t=1781335327369 remote: Compressing objects: 72% (343/476)_bk;t=1781335327369 remote: Compressing objects: 73% (348/476)_bk;t=1781335327369 remote: Compressing objects: 74% (353/476)_bk;t=1781335327369 remote: Compressing objects: 75% (357/476)_bk;t=1781335327369 remote: Compressing objects: 76% (362/476)_bk;t=1781335327369 remote: Compressing objects: 77% (367/476)_bk;t=1781335327369 remote: Compressing objects: 78% (372/476)_bk;t=1781335327369 remote: Compressing objects: 79% (377/476)_bk;t=1781335327370 remote: Compressing objects: 80% (381/476)_bk;t=1781335327370 remote: Compressing objects: 81% (386/476)_bk;t=1781335327371 remote: Compressing objects: 82% (391/476)_bk;t=1781335327372 remote: Compressing objects: 83% (396/476)_bk;t=1781335327372 remote: Compressing objects: 84% (400/476)_bk;t=1781335327372 remote: Compressing objects: 85% (405/476)_bk;t=1781335327372 remote: Compressing objects: 86% (410/476)_bk;t=1781335327372 remote: Compressing objects: 87% (415/476)_bk;t=1781335327373 remote: Compressing objects: 88% (419/476)_bk;t=1781335327373 remote: Compressing objects: 89% (424/476)_bk;t=1781335327373 remote: Compressing objects: 90% (429/476)_bk;t=1781335327373 remote: Compressing objects: 91% (434/476)_bk;t=1781335327373 remote: Compressing objects: 92% (438/476)_bk;t=1781335327374 remote: Compressing objects: 93% (443/476)_bk;t=1781335327374 remote: Compressing objects: 94% (448/476)_bk;t=1781335327374 remote: Compressing objects: 95% (453/476)_bk;t=1781335327374 remote: Compressing objects: 96% (457/476)_bk;t=1781335327374 remote: Compressing objects: 97% (462/476)_bk;t=1781335327375 remote: Compressing objects: 98% (467/476)_bk;t=1781335327376 remote: Compressing objects: 99% (472/476)_bk;t=1781335327376 remote: Compressing objects: 100% (476/476)_bk;t=1781335327376 remote: Compressing objects: 100% (476/476), done._bk;t=1781335327376 -_bk;t=1781335327384Receiving objects: 0% (1/73964) Receiving objects: 1% (740/73964) Receiving objects: 2% (1480/73964) Receiving objects: 3% (2219/73964) Receiving objects: 4% (2959/73964) Receiving objects: 5% (3699/73964) Receiving objects: 6% (4438/73964) Receiving objects: 7% (5178/73964) Receiving objects: 8% (5918/73964) Receiving objects: 9% (6657/73964) Receiving objects: 10% (7397/73964) Receiving objects: 11% (8137/73964) Receiving objects: 12% (8876/73964) Receiving objects: 13% (9616/73964) Receiving objects: 14% (10355/73964) Receiving objects: 15% (11095/73964) Receiving objects: 16% (11835/73964) Receiving objects: 17% (12574/73964) Receiving objects: 18% (13314/73964) Receiving objects: 19% (14054/73964) Receiving objects: 20% (14793/73964) Receiving objects: 21% (15533/73964) Receiving objects: 22% (16273/73964) Receiving objects: 23% (17012/73964) Receiving objects: 24% (17752/73964) Receiving objects: 25% (18491/73964) Receiving objects: 26% (19231/73964) Receiving objects: 27% (19971/73964) Receiving objects: 28% (20710/73964) Receiving objects: 29% (21450/73964) Receiving objects: 30% (22190/73964) Receiving objects: 31% (22929/73964) Receiving objects: 32% (23669/73964) Receiving objects: 33% (24409/73964) Receiving objects: 34% (25148/73964) Receiving objects: 35% (25888/73964) Receiving objects: 36% (26628/73964) Receiving objects: 37% (27367/73964) Receiving objects: 38% (28107/73964) Receiving objects: 39% (28846/73964) Receiving objects: 40% (29586/73964) Receiving objects: 41% (30326/73964) Receiving objects: 42% (31065/73964) Receiving objects: 43% (31805/73964) Receiving objects: 44% (32545/73964) Receiving objects: 45% (33284/73964) Receiving objects: 46% (34024/73964) Receiving objects: 47% (34764/73964) Receiving objects: 48% (35503/73964) Receiving objects: 49% (36243/73964) Receiving objects: 50% (36982/73964) Receiving objects: 51% (37722/73964) Receiving objects: 52% (38462/73964) Receiving objects: 53% (39201/73964) Receiving objects: 54% (39941/73964) Receiving objects: 55% (40681/73964) Receiving objects: 56% (41420/73964) Receiving objects: 57% (42160/73964) Receiving objects: 58% (42900/73964) Receiving objects: 59% (43639/73964) Receiving objects: 60% (44379/73964) Receiving objects: 61% (45119/73964) Receiving objects: 62% (45858/73964) Receiving objects: 63% (46598/73964) Receiving objects: 64% (47337/73964) Receiving objects: 65% (48077/73964) Receiving objects: 66% (48817/73964) Receiving objects: 67% (49556/73964) Receiving objects: 68% (50296/73964) Receiving objects: 69% (51036/73964) Receiving objects: 70% (51775/73964) Receiving objects: 71% (52515/73964) Receiving objects: 72% (53255/73964) Receiving objects: 73% (53994/73964) Receiving objects: 74% (54734/73964) Receiving objects: 75% (55473/73964) Receiving objects: 76% (56213/73964) Receiving objects: 77% (56953/73964) Receiving objects: 78% (57692/73964) Receiving objects: 79% (58432/73964) Receiving objects: 80% (59172/73964) Receiving objects: 81% (59911/73964) Receiving objects: 82% (60651/73964) Receiving objects: 83% (61391/73964) Receiving objects: 84% (62130/73964) Receiving objects: 85% (62870/73964) Receiving objects: 86% (63610/73964) Receiving objects: 87% (64349/73964) Receiving objects: 88% (65089/73964) Receiving objects: 89% (65828/73964) Receiving objects: 90% (66568/73964) Receiving objects: 91% (67308/73964) Receiving objects: 92% (68047/73964) Receiving objects: 93% (68787/73964) Receiving objects: 94% (69527/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 95% (70266/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 96% (71006/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 97% (71746/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 98% (72485/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 99% (73225/73964), 27.02 MiB | 54.03 MiB/s remote: Total 73964 (delta 1357), reused 1211 (delta 1133), pack-reused 72350 (from 3)_bk;t=1781335327987 -_bk;t=1781335327988Receiving objects: 100% (73964/73964), 27.02 MiB | 54.03 MiB/s Receiving objects: 100% (73964/73964), 33.90 MiB | 55.53 MiB/s, done. -_bk;t=1781335327992Resolving deltas: 0% (0/53187) Resolving deltas: 1% (532/53187) Resolving deltas: 2% (1064/53187) Resolving deltas: 3% (1596/53187) Resolving deltas: 4% (2128/53187) Resolving deltas: 5% (2660/53187) Resolving deltas: 6% (3192/53187) Resolving deltas: 7% (3725/53187) Resolving deltas: 8% (4255/53187) Resolving deltas: 9% (4787/53187) Resolving deltas: 10% (5319/53187) Resolving deltas: 11% (5851/53187) Resolving deltas: 12% (6384/53187) Resolving deltas: 13% (6915/53187) Resolving deltas: 14% (7447/53187) Resolving deltas: 15% (7979/53187) Resolving deltas: 16% (8511/53187) Resolving deltas: 17% (9042/53187) Resolving deltas: 18% (9574/53187) Resolving deltas: 19% (10106/53187) Resolving deltas: 20% (10638/53187) Resolving deltas: 21% (11170/53187) Resolving deltas: 22% (11702/53187) Resolving deltas: 23% (12234/53187) Resolving deltas: 24% (12765/53187) Resolving deltas: 25% (13297/53187) Resolving deltas: 26% (13829/53187) Resolving deltas: 27% (14361/53187) Resolving deltas: 28% (14893/53187) Resolving deltas: 29% (15425/53187) Resolving deltas: 30% (15957/53187) Resolving deltas: 31% (16488/53187) Resolving deltas: 32% (17020/53187) Resolving deltas: 33% (17552/53187) Resolving deltas: 34% (18084/53187) Resolving deltas: 35% (18616/53187) Resolving deltas: 36% (19148/53187) Resolving deltas: 37% (19680/53187) Resolving deltas: 38% (20212/53187) Resolving deltas: 39% (20743/53187) Resolving deltas: 40% (21275/53187) Resolving deltas: 41% (21807/53187) Resolving deltas: 42% (22339/53187) Resolving deltas: 43% (22871/53187) Resolving deltas: 44% (23403/53187) Resolving deltas: 45% (23935/53187) Resolving deltas: 46% (24467/53187) Resolving deltas: 47% (24998/53187) Resolving deltas: 48% (25531/53187) Resolving deltas: 49% (26062/53187) Resolving deltas: 50% (26594/53187) Resolving deltas: 51% (27126/53187) Resolving deltas: 52% (27658/53187) Resolving deltas: 53% (28190/53187) Resolving deltas: 54% (28721/53187) Resolving deltas: 55% (29253/53187) Resolving deltas: 56% (29785/53187) Resolving deltas: 57% (30317/53187) Resolving deltas: 58% (30849/53187) Resolving deltas: 59% (31381/53187) Resolving deltas: 60% (31913/53187) Resolving deltas: 61% (32445/53187) Resolving deltas: 62% (32976/53187) Resolving deltas: 63% (33508/53187) Resolving deltas: 64% (34041/53187) Resolving deltas: 65% (34572/53187) Resolving deltas: 66% (35104/53187) Resolving deltas: 67% (35636/53187) Resolving deltas: 68% (36168/53187) Resolving deltas: 69% (36700/53187) Resolving deltas: 70% (37231/53187) Resolving deltas: 71% (37763/53187) Resolving deltas: 72% (38295/53187) Resolving deltas: 73% (38827/53187) Resolving deltas: 74% (39359/53187) Resolving deltas: 75% (39891/53187) Resolving deltas: 76% (40423/53187) Resolving deltas: 77% (40954/53187) Resolving deltas: 78% (41486/53187) Resolving deltas: 79% (42018/53187) Resolving deltas: 80% (42550/53187) Resolving deltas: 81% (43082/53187) Resolving deltas: 82% (43614/53187) Resolving deltas: 83% (44146/53187) Resolving deltas: 84% (44679/53187) Resolving deltas: 85% (45209/53187) Resolving deltas: 86% (45741/53187) Resolving deltas: 87% (46273/53187) Resolving deltas: 88% (46805/53187) Resolving deltas: 89% (47337/53187) Resolving deltas: 90% (47869/53187) Resolving deltas: 91% (48401/53187) Resolving deltas: 92% (48933/53187) Resolving deltas: 93% (49465/53187) Resolving deltas: 94% (49996/53187) Resolving deltas: 95% (50528/53187) Resolving deltas: 96% (51060/53187) Resolving deltas: 97% (51592/53187) Resolving deltas: 98% (52124/53187) Resolving deltas: 99% (52656/53187) Resolving deltas: 100% (53187/53187) Resolving deltas: 100% (53187/53187), done. -_bk;t=1781335328950$ cd /Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python -_bk;t=1781335328950$ git clone -v --reference /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335328964Cloning into '.'... -_bk;t=1781335329003POST git-upload-pack (182 bytes) -_bk;t=1781335329362$ git clean -ffxdq -_bk;t=1781335329386# Fetch and checkout pull request head from GitHub -_bk;t=1781335329386$ git fetch -v --prune -- origin refs/pull/3812/head 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335329431POST git-upload-pack (402 bytes) -_bk;t=1781335329482From https://github.com/bazel-contrib/rules_python -_bk;t=1781335329482 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335329482 * branch 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -> FETCH_HEAD -_bk;t=1781335329499# FETCH_HEAD is now `92c48e57c6353feb0452ad82f7cfc2c744616fa4` -_bk;t=1781335329499$ git checkout -f 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335329614Note: switching to '92c48e57c6353feb0452ad82f7cfc2c744616fa4'. -_bk;t=1781335329614 -_bk;t=1781335329614You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335329614changes and commit them, and you can discard any commits you make in this -_bk;t=1781335329614state without impacting any branches by switching back to a branch. -_bk;t=1781335329614 -_bk;t=1781335329614If you want to create a new branch to retain commits you create, you may -_bk;t=1781335329614do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335329614 -_bk;t=1781335329614 git switch -c -_bk;t=1781335329614 -_bk;t=1781335329614Or undo this operation with: -_bk;t=1781335329614 -_bk;t=1781335329614 git switch - -_bk;t=1781335329614 -_bk;t=1781335329614Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335329614 -_bk;t=1781335329614HEAD is now at 92c48e57c feat(skills): Output swarm summary and job IDs in monitor_remote_ci -_bk;t=1781335329615# Cleaning again to catch any post-checkout changes -_bk;t=1781335329615$ git clean -ffxdq -_bk;t=1781335329640# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335329640# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335329640~~~ Running commands -_bk;t=1781335329640$ which python3 -_bk;t=1781335329640python3 -V -_bk;t=1781335329640curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py -_bk;t=1781335329640python3 bazelci.py runner --task=macos_arm64_config_02 -_bk;t=1781335329646/opt/homebrew/bin/python3 -_bk;t=1781335329656Python 3.12.11 -_bk;t=1781335330369 -_bk;t=1781335330369 -_bk;t=1781335330369--- :xcode: Activating Xcode 26.0... -_bk;t=1781335330369 -_bk;t=1781335330369 -_bk;t=1781335330369/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode26.0.app -_bk;t=1781335330405/usr/bin/sudo /usr/bin/xcodebuild -runFirstLaunch -_bk;t=1781335331218Install Started -_bk;t=17813353317151%.._bk;t=1781335333212.......20......._bk;t=1781335334703..40........._bk;t=178133533571460_bk;t=1781335341718.........80_bk;t=1781335343210._bk;t=1781335354018Install Succeeded -_bk;t=1781335354021 -_bk;t=1781335354021 -_bk;t=1781335354021--- :bazel: Using Bazel version 8.x -_bk;t=1781335354021 -_bk;t=1781335354021 -_bk;t=1781335354021bazel --version -_bk;t=1781335354023Traceback (most recent call last): -_bk;t=1781335354023 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 4911, in -_bk;t=1781335354024 sys.exit(main()) -_bk;t=1781335354024 ^^^^^^ -_bk;t=1781335354024 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 4878, in main -_bk;t=1781335354025 execute_commands( -_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 1488, in execute_commands -_bk;t=1781335354025 PrepareRepoInCwd(True, initial_setup=True) -_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 1473, in PrepareRepoInCwd -_bk;t=1781335354025 run_bazel_version(bazel_binary) -_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 2255, in run_bazel_version -_bk;t=1781335354025 exit_code = execute_command([bazel_binary, "--version"], fail_if_nonzero=False) -_bk;t=1781335354025 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -_bk;t=1781335354025 File "/Users/buildkite/builds/bk-macos-arm64-g8eu/bazel/rules-python-python/bazelci.py", line 2951, in execute_command -_bk;t=1781335354025 return subprocess.run( -_bk;t=1781335354025 ^^^^^^^^^^^^^^^ -_bk;t=1781335354025 File "/opt/homebrew/Cellar/python@3.12/3.12.11/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 548, in run -_bk;t=1781335354026 with Popen(*popenargs, **kwargs) as process: -_bk;t=1781335354026 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -_bk;t=1781335354026 File "/opt/homebrew/Cellar/python@3.12/3.12.11/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 1026, in __init__ -_bk;t=1781335354027 self._execute_child(args, executable, preexec_fn, close_fds, -_bk;t=1781335354027 File "/opt/homebrew/Cellar/python@3.12/3.12.11/Frameworks/Python.framework/Versions/3.12/lib/python3.12/subprocess.py", line 1955, in _execute_child -_bk;t=1781335354027 raise child_exception_type(errno_num, err_msg, err_filename) -_bk;t=1781335354027FileNotFoundError: [Errno 2] No such file or directory: 'bazel' -_bk;t=1781335354040^^^ +++ -_bk;t=1781335354040🚨 Error: The command exited with status 1 -_bk;t=1781335354040^^^ +++ -_bk;t=1781335354040user command error: exit status 1 diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log deleted file mode 100644 index 0ae5df0879..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfdb-dffb-4f9a-b540-dce4625e2d98.log +++ /dev/null @@ -1,2628 +0,0 @@ -_bk;t=1781335325706~~~ Running agent environment hook -_bk;t=1781335325706$ /etc/buildkite-agent/hooks/environment -_bk;t=1781335325738# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98" -_bk;t=1781335325738~~~ Preparing plugins -_bk;t=1781335325738# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" -_bk;t=1781335325739$ mktemp -dp /etc/buildkite-agent/plugins -_bk;t=1781335325739# Switching to the temporary plugin directory -_bk;t=1781335325739$ cd /etc/buildkite-agent/plugins/1918249943 -_bk;t=1781335325739$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . -_bk;t=1781335325742Cloning into '.'... -_bk;t=1781335325894POST git-upload-pack (175 bytes) -_bk;t=1781335325934POST git-upload-pack (gzip 3102 to 1570 bytes) -_bk;t=1781335325979remote: Enumerating objects: 2225, done._bk;t=1781335325979 -_bk;t=1781335325979remote: Counting objects: 0% (1/321)_bk;t=1781335325979 remote: Counting objects: 1% (4/321)_bk;t=1781335325979 remote: Counting objects: 2% (7/321)_bk;t=1781335325979 remote: Counting objects: 3% (10/321)_bk;t=1781335325979 remote: Counting objects: 4% (13/321)_bk;t=1781335325979 remote: Counting objects: 5% (17/321)_bk;t=1781335325979 remote: Counting objects: 6% (20/321)_bk;t=1781335325979 remote: Counting objects: 7% (23/321)_bk;t=1781335325979 remote: Counting objects: 8% (26/321)_bk;t=1781335325979 remote: Counting objects: 9% (29/321)_bk;t=1781335325979 remote: Counting objects: 10% (33/321)_bk;t=1781335325979 remote: Counting objects: 11% (36/321)_bk;t=1781335325979 remote: Counting objects: 12% (39/321)_bk;t=1781335325979 remote: Counting objects: 13% (42/321)_bk;t=1781335325979 remote: Counting objects: 14% (45/321)_bk;t=1781335325979 remote: Counting objects: 15% (49/321)_bk;t=1781335325979 remote: Counting objects: 16% (52/321)_bk;t=1781335325979 remote: Counting objects: 17% (55/321)_bk;t=1781335325979 remote: Counting objects: 18% (58/321)_bk;t=1781335325979 remote: Counting objects: 19% (61/321)_bk;t=1781335325979 remote: Counting objects: 20% (65/321)_bk;t=1781335325979 remote: Counting objects: 21% (68/321)_bk;t=1781335325979 remote: Counting objects: 22% (71/321)_bk;t=1781335325979 remote: Counting objects: 23% (74/321)_bk;t=1781335325979 remote: Counting objects: 24% (78/321)_bk;t=1781335325979 remote: Counting objects: 25% (81/321)_bk;t=1781335325979 remote: Counting objects: 26% (84/321)_bk;t=1781335325979 remote: Counting objects: 27% (87/321)_bk;t=1781335325979 remote: Counting objects: 28% (90/321)_bk;t=1781335325979 remote: Counting objects: 29% (94/321)_bk;t=1781335325979 remote: Counting objects: 30% (97/321)_bk;t=1781335325979 remote: Counting objects: 31% (100/321)_bk;t=1781335325979 remote: Counting objects: 32% (103/321)_bk;t=1781335325979 remote: Counting objects: 33% (106/321)_bk;t=1781335325979 remote: Counting objects: 34% (110/321)_bk;t=1781335325979 remote: Counting objects: 35% (113/321)_bk;t=1781335325979 remote: Counting objects: 36% (116/321)_bk;t=1781335325979 remote: Counting objects: 37% (119/321)_bk;t=1781335325979 remote: Counting objects: 38% (122/321)_bk;t=1781335325979 remote: Counting objects: 39% (126/321)_bk;t=1781335325979 remote: Counting objects: 40% (129/321)_bk;t=1781335325979 remote: Counting objects: 41% (132/321)_bk;t=1781335325979 remote: Counting objects: 42% (135/321)_bk;t=1781335325979 remote: Counting objects: 43% (139/321)_bk;t=1781335325979 remote: Counting objects: 44% (142/321)_bk;t=1781335325979 remote: Counting objects: 45% (145/321)_bk;t=1781335325979 remote: Counting objects: 46% (148/321)_bk;t=1781335325979 remote: Counting objects: 47% (151/321)_bk;t=1781335325979 remote: Counting objects: 48% (155/321)_bk;t=1781335325979 remote: Counting objects: 49% (158/321)_bk;t=1781335325979 remote: Counting objects: 50% (161/321)_bk;t=1781335325979 remote: Counting objects: 51% (164/321)_bk;t=1781335325979 remote: Counting objects: 52% (167/321)_bk;t=1781335325979 remote: Counting objects: 53% (171/321)_bk;t=1781335325979 remote: Counting objects: 54% (174/321)_bk;t=1781335325979 remote: Counting objects: 55% (177/321)_bk;t=1781335325979 remote: Counting objects: 56% (180/321)_bk;t=1781335325979 remote: Counting objects: 57% (183/321)_bk;t=1781335325979 remote: Counting objects: 58% (187/321)_bk;t=1781335325979 remote: Counting objects: 59% (190/321)_bk;t=1781335325979 remote: Counting objects: 60% (193/321)_bk;t=1781335325979 remote: Counting objects: 61% (196/321)_bk;t=1781335325979 remote: Counting objects: 62% (200/321)_bk;t=1781335325979 remote: Counting objects: 63% (203/321)_bk;t=1781335325979 remote: Counting objects: 64% (206/321)_bk;t=1781335325979 remote: Counting objects: 65% (209/321)_bk;t=1781335325979 remote: Counting objects: 66% (212/321)_bk;t=1781335325979 remote: Counting objects: 67% (216/321)_bk;t=1781335325980 remote: Counting objects: 68% (219/321)_bk;t=1781335325980 remote: Counting objects: 69% (222/321)_bk;t=1781335325980 remote: Counting objects: 70% (225/321)_bk;t=1781335325980 remote: Counting objects: 71% (228/321)_bk;t=1781335325980 remote: Counting objects: 72% (232/321)_bk;t=1781335325980 remote: Counting objects: 73% (235/321)_bk;t=1781335325980 remote: Counting objects: 74% (238/321)_bk;t=1781335325980 remote: Counting objects: 75% (241/321)_bk;t=1781335325980 remote: Counting objects: 76% (244/321)_bk;t=1781335325980 remote: Counting objects: 77% (248/321)_bk;t=1781335325980 remote: Counting objects: 78% (251/321)_bk;t=1781335325980 remote: Counting objects: 79% (254/321)_bk;t=1781335325980 remote: Counting objects: 80% (257/321)_bk;t=1781335325980 remote: Counting objects: 81% (261/321)_bk;t=1781335325980 remote: Counting objects: 82% (264/321)_bk;t=1781335325980 remote: Counting objects: 83% (267/321)_bk;t=1781335325980 remote: Counting objects: 84% (270/321)_bk;t=1781335325980 remote: Counting objects: 85% (273/321)_bk;t=1781335325980 remote: Counting objects: 86% (277/321)_bk;t=1781335325980 remote: Counting objects: 87% (280/321)_bk;t=1781335325980 remote: Counting objects: 88% (283/321)_bk;t=1781335325980 remote: Counting objects: 89% (286/321)_bk;t=1781335325980 remote: Counting objects: 90% (289/321)_bk;t=1781335325980 remote: Counting objects: 91% (293/321)_bk;t=1781335325980 remote: Counting objects: 92% (296/321)_bk;t=1781335325980 remote: Counting objects: 93% (299/321)_bk;t=1781335325980 remote: Counting objects: 94% (302/321)_bk;t=1781335325980 remote: Counting objects: 95% (305/321)_bk;t=1781335325980 remote: Counting objects: 96% (309/321)_bk;t=1781335325980 remote: Counting objects: 97% (312/321)_bk;t=1781335325980 remote: Counting objects: 98% (315/321)_bk;t=1781335325980 remote: Counting objects: 99% (318/321)_bk;t=1781335325980 remote: Counting objects: 100% (321/321)_bk;t=1781335325980 remote: Counting objects: 100% (321/321), done._bk;t=1781335325980 -_bk;t=1781335325980remote: Compressing objects: 0% (1/151)_bk;t=1781335325980 remote: Compressing objects: 1% (2/151)_bk;t=1781335325980 remote: Compressing objects: 2% (4/151)_bk;t=1781335325980 remote: Compressing objects: 3% (5/151)_bk;t=1781335325980 remote: Compressing objects: 4% (7/151)_bk;t=1781335325980 remote: Compressing objects: 5% (8/151)_bk;t=1781335325981 remote: Compressing objects: 6% (10/151)_bk;t=1781335325982 remote: Compressing objects: 7% (11/151)_bk;t=1781335325982 remote: Compressing objects: 8% (13/151)_bk;t=1781335325995 remote: Compressing objects: 9% (14/151)_bk;t=1781335325995 remote: Compressing objects: 10% (16/151)_bk;t=1781335325995 remote: Compressing objects: 11% (17/151)_bk;t=1781335325995 remote: Compressing objects: 12% (19/151)_bk;t=1781335325995 remote: Compressing objects: 13% (20/151)_bk;t=1781335325995 remote: Compressing objects: 14% (22/151)_bk;t=1781335325995 remote: Compressing objects: 15% (23/151)_bk;t=1781335325995 remote: Compressing objects: 16% (25/151)_bk;t=1781335325995 remote: Compressing objects: 17% (26/151)_bk;t=1781335325995 remote: Compressing objects: 18% (28/151)_bk;t=1781335325995 remote: Compressing objects: 19% (29/151)_bk;t=1781335325995 remote: Compressing objects: 20% (31/151)_bk;t=1781335325995 remote: Compressing objects: 21% (32/151)_bk;t=1781335325995 remote: Compressing objects: 22% (34/151)_bk;t=1781335325995 remote: Compressing objects: 23% (35/151)_bk;t=1781335325995 remote: Compressing objects: 24% (37/151)_bk;t=1781335325995 remote: Compressing objects: 25% (38/151)_bk;t=1781335325995 remote: Compressing objects: 26% (40/151)_bk;t=1781335325995 remote: Compressing objects: 27% (41/151)_bk;t=1781335325995 remote: Compressing objects: 28% (43/151)_bk;t=1781335325995 remote: Compressing objects: 29% (44/151)_bk;t=1781335325995 remote: Compressing objects: 30% (46/151)_bk;t=1781335325995 remote: Compressing objects: 31% (47/151)_bk;t=1781335325995 remote: Compressing objects: 32% (49/151)_bk;t=1781335325995 remote: Compressing objects: 33% (50/151)_bk;t=1781335325995 remote: Compressing objects: 34% (52/151)_bk;t=1781335325995 remote: Compressing objects: 35% (53/151)_bk;t=1781335325995 remote: Compressing objects: 36% (55/151)_bk;t=1781335325995 remote: Compressing objects: 37% (56/151)_bk;t=1781335325995 remote: Compressing objects: 38% (58/151)_bk;t=1781335325995 remote: Compressing objects: 39% (59/151)_bk;t=1781335325995 remote: Compressing objects: 40% (61/151)_bk;t=1781335325995 remote: Compressing objects: 41% (62/151)_bk;t=1781335325995 remote: Compressing objects: 42% (64/151)_bk;t=1781335325995 remote: Compressing objects: 43% (65/151)_bk;t=1781335325995 remote: Compressing objects: 44% (67/151)_bk;t=1781335325995 remote: Compressing objects: 45% (68/151)_bk;t=1781335325995 remote: Compressing objects: 46% (70/151)_bk;t=1781335325995 remote: Compressing objects: 47% (71/151)_bk;t=1781335325995 remote: Compressing objects: 48% (73/151)_bk;t=1781335325995 remote: Compressing objects: 49% (74/151)_bk;t=1781335325995 remote: Compressing objects: 50% (76/151)_bk;t=1781335325995 remote: Compressing objects: 51% (78/151)_bk;t=1781335325995 remote: Compressing objects: 52% (79/151)_bk;t=1781335325995 remote: Compressing objects: 53% (81/151)_bk;t=1781335325995 remote: Compressing objects: 54% (82/151)_bk;t=1781335325995 remote: Compressing objects: 55% (84/151)_bk;t=1781335325995 remote: Compressing objects: 56% (85/151)_bk;t=1781335325995 remote: Compressing objects: 57% (87/151)_bk;t=1781335325995 remote: Compressing objects: 58% (88/151)_bk;t=1781335325995 remote: Compressing objects: 59% (90/151)_bk;t=1781335325995 remote: Compressing objects: 60% (91/151)_bk;t=1781335325995 remote: Compressing objects: 61% (93/151)_bk;t=1781335325995 remote: Compressing objects: 62% (94/151)_bk;t=1781335325995 remote: Compressing objects: 63% (96/151)_bk;t=1781335325995 remote: Compressing objects: 64% (97/151)_bk;t=1781335325995 remote: Compressing objects: 65% (99/151)_bk;t=1781335325995 remote: Compressing objects: 66% (100/151)_bk;t=1781335325995 remote: Compressing objects: 67% (102/151)_bk;t=1781335325995 remote: Compressing objects: 68% (103/151)_bk;t=1781335325995 remote: Compressing objects: 69% (105/151)_bk;t=1781335325995 remote: Compressing objects: 70% (106/151)_bk;t=1781335325995 remote: Compressing objects: 71% (108/151)_bk;t=1781335325995 remote: Compressing objects: 72% (109/151)_bk;t=1781335325995 remote: Compressing objects: 73% (111/151)_bk;t=1781335325995 remote: Compressing objects: 74% (112/151)_bk;t=1781335325995 remote: Compressing objects: 75% (114/151)_bk;t=1781335325995 remote: Compressing objects: 76% (115/151)_bk;t=1781335325995 remote: Compressing objects: 77% (117/151)_bk;t=1781335325995 remote: Compressing objects: 78% (118/151)_bk;t=1781335325995 remote: Compressing objects: 79% (120/151)_bk;t=1781335325995 remote: Compressing objects: 80% (121/151)_bk;t=1781335325995 remote: Compressing objects: 81% (123/151)_bk;t=1781335325995 remote: Compressing objects: 82% (124/151)_bk;t=1781335325995 remote: Compressing objects: 83% (126/151)_bk;t=1781335325995 remote: Compressing objects: 84% (127/151)_bk;t=1781335325995 remote: Compressing objects: 85% (129/151)_bk;t=1781335325995 remote: Compressing objects: 86% (130/151)_bk;t=1781335325995 remote: Compressing objects: 87% (132/151)_bk;t=1781335325995 remote: Compressing objects: 88% (133/151)_bk;t=1781335325995 remote: Compressing objects: 89% (135/151)_bk;t=1781335325995 remote: Compressing objects: 90% (136/151)_bk;t=1781335325995 remote: Compressing objects: 91% (138/151)_bk;t=1781335325996 remote: Compressing objects: 92% (139/151)_bk;t=1781335325996 remote: Compressing objects: 93% (141/151)_bk;t=1781335325996 remote: Compressing objects: 94% (142/151)_bk;t=1781335325996 remote: Compressing objects: 95% (144/151)_bk;t=1781335325996 remote: Compressing objects: 96% (145/151)_bk;t=1781335325996 remote: Compressing objects: 97% (147/151)_bk;t=1781335325996 remote: Compressing objects: 98% (148/151)_bk;t=1781335326003 remote: Compressing objects: 99% (150/151)_bk;t=1781335326003 remote: Compressing objects: 100% (151/151)_bk;t=1781335326003 remote: Compressing objects: 100% (151/151), done._bk;t=1781335326003 -_bk;t=1781335326005Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) Receiving objects: 96% (2136/2225) remote: Total 2225 (delta 206), reused 170 (delta 169), pack-reused 1904 (from 3)_bk;t=1781335326094 -_bk;t=1781335326094Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.74 KiB | 6.17 MiB/s, done. -_bk;t=1781335326095Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (89/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (111/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (167/1109) Resolving deltas: 16% (179/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (211/1109) Resolving deltas: 20% (222/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (245/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (300/1109) Resolving deltas: 28% (312/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (355/1109) Resolving deltas: 33% (367/1109) Resolving deltas: 34% (378/1109) Resolving deltas: 35% (389/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (411/1109) Resolving deltas: 38% (423/1109) Resolving deltas: 39% (433/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (466/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (504/1109) Resolving deltas: 46% (511/1109) Resolving deltas: 47% (523/1109) Resolving deltas: 48% (533/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (555/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (599/1109) Resolving deltas: 55% (611/1109) Resolving deltas: 56% (622/1109) Resolving deltas: 57% (633/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (667/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (755/1109) Resolving deltas: 69% (766/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (788/1109) Resolving deltas: 72% (800/1109) Resolving deltas: 73% (811/1109) Resolving deltas: 74% (822/1109) Resolving deltas: 75% (832/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (867/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (921/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (999/1109) Resolving deltas: 91% (1010/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1098/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. -_bk;t=1781335326137# Checking out `v3.8.0` -_bk;t=1781335326137$ git checkout -f v3.8.0 -_bk;t=1781335326143Note: switching to 'v3.8.0'. -_bk;t=1781335326143 -_bk;t=1781335326143You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335326143changes and commit them, and you can discard any commits you make in this -_bk;t=1781335326143state without impacting any branches by switching back to a branch. -_bk;t=1781335326143 -_bk;t=1781335326143If you want to create a new branch to retain commits you create, you may -_bk;t=1781335326143do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335326143 -_bk;t=1781335326143 git switch -c -_bk;t=1781335326143 -_bk;t=1781335326143Or undo this operation with: -_bk;t=1781335326143 -_bk;t=1781335326143 git switch - -_bk;t=1781335326143 -_bk;t=1781335326143Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335326143 -_bk;t=1781335326143HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master -_bk;t=1781335326144# Moving temporary plugin directory to final location -_bk;t=1781335326144$ mv /etc/buildkite-agent/plugins/1918249943 /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 -_bk;t=1781335326144$ cd /var/lib/buildkite-agent/builds -_bk;t=1781335326144~~~ Running agent pre-checkout hook -_bk;t=1781335326144$ /etc/buildkite-agent/hooks/pre-checkout -_bk;t=1781335326161JOB_START_TIME: 1781335326161 -_bk;t=1781335326173Added: -_bk;t=1781335326173+ JOB_START_TIME -_bk;t=1781335326187~~~ Preparing working directory -_bk;t=1781335326187# Creating "/var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python" -_bk;t=1781335326187$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python -_bk;t=1781335326187$ cd /var/lib/gitmirrors -_bk;t=1781335326194# Updating existing repository mirror to find commit 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335326195# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously -_bk;t=1781335326195$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head -_bk;t=1781335326447remote: Enumerating objects: 2499, done._bk;t=1781335326447 -_bk;t=1781335326447remote: Counting objects: 0% (1/1588)_bk;t=1781335326447 remote: Counting objects: 1% (16/1588)_bk;t=1781335326447 remote: Counting objects: 2% (32/1588)_bk;t=1781335326447 remote: Counting objects: 3% (48/1588)_bk;t=1781335326447 remote: Counting objects: 4% (64/1588)_bk;t=1781335326447 remote: Counting objects: 5% (80/1588)_bk;t=1781335326447 remote: Counting objects: 6% (96/1588)_bk;t=1781335326447 remote: Counting objects: 7% (112/1588)_bk;t=1781335326447 remote: Counting objects: 8% (128/1588)_bk;t=1781335326447 remote: Counting objects: 9% (143/1588)_bk;t=1781335326447 remote: Counting objects: 10% (159/1588)_bk;t=1781335326447 remote: Counting objects: 11% (175/1588)_bk;t=1781335326447 remote: Counting objects: 12% (191/1588)_bk;t=1781335326447 remote: Counting objects: 13% (207/1588)_bk;t=1781335326447 remote: Counting objects: 14% (223/1588)_bk;t=1781335326447 remote: Counting objects: 15% (239/1588)_bk;t=1781335326447 remote: Counting objects: 16% (255/1588)_bk;t=1781335326447 remote: Counting objects: 17% (270/1588)_bk;t=1781335326447 remote: Counting objects: 18% (286/1588)_bk;t=1781335326447 remote: Counting objects: 19% (302/1588)_bk;t=1781335326447 remote: Counting objects: 20% (318/1588)_bk;t=1781335326447 remote: Counting objects: 21% (334/1588)_bk;t=1781335326447 remote: Counting objects: 22% (350/1588)_bk;t=1781335326447 remote: Counting objects: 23% (366/1588)_bk;t=1781335326447 remote: Counting objects: 24% (382/1588)_bk;t=1781335326447 remote: Counting objects: 25% (397/1588)_bk;t=1781335326447 remote: Counting objects: 26% (413/1588)_bk;t=1781335326447 remote: Counting objects: 27% (429/1588)_bk;t=1781335326447 remote: Counting objects: 28% (445/1588)_bk;t=1781335326447 remote: Counting objects: 29% (461/1588)_bk;t=1781335326447 remote: Counting objects: 30% (477/1588)_bk;t=1781335326447 remote: Counting objects: 31% (493/1588)_bk;t=1781335326447 remote: Counting objects: 32% (509/1588)_bk;t=1781335326447 remote: Counting objects: 33% (525/1588)_bk;t=1781335326447 remote: Counting objects: 34% (540/1588)_bk;t=1781335326447 remote: Counting objects: 35% (556/1588)_bk;t=1781335326447 remote: Counting objects: 36% (572/1588)_bk;t=1781335326447 remote: Counting objects: 37% (588/1588)_bk;t=1781335326447 remote: Counting objects: 38% (604/1588)_bk;t=1781335326447 remote: Counting objects: 39% (620/1588)_bk;t=1781335326447 remote: Counting objects: 40% (636/1588)_bk;t=1781335326447 remote: Counting objects: 41% (652/1588)_bk;t=1781335326447 remote: Counting objects: 42% (667/1588)_bk;t=1781335326447 remote: Counting objects: 43% (683/1588)_bk;t=1781335326447 remote: Counting objects: 44% (699/1588)_bk;t=1781335326447 remote: Counting objects: 45% (715/1588)_bk;t=1781335326447 remote: Counting objects: 46% (731/1588)_bk;t=1781335326447 remote: Counting objects: 47% (747/1588)_bk;t=1781335326447 remote: Counting objects: 48% (763/1588)_bk;t=1781335326447 remote: Counting objects: 49% (779/1588)_bk;t=1781335326447 remote: Counting objects: 50% (794/1588)_bk;t=1781335326447 remote: Counting objects: 51% (810/1588)_bk;t=1781335326447 remote: Counting objects: 52% (826/1588)_bk;t=1781335326447 remote: Counting objects: 53% (842/1588)_bk;t=1781335326447 remote: Counting objects: 54% (858/1588)_bk;t=1781335326447 remote: Counting objects: 55% (874/1588)_bk;t=1781335326447 remote: Counting objects: 56% (890/1588)_bk;t=1781335326447 remote: Counting objects: 57% (906/1588)_bk;t=1781335326447 remote: Counting objects: 58% (922/1588)_bk;t=1781335326447 remote: Counting objects: 59% (937/1588)_bk;t=1781335326447 remote: Counting objects: 60% (953/1588)_bk;t=1781335326447 remote: Counting objects: 61% (969/1588)_bk;t=1781335326447 remote: Counting objects: 62% (985/1588)_bk;t=1781335326447 remote: Counting objects: 63% (1001/1588)_bk;t=1781335326447 remote: Counting objects: 64% (1017/1588)_bk;t=1781335326447 remote: Counting objects: 65% (1033/1588)_bk;t=1781335326447 remote: Counting objects: 66% (1049/1588)_bk;t=1781335326447 remote: Counting objects: 67% (1064/1588)_bk;t=1781335326448 remote: Counting objects: 68% (1080/1588)_bk;t=1781335326448 remote: Counting objects: 69% (1096/1588)_bk;t=1781335326448 remote: Counting objects: 70% (1112/1588)_bk;t=1781335326448 remote: Counting objects: 71% (1128/1588)_bk;t=1781335326448 remote: Counting objects: 72% (1144/1588)_bk;t=1781335326448 remote: Counting objects: 73% (1160/1588)_bk;t=1781335326448 remote: Counting objects: 74% (1176/1588)_bk;t=1781335326448 remote: Counting objects: 75% (1191/1588)_bk;t=1781335326448 remote: Counting objects: 76% (1207/1588)_bk;t=1781335326448 remote: Counting objects: 77% (1223/1588)_bk;t=1781335326448 remote: Counting objects: 78% (1239/1588)_bk;t=1781335326448 remote: Counting objects: 79% (1255/1588)_bk;t=1781335326448 remote: Counting objects: 80% (1271/1588)_bk;t=1781335326448 remote: Counting objects: 81% (1287/1588)_bk;t=1781335326448 remote: Counting objects: 82% (1303/1588)_bk;t=1781335326448 remote: Counting objects: 83% (1319/1588)_bk;t=1781335326448 remote: Counting objects: 84% (1334/1588)_bk;t=1781335326448 remote: Counting objects: 85% (1350/1588)_bk;t=1781335326448 remote: Counting objects: 86% (1366/1588)_bk;t=1781335326448 remote: Counting objects: 87% (1382/1588)_bk;t=1781335326448 remote: Counting objects: 88% (1398/1588)_bk;t=1781335326448 remote: Counting objects: 89% (1414/1588)_bk;t=1781335326448 remote: Counting objects: 90% (1430/1588)_bk;t=1781335326448 remote: Counting objects: 91% (1446/1588)_bk;t=1781335326448 remote: Counting objects: 92% (1461/1588)_bk;t=1781335326448 remote: Counting objects: 93% (1477/1588)_bk;t=1781335326448 remote: Counting objects: 94% (1493/1588)_bk;t=1781335326448 remote: Counting objects: 95% (1509/1588)_bk;t=1781335326448 remote: Counting objects: 96% (1525/1588)_bk;t=1781335326448 remote: Counting objects: 97% (1541/1588)_bk;t=1781335326448 remote: Counting objects: 98% (1557/1588)_bk;t=1781335326448 remote: Counting objects: 99% (1573/1588)_bk;t=1781335326448 remote: Counting objects: 100% (1588/1588)_bk;t=1781335326448 remote: Counting objects: 100% (1588/1588), done._bk;t=1781335326448 -_bk;t=1781335326448remote: Compressing objects: 0% (1/439)_bk;t=1781335326448 remote: Compressing objects: 1% (5/439)_bk;t=1781335326448 remote: Compressing objects: 2% (9/439)_bk;t=1781335326448 remote: Compressing objects: 3% (14/439)_bk;t=1781335326448 remote: Compressing objects: 4% (18/439)_bk;t=1781335326448 remote: Compressing objects: 5% (22/439)_bk;t=1781335326448 remote: Compressing objects: 6% (27/439)_bk;t=1781335326448 remote: Compressing objects: 7% (31/439)_bk;t=1781335326448 remote: Compressing objects: 8% (36/439)_bk;t=1781335326448 remote: Compressing objects: 9% (40/439)_bk;t=1781335326448 remote: Compressing objects: 10% (44/439)_bk;t=1781335326448 remote: Compressing objects: 11% (49/439)_bk;t=1781335326448 remote: Compressing objects: 12% (53/439)_bk;t=1781335326448 remote: Compressing objects: 13% (58/439)_bk;t=1781335326448 remote: Compressing objects: 14% (62/439)_bk;t=1781335326448 remote: Compressing objects: 15% (66/439)_bk;t=1781335326448 remote: Compressing objects: 16% (71/439)_bk;t=1781335326448 remote: Compressing objects: 17% (75/439)_bk;t=1781335326448 remote: Compressing objects: 18% (80/439)_bk;t=1781335326448 remote: Compressing objects: 19% (84/439)_bk;t=1781335326448 remote: Compressing objects: 20% (88/439)_bk;t=1781335326448 remote: Compressing objects: 21% (93/439)_bk;t=1781335326448 remote: Compressing objects: 22% (97/439)_bk;t=1781335326448 remote: Compressing objects: 23% (101/439)_bk;t=1781335326448 remote: Compressing objects: 24% (106/439)_bk;t=1781335326448 remote: Compressing objects: 25% (110/439)_bk;t=1781335326448 remote: Compressing objects: 26% (115/439)_bk;t=1781335326448 remote: Compressing objects: 27% (119/439)_bk;t=1781335326448 remote: Compressing objects: 28% (123/439)_bk;t=1781335326448 remote: Compressing objects: 29% (128/439)_bk;t=1781335326448 remote: Compressing objects: 30% (132/439)_bk;t=1781335326448 remote: Compressing objects: 31% (137/439)_bk;t=1781335326448 remote: Compressing objects: 32% (141/439)_bk;t=1781335326448 remote: Compressing objects: 33% (145/439)_bk;t=1781335326448 remote: Compressing objects: 34% (150/439)_bk;t=1781335326448 remote: Compressing objects: 35% (154/439)_bk;t=1781335326448 remote: Compressing objects: 36% (159/439)_bk;t=1781335326448 remote: Compressing objects: 37% (163/439)_bk;t=1781335326448 remote: Compressing objects: 38% (167/439)_bk;t=1781335326448 remote: Compressing objects: 39% (172/439)_bk;t=1781335326448 remote: Compressing objects: 40% (176/439)_bk;t=1781335326448 remote: Compressing objects: 41% (180/439)_bk;t=1781335326448 remote: Compressing objects: 42% (185/439)_bk;t=1781335326449 remote: Compressing objects: 43% (189/439)_bk;t=1781335326449 remote: Compressing objects: 44% (194/439)_bk;t=1781335326449 remote: Compressing objects: 45% (198/439)_bk;t=1781335326449 remote: Compressing objects: 46% (202/439)_bk;t=1781335326449 remote: Compressing objects: 47% (207/439)_bk;t=1781335326449 remote: Compressing objects: 48% (211/439)_bk;t=1781335326449 remote: Compressing objects: 49% (216/439)_bk;t=1781335326449 remote: Compressing objects: 50% (220/439)_bk;t=1781335326449 remote: Compressing objects: 51% (224/439)_bk;t=1781335326449 remote: Compressing objects: 52% (229/439)_bk;t=1781335326449 remote: Compressing objects: 53% (233/439)_bk;t=1781335326449 remote: Compressing objects: 54% (238/439)_bk;t=1781335326449 remote: Compressing objects: 55% (242/439)_bk;t=1781335326449 remote: Compressing objects: 56% (246/439)_bk;t=1781335326449 remote: Compressing objects: 57% (251/439)_bk;t=1781335326449 remote: Compressing objects: 58% (255/439)_bk;t=1781335326449 remote: Compressing objects: 59% (260/439)_bk;t=1781335326449 remote: Compressing objects: 60% (264/439)_bk;t=1781335326449 remote: Compressing objects: 61% (268/439)_bk;t=1781335326449 remote: Compressing objects: 62% (273/439)_bk;t=1781335326449 remote: Compressing objects: 63% (277/439)_bk;t=1781335326449 remote: Compressing objects: 64% (281/439)_bk;t=1781335326449 remote: Compressing objects: 65% (286/439)_bk;t=1781335326449 remote: Compressing objects: 66% (290/439)_bk;t=1781335326449 remote: Compressing objects: 67% (295/439)_bk;t=1781335326449 remote: Compressing objects: 68% (299/439)_bk;t=1781335326449 remote: Compressing objects: 69% (303/439)_bk;t=1781335326449 remote: Compressing objects: 70% (308/439)_bk;t=1781335326449 remote: Compressing objects: 71% (312/439)_bk;t=1781335326449 remote: Compressing objects: 72% (317/439)_bk;t=1781335326449 remote: Compressing objects: 73% (321/439)_bk;t=1781335326449 remote: Compressing objects: 74% (325/439)_bk;t=1781335326449 remote: Compressing objects: 75% (330/439)_bk;t=1781335326449 remote: Compressing objects: 76% (334/439)_bk;t=1781335326449 remote: Compressing objects: 77% (339/439)_bk;t=1781335326449 remote: Compressing objects: 78% (343/439)_bk;t=1781335326449 remote: Compressing objects: 79% (347/439)_bk;t=1781335326449 remote: Compressing objects: 80% (352/439)_bk;t=1781335326449 remote: Compressing objects: 81% (356/439)_bk;t=1781335326449 remote: Compressing objects: 82% (360/439)_bk;t=1781335326449 remote: Compressing objects: 83% (365/439)_bk;t=1781335326449 remote: Compressing objects: 84% (369/439)_bk;t=1781335326449 remote: Compressing objects: 85% (374/439)_bk;t=1781335326449 remote: Compressing objects: 86% (378/439)_bk;t=1781335326449 remote: Compressing objects: 87% (382/439)_bk;t=1781335326449 remote: Compressing objects: 88% (387/439)_bk;t=1781335326449 remote: Compressing objects: 89% (391/439)_bk;t=1781335326449 remote: Compressing objects: 90% (396/439)_bk;t=1781335326449 remote: Compressing objects: 91% (400/439)_bk;t=1781335326449 remote: Compressing objects: 92% (404/439)_bk;t=1781335326449 remote: Compressing objects: 93% (409/439)_bk;t=1781335326449 remote: Compressing objects: 94% (413/439)_bk;t=1781335326449 remote: Compressing objects: 95% (418/439)_bk;t=1781335326449 remote: Compressing objects: 96% (422/439)_bk;t=1781335326449 remote: Compressing objects: 97% (426/439)_bk;t=1781335326449 remote: Compressing objects: 98% (431/439)_bk;t=1781335326449 remote: Compressing objects: 99% (435/439)_bk;t=1781335326449 remote: Compressing objects: 100% (439/439)_bk;t=1781335326449 remote: Compressing objects: 100% (439/439), done._bk;t=1781335326449 -_bk;t=1781335326450Receiving objects: 0% (1/2499) Receiving objects: 1% (25/2499) Receiving objects: 2% (50/2499) Receiving objects: 3% (75/2499) Receiving objects: 4% (100/2499) Receiving objects: 5% (125/2499) Receiving objects: 6% (150/2499) Receiving objects: 7% (175/2499) Receiving objects: 8% (200/2499) Receiving objects: 9% (225/2499) Receiving objects: 10% (250/2499) Receiving objects: 11% (275/2499) Receiving objects: 12% (300/2499) Receiving objects: 13% (325/2499) Receiving objects: 14% (350/2499) Receiving objects: 15% (375/2499) Receiving objects: 16% (400/2499) Receiving objects: 17% (425/2499) Receiving objects: 18% (450/2499) Receiving objects: 19% (475/2499) Receiving objects: 20% (500/2499) Receiving objects: 21% (525/2499) Receiving objects: 22% (550/2499) Receiving objects: 23% (575/2499) Receiving objects: 24% (600/2499) Receiving objects: 25% (625/2499) Receiving objects: 26% (650/2499) Receiving objects: 27% (675/2499) Receiving objects: 28% (700/2499) Receiving objects: 29% (725/2499) Receiving objects: 30% (750/2499) Receiving objects: 31% (775/2499) Receiving objects: 32% (800/2499) Receiving objects: 33% (825/2499) Receiving objects: 34% (850/2499) Receiving objects: 35% (875/2499) Receiving objects: 36% (900/2499) Receiving objects: 37% (925/2499) Receiving objects: 38% (950/2499) Receiving objects: 39% (975/2499) Receiving objects: 40% (1000/2499) Receiving objects: 41% (1025/2499) Receiving objects: 42% (1050/2499) Receiving objects: 43% (1075/2499) Receiving objects: 44% (1100/2499) Receiving objects: 45% (1125/2499) Receiving objects: 46% (1150/2499) Receiving objects: 47% (1175/2499) Receiving objects: 48% (1200/2499) Receiving objects: 49% (1225/2499) Receiving objects: 50% (1250/2499) Receiving objects: 51% (1275/2499) Receiving objects: 52% (1300/2499) Receiving objects: 53% (1325/2499) Receiving objects: 54% (1350/2499) Receiving objects: 55% (1375/2499) Receiving objects: 56% (1400/2499) Receiving objects: 57% (1425/2499) Receiving objects: 58% (1450/2499) Receiving objects: 59% (1475/2499) Receiving objects: 60% (1500/2499) Receiving objects: 61% (1525/2499) Receiving objects: 62% (1550/2499) Receiving objects: 63% (1575/2499) Receiving objects: 64% (1600/2499) Receiving objects: 65% (1625/2499) Receiving objects: 66% (1650/2499) Receiving objects: 67% (1675/2499) Receiving objects: 68% (1700/2499) Receiving objects: 69% (1725/2499) Receiving objects: 70% (1750/2499) Receiving objects: 71% (1775/2499) Receiving objects: 72% (1800/2499) Receiving objects: 73% (1825/2499) Receiving objects: 74% (1850/2499) Receiving objects: 75% (1875/2499) Receiving objects: 76% (1900/2499) Receiving objects: 77% (1925/2499) Receiving objects: 78% (1950/2499) Receiving objects: 79% (1975/2499) Receiving objects: 80% (2000/2499) Receiving objects: 81% (2025/2499) Receiving objects: 82% (2050/2499) Receiving objects: 83% (2075/2499) Receiving objects: 84% (2100/2499) Receiving objects: 85% (2125/2499) Receiving objects: 86% (2150/2499) Receiving objects: 87% (2175/2499) Receiving objects: 88% (2200/2499) Receiving objects: 89% (2225/2499) Receiving objects: 90% (2250/2499) Receiving objects: 91% (2275/2499) Receiving objects: 92% (2300/2499) Receiving objects: 93% (2325/2499) Receiving objects: 94% (2350/2499) Receiving objects: 95% (2375/2499) Receiving objects: 96% (2400/2499) remote: Total 2499 (delta 1360), reused 1209 (delta 1144), pack-reused 911 (from 3)_bk;t=1781335326585 -_bk;t=1781335326587Receiving objects: 97% (2425/2499) Receiving objects: 98% (2450/2499) Receiving objects: 99% (2475/2499) Receiving objects: 100% (2499/2499) Receiving objects: 100% (2499/2499), 1.57 MiB | 11.48 MiB/s, done. -_bk;t=1781335326587Resolving deltas: 0% (0/1525) Resolving deltas: 1% (16/1525) Resolving deltas: 2% (31/1525) Resolving deltas: 3% (46/1525) Resolving deltas: 4% (62/1525) Resolving deltas: 5% (77/1525) Resolving deltas: 6% (92/1525) Resolving deltas: 7% (107/1525) Resolving deltas: 8% (122/1525) Resolving deltas: 9% (138/1525) Resolving deltas: 10% (153/1525) Resolving deltas: 11% (169/1525) Resolving deltas: 12% (183/1525) Resolving deltas: 13% (199/1525) Resolving deltas: 14% (214/1525) Resolving deltas: 15% (229/1525) Resolving deltas: 16% (244/1525) Resolving deltas: 17% (260/1525) Resolving deltas: 18% (276/1525) Resolving deltas: 19% (290/1525) Resolving deltas: 20% (306/1525) Resolving deltas: 21% (323/1525) Resolving deltas: 22% (336/1525) Resolving deltas: 23% (351/1525) Resolving deltas: 24% (366/1525) Resolving deltas: 25% (382/1525) Resolving deltas: 26% (398/1525) Resolving deltas: 27% (413/1525) Resolving deltas: 28% (427/1525) Resolving deltas: 29% (445/1525) Resolving deltas: 30% (458/1525) Resolving deltas: 31% (473/1525) Resolving deltas: 32% (488/1525) Resolving deltas: 33% (504/1525) Resolving deltas: 34% (519/1525) Resolving deltas: 35% (534/1525) Resolving deltas: 36% (549/1525) Resolving deltas: 37% (565/1525) Resolving deltas: 38% (580/1525) Resolving deltas: 39% (595/1525) Resolving deltas: 40% (610/1525) Resolving deltas: 41% (626/1525) Resolving deltas: 42% (641/1525) Resolving deltas: 43% (656/1525) Resolving deltas: 44% (671/1525) Resolving deltas: 45% (687/1525) Resolving deltas: 46% (702/1525) Resolving deltas: 47% (717/1525) Resolving deltas: 48% (732/1525) Resolving deltas: 49% (748/1525) Resolving deltas: 50% (763/1525) Resolving deltas: 51% (778/1525) Resolving deltas: 52% (793/1525) Resolving deltas: 53% (809/1525) Resolving deltas: 54% (824/1525) Resolving deltas: 55% (839/1525) Resolving deltas: 56% (854/1525) Resolving deltas: 57% (870/1525) Resolving deltas: 58% (885/1525) Resolving deltas: 59% (900/1525) Resolving deltas: 60% (915/1525) Resolving deltas: 61% (931/1525) Resolving deltas: 62% (946/1525) Resolving deltas: 63% (961/1525) Resolving deltas: 64% (976/1525) Resolving deltas: 65% (992/1525) Resolving deltas: 66% (1007/1525) Resolving deltas: 67% (1022/1525) Resolving deltas: 68% (1037/1525) Resolving deltas: 69% (1053/1525) Resolving deltas: 70% (1068/1525) Resolving deltas: 71% (1083/1525) Resolving deltas: 72% (1098/1525) Resolving deltas: 73% (1114/1525) Resolving deltas: 74% (1129/1525) Resolving deltas: 75% (1144/1525) Resolving deltas: 76% (1159/1525) Resolving deltas: 77% (1175/1525) Resolving deltas: 78% (1190/1525) Resolving deltas: 79% (1205/1525) Resolving deltas: 80% (1220/1525) Resolving deltas: 81% (1236/1525) Resolving deltas: 82% (1251/1525) Resolving deltas: 83% (1266/1525) Resolving deltas: 84% (1281/1525) Resolving deltas: 85% (1297/1525) Resolving deltas: 86% (1312/1525) Resolving deltas: 87% (1327/1525) Resolving deltas: 88% (1342/1525) Resolving deltas: 89% (1358/1525) Resolving deltas: 90% (1373/1525) Resolving deltas: 91% (1388/1525) Resolving deltas: 92% (1403/1525) Resolving deltas: 93% (1419/1525) Resolving deltas: 94% (1434/1525) Resolving deltas: 95% (1449/1525) Resolving deltas: 96% (1464/1525) Resolving deltas: 97% (1480/1525) Resolving deltas: 98% (1495/1525) Resolving deltas: 99% (1510/1525) Resolving deltas: 100% (1525/1525) Resolving deltas: 100% (1525/1525), completed with 251 local objects. -_bk;t=1781335326735From https://github.com/bazel-contrib/rules_python -_bk;t=1781335326735 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335326737$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python -_bk;t=1781335326737$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335326738Cloning into '.'... -_bk;t=1781335326868POST git-upload-pack (175 bytes) -_bk;t=1781335326919POST git-upload-pack (gzip 2193 to 1014 bytes) -_bk;t=1781335326969remote: Enumerating objects: 2527, done._bk;t=1781335326969 -_bk;t=1781335326969remote: Counting objects: 0% (1/1589)_bk;t=1781335326969 remote: Counting objects: 1% (16/1589)_bk;t=1781335326969 remote: Counting objects: 2% (32/1589)_bk;t=1781335326969 remote: Counting objects: 3% (48/1589)_bk;t=1781335326969 remote: Counting objects: 4% (64/1589)_bk;t=1781335326969 remote: Counting objects: 5% (80/1589)_bk;t=1781335326969 remote: Counting objects: 6% (96/1589)_bk;t=1781335326969 remote: Counting objects: 7% (112/1589)_bk;t=1781335326969 remote: Counting objects: 8% (128/1589)_bk;t=1781335326969 remote: Counting objects: 9% (144/1589)_bk;t=1781335326969 remote: Counting objects: 10% (159/1589)_bk;t=1781335326969 remote: Counting objects: 11% (175/1589)_bk;t=1781335326969 remote: Counting objects: 12% (191/1589)_bk;t=1781335326969 remote: Counting objects: 13% (207/1589)_bk;t=1781335326969 remote: Counting objects: 14% (223/1589)_bk;t=1781335326969 remote: Counting objects: 15% (239/1589)_bk;t=1781335326969 remote: Counting objects: 16% (255/1589)_bk;t=1781335326969 remote: Counting objects: 17% (271/1589)_bk;t=1781335326969 remote: Counting objects: 18% (287/1589)_bk;t=1781335326969 remote: Counting objects: 19% (302/1589)_bk;t=1781335326969 remote: Counting objects: 20% (318/1589)_bk;t=1781335326969 remote: Counting objects: 21% (334/1589)_bk;t=1781335326969 remote: Counting objects: 22% (350/1589)_bk;t=1781335326969 remote: Counting objects: 23% (366/1589)_bk;t=1781335326969 remote: Counting objects: 24% (382/1589)_bk;t=1781335326969 remote: Counting objects: 25% (398/1589)_bk;t=1781335326969 remote: Counting objects: 26% (414/1589)_bk;t=1781335326969 remote: Counting objects: 27% (430/1589)_bk;t=1781335326969 remote: Counting objects: 28% (445/1589)_bk;t=1781335326969 remote: Counting objects: 29% (461/1589)_bk;t=1781335326969 remote: Counting objects: 30% (477/1589)_bk;t=1781335326969 remote: Counting objects: 31% (493/1589)_bk;t=1781335326969 remote: Counting objects: 32% (509/1589)_bk;t=1781335326969 remote: Counting objects: 33% (525/1589)_bk;t=1781335326969 remote: Counting objects: 34% (541/1589)_bk;t=1781335326969 remote: Counting objects: 35% (557/1589)_bk;t=1781335326969 remote: Counting objects: 36% (573/1589)_bk;t=1781335326969 remote: Counting objects: 37% (588/1589)_bk;t=1781335326969 remote: Counting objects: 38% (604/1589)_bk;t=1781335326969 remote: Counting objects: 39% (620/1589)_bk;t=1781335326969 remote: Counting objects: 40% (636/1589)_bk;t=1781335326969 remote: Counting objects: 41% (652/1589)_bk;t=1781335326969 remote: Counting objects: 42% (668/1589)_bk;t=1781335326969 remote: Counting objects: 43% (684/1589)_bk;t=1781335326969 remote: Counting objects: 44% (700/1589)_bk;t=1781335326969 remote: Counting objects: 45% (716/1589)_bk;t=1781335326969 remote: Counting objects: 46% (731/1589)_bk;t=1781335326969 remote: Counting objects: 47% (747/1589)_bk;t=1781335326969 remote: Counting objects: 48% (763/1589)_bk;t=1781335326969 remote: Counting objects: 49% (779/1589)_bk;t=1781335326969 remote: Counting objects: 50% (795/1589)_bk;t=1781335326969 remote: Counting objects: 51% (811/1589)_bk;t=1781335326969 remote: Counting objects: 52% (827/1589)_bk;t=1781335326969 remote: Counting objects: 53% (843/1589)_bk;t=1781335326969 remote: Counting objects: 54% (859/1589)_bk;t=1781335326969 remote: Counting objects: 55% (874/1589)_bk;t=1781335326969 remote: Counting objects: 56% (890/1589)_bk;t=1781335326969 remote: Counting objects: 57% (906/1589)_bk;t=1781335326969 remote: Counting objects: 58% (922/1589)_bk;t=1781335326969 remote: Counting objects: 59% (938/1589)_bk;t=1781335326969 remote: Counting objects: 60% (954/1589)_bk;t=1781335326969 remote: Counting objects: 61% (970/1589)_bk;t=1781335326969 remote: Counting objects: 62% (986/1589)_bk;t=1781335326969 remote: Counting objects: 63% (1002/1589)_bk;t=1781335326969 remote: Counting objects: 64% (1017/1589)_bk;t=1781335326969 remote: Counting objects: 65% (1033/1589)_bk;t=1781335326969 remote: Counting objects: 66% (1049/1589)_bk;t=1781335326969 remote: Counting objects: 67% (1065/1589)_bk;t=1781335326969 remote: Counting objects: 68% (1081/1589)_bk;t=1781335326969 remote: Counting objects: 69% (1097/1589)_bk;t=1781335326969 remote: Counting objects: 70% (1113/1589)_bk;t=1781335326969 remote: Counting objects: 71% (1129/1589)_bk;t=1781335326969 remote: Counting objects: 72% (1145/1589)_bk;t=1781335326969 remote: Counting objects: 73% (1160/1589)_bk;t=1781335326969 remote: Counting objects: 74% (1176/1589)_bk;t=1781335326969 remote: Counting objects: 75% (1192/1589)_bk;t=1781335326969 remote: Counting objects: 76% (1208/1589)_bk;t=1781335326969 remote: Counting objects: 77% (1224/1589)_bk;t=1781335326969 remote: Counting objects: 78% (1240/1589)_bk;t=1781335326969 remote: Counting objects: 79% (1256/1589)_bk;t=1781335326969 remote: Counting objects: 80% (1272/1589)_bk;t=1781335326969 remote: Counting objects: 81% (1288/1589)_bk;t=1781335326969 remote: Counting objects: 82% (1303/1589)_bk;t=1781335326969 remote: Counting objects: 83% (1319/1589)_bk;t=1781335326969 remote: Counting objects: 84% (1335/1589)_bk;t=1781335326969 remote: Counting objects: 85% (1351/1589)_bk;t=1781335326969 remote: Counting objects: 86% (1367/1589)_bk;t=1781335326969 remote: Counting objects: 87% (1383/1589)_bk;t=1781335326969 remote: Counting objects: 88% (1399/1589)_bk;t=1781335326969 remote: Counting objects: 89% (1415/1589)_bk;t=1781335326969 remote: Counting objects: 90% (1431/1589)_bk;t=1781335326969 remote: Counting objects: 91% (1446/1589)_bk;t=1781335326969 remote: Counting objects: 92% (1462/1589)_bk;t=1781335326969 remote: Counting objects: 93% (1478/1589)_bk;t=1781335326969 remote: Counting objects: 94% (1494/1589)_bk;t=1781335326969 remote: Counting objects: 95% (1510/1589)_bk;t=1781335326969 remote: Counting objects: 96% (1526/1589)_bk;t=1781335326969 remote: Counting objects: 97% (1542/1589)_bk;t=1781335326969 remote: Counting objects: 98% (1558/1589)_bk;t=1781335326969 remote: Counting objects: 99% (1574/1589)_bk;t=1781335326969 remote: Counting objects: 100% (1589/1589)_bk;t=1781335326969 remote: Counting objects: 100% (1589/1589), done._bk;t=1781335326969 -_bk;t=1781335326969remote: Compressing objects: 0% (1/375)_bk;t=1781335326969 remote: Compressing objects: 1% (4/375)_bk;t=1781335326969 remote: Compressing objects: 2% (8/375)_bk;t=1781335326969 remote: Compressing objects: 3% (12/375)_bk;t=1781335326969 remote: Compressing objects: 4% (15/375)_bk;t=1781335326969 remote: Compressing objects: 5% (19/375)_bk;t=1781335326969 remote: Compressing objects: 6% (23/375)_bk;t=1781335326969 remote: Compressing objects: 7% (27/375)_bk;t=1781335326969 remote: Compressing objects: 8% (30/375)_bk;t=1781335326969 remote: Compressing objects: 9% (34/375)_bk;t=1781335326969 remote: Compressing objects: 10% (38/375)_bk;t=1781335326969 remote: Compressing objects: 11% (42/375)_bk;t=1781335326969 remote: Compressing objects: 12% (45/375)_bk;t=1781335326969 remote: Compressing objects: 13% (49/375)_bk;t=1781335326969 remote: Compressing objects: 14% (53/375)_bk;t=1781335326969 remote: Compressing objects: 15% (57/375)_bk;t=1781335326969 remote: Compressing objects: 16% (60/375)_bk;t=1781335326969 remote: Compressing objects: 17% (64/375)_bk;t=1781335326969 remote: Compressing objects: 18% (68/375)_bk;t=1781335326969 remote: Compressing objects: 19% (72/375)_bk;t=1781335326969 remote: Compressing objects: 20% (75/375)_bk;t=1781335326969 remote: Compressing objects: 21% (79/375)_bk;t=1781335326969 remote: Compressing objects: 22% (83/375)_bk;t=1781335326969 remote: Compressing objects: 23% (87/375)_bk;t=1781335326969 remote: Compressing objects: 24% (90/375)_bk;t=1781335326969 remote: Compressing objects: 25% (94/375)_bk;t=1781335326969 remote: Compressing objects: 26% (98/375)_bk;t=1781335326969 remote: Compressing objects: 27% (102/375)_bk;t=1781335326969 remote: Compressing objects: 28% (105/375)_bk;t=1781335326969 remote: Compressing objects: 29% (109/375)_bk;t=1781335326969 remote: Compressing objects: 30% (113/375)_bk;t=1781335326969 remote: Compressing objects: 31% (117/375)_bk;t=1781335326969 remote: Compressing objects: 32% (120/375)_bk;t=1781335326969 remote: Compressing objects: 33% (124/375)_bk;t=1781335326969 remote: Compressing objects: 34% (128/375)_bk;t=1781335326969 remote: Compressing objects: 35% (132/375)_bk;t=1781335326969 remote: Compressing objects: 36% (135/375)_bk;t=1781335326969 remote: Compressing objects: 37% (139/375)_bk;t=1781335326970 remote: Compressing objects: 38% (143/375)_bk;t=1781335326970 remote: Compressing objects: 39% (147/375)_bk;t=1781335326970 remote: Compressing objects: 40% (150/375)_bk;t=1781335326970 remote: Compressing objects: 41% (154/375)_bk;t=1781335326970 remote: Compressing objects: 42% (158/375)_bk;t=1781335326970 remote: Compressing objects: 43% (162/375)_bk;t=1781335326970 remote: Compressing objects: 44% (165/375)_bk;t=1781335326970 remote: Compressing objects: 45% (169/375)_bk;t=1781335326970 remote: Compressing objects: 46% (173/375)_bk;t=1781335326981 remote: Compressing objects: 47% (177/375)_bk;t=1781335326981 remote: Compressing objects: 48% (180/375)_bk;t=1781335326981 remote: Compressing objects: 49% (184/375)_bk;t=1781335326981 remote: Compressing objects: 50% (188/375)_bk;t=1781335326981 remote: Compressing objects: 51% (192/375)_bk;t=1781335326981 remote: Compressing objects: 52% (195/375)_bk;t=1781335326981 remote: Compressing objects: 53% (199/375)_bk;t=1781335326981 remote: Compressing objects: 54% (203/375)_bk;t=1781335326981 remote: Compressing objects: 55% (207/375)_bk;t=1781335326981 remote: Compressing objects: 56% (210/375)_bk;t=1781335326981 remote: Compressing objects: 57% (214/375)_bk;t=1781335326981 remote: Compressing objects: 58% (218/375)_bk;t=1781335326981 remote: Compressing objects: 59% (222/375)_bk;t=1781335326981 remote: Compressing objects: 60% (225/375)_bk;t=1781335326981 remote: Compressing objects: 61% (229/375)_bk;t=1781335326981 remote: Compressing objects: 62% (233/375)_bk;t=1781335326981 remote: Compressing objects: 63% (237/375)_bk;t=1781335326981 remote: Compressing objects: 64% (240/375)_bk;t=1781335326981 remote: Compressing objects: 65% (244/375)_bk;t=1781335326981 remote: Compressing objects: 66% (248/375)_bk;t=1781335326981 remote: Compressing objects: 67% (252/375)_bk;t=1781335326981 remote: Compressing objects: 68% (255/375)_bk;t=1781335326981 remote: Compressing objects: 69% (259/375)_bk;t=1781335326981 remote: Compressing objects: 70% (263/375)_bk;t=1781335326981 remote: Compressing objects: 71% (267/375)_bk;t=1781335326981 remote: Compressing objects: 72% (270/375)_bk;t=1781335326981 remote: Compressing objects: 73% (274/375)_bk;t=1781335326981 remote: Compressing objects: 74% (278/375)_bk;t=1781335326981 remote: Compressing objects: 75% (282/375)_bk;t=1781335326981 remote: Compressing objects: 76% (285/375)_bk;t=1781335326981 remote: Compressing objects: 77% (289/375)_bk;t=1781335326981 remote: Compressing objects: 78% (293/375)_bk;t=1781335326981 remote: Compressing objects: 79% (297/375)_bk;t=1781335326981 remote: Compressing objects: 80% (300/375)_bk;t=1781335326981 remote: Compressing objects: 81% (304/375)_bk;t=1781335326981 remote: Compressing objects: 82% (308/375)_bk;t=1781335326981 remote: Compressing objects: 83% (312/375)_bk;t=1781335326981 remote: Compressing objects: 84% (315/375)_bk;t=1781335326981 remote: Compressing objects: 85% (319/375)_bk;t=1781335326981 remote: Compressing objects: 86% (323/375)_bk;t=1781335326981 remote: Compressing objects: 87% (327/375)_bk;t=1781335326981 remote: Compressing objects: 88% (330/375)_bk;t=1781335326981 remote: Compressing objects: 89% (334/375)_bk;t=1781335326981 remote: Compressing objects: 90% (338/375)_bk;t=1781335326981 remote: Compressing objects: 91% (342/375)_bk;t=1781335326981 remote: Compressing objects: 92% (345/375)_bk;t=1781335326981 remote: Compressing objects: 93% (349/375)_bk;t=1781335326981 remote: Compressing objects: 94% (353/375)_bk;t=1781335326981 remote: Compressing objects: 95% (357/375)_bk;t=1781335326981 remote: Compressing objects: 96% (360/375)_bk;t=1781335326981 remote: Compressing objects: 97% (364/375)_bk;t=1781335326981 remote: Compressing objects: 98% (368/375)_bk;t=1781335326981 remote: Compressing objects: 99% (372/375)_bk;t=1781335326981 remote: Compressing objects: 100% (375/375)_bk;t=1781335326981 remote: Compressing objects: 100% (375/375), done._bk;t=1781335326981 -_bk;t=1781335326994Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1413), reused 1218 (delta 1214), pack-reused 938 (from 3)_bk;t=1781335327112 -_bk;t=1781335327113Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.58 MiB | 13.16 MiB/s, done. -_bk;t=1781335327115Resolving deltas: 0% (0/1586) Resolving deltas: 1% (16/1586) Resolving deltas: 2% (32/1586) Resolving deltas: 3% (48/1586) Resolving deltas: 4% (64/1586) Resolving deltas: 5% (80/1586) Resolving deltas: 6% (96/1586) Resolving deltas: 7% (112/1586) Resolving deltas: 8% (127/1586) Resolving deltas: 9% (143/1586) Resolving deltas: 10% (159/1586) Resolving deltas: 11% (175/1586) Resolving deltas: 12% (191/1586) Resolving deltas: 13% (207/1586) Resolving deltas: 14% (223/1586) Resolving deltas: 15% (238/1586) Resolving deltas: 16% (254/1586) Resolving deltas: 17% (270/1586) Resolving deltas: 18% (286/1586) Resolving deltas: 19% (302/1586) Resolving deltas: 20% (318/1586) Resolving deltas: 21% (334/1586) Resolving deltas: 22% (349/1586) Resolving deltas: 23% (365/1586) Resolving deltas: 24% (381/1586) Resolving deltas: 25% (397/1586) Resolving deltas: 26% (413/1586) Resolving deltas: 27% (429/1586) Resolving deltas: 28% (445/1586) Resolving deltas: 29% (460/1586) Resolving deltas: 30% (476/1586) Resolving deltas: 31% (492/1586) Resolving deltas: 32% (508/1586) Resolving deltas: 33% (524/1586) Resolving deltas: 34% (540/1586) Resolving deltas: 35% (556/1586) Resolving deltas: 36% (571/1586) Resolving deltas: 37% (587/1586) Resolving deltas: 38% (603/1586) Resolving deltas: 39% (619/1586) Resolving deltas: 40% (635/1586) Resolving deltas: 41% (651/1586) Resolving deltas: 42% (667/1586) Resolving deltas: 43% (682/1586) Resolving deltas: 44% (698/1586) Resolving deltas: 45% (714/1586) Resolving deltas: 46% (730/1586) Resolving deltas: 47% (746/1586) Resolving deltas: 48% (762/1586) Resolving deltas: 49% (778/1586) Resolving deltas: 50% (793/1586) Resolving deltas: 51% (809/1586) Resolving deltas: 52% (825/1586) Resolving deltas: 53% (841/1586) Resolving deltas: 54% (857/1586) Resolving deltas: 55% (873/1586) Resolving deltas: 56% (889/1586) Resolving deltas: 57% (905/1586) Resolving deltas: 58% (920/1586) Resolving deltas: 59% (936/1586) Resolving deltas: 60% (952/1586) Resolving deltas: 61% (968/1586) Resolving deltas: 62% (984/1586) Resolving deltas: 63% (1000/1586) Resolving deltas: 64% (1016/1586) Resolving deltas: 65% (1031/1586) Resolving deltas: 66% (1047/1586) Resolving deltas: 67% (1063/1586) Resolving deltas: 68% (1079/1586) Resolving deltas: 69% (1095/1586) Resolving deltas: 70% (1111/1586) Resolving deltas: 71% (1127/1586) Resolving deltas: 72% (1142/1586) Resolving deltas: 73% (1158/1586) Resolving deltas: 74% (1174/1586) Resolving deltas: 75% (1190/1586) Resolving deltas: 76% (1206/1586) Resolving deltas: 77% (1222/1586) Resolving deltas: 78% (1238/1586) Resolving deltas: 79% (1253/1586) Resolving deltas: 80% (1269/1586) Resolving deltas: 81% (1285/1586) Resolving deltas: 82% (1301/1586) Resolving deltas: 83% (1317/1586) Resolving deltas: 84% (1333/1586) Resolving deltas: 85% (1349/1586) Resolving deltas: 86% (1364/1586) Resolving deltas: 87% (1380/1586) Resolving deltas: 88% (1396/1586) Resolving deltas: 89% (1412/1586) Resolving deltas: 90% (1428/1586) Resolving deltas: 91% (1444/1586) Resolving deltas: 92% (1460/1586) Resolving deltas: 93% (1475/1586) Resolving deltas: 94% (1491/1586) Resolving deltas: 95% (1507/1586) Resolving deltas: 96% (1523/1586) Resolving deltas: 97% (1539/1586) Resolving deltas: 98% (1555/1586) Resolving deltas: 99% (1571/1586) Resolving deltas: 100% (1586/1586) Resolving deltas: 100% (1586/1586), completed with 268 local objects. -_bk;t=1781335327392$ git clean -ffxdq -_bk;t=1781335327399# Fetch and checkout pull request head from GitHub -_bk;t=1781335327399$ git fetch -v --prune -- origin refs/pull/3812/head 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335327525POST git-upload-pack (395 bytes) -_bk;t=1781335327571From https://github.com/bazel-contrib/rules_python -_bk;t=1781335327571 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335327571 * branch 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -> FETCH_HEAD -_bk;t=1781335327577# FETCH_HEAD is now `92c48e57c6353feb0452ad82f7cfc2c744616fa4` -_bk;t=1781335327577$ git checkout -f 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335327641Note: switching to '92c48e57c6353feb0452ad82f7cfc2c744616fa4'. -_bk;t=1781335327641 -_bk;t=1781335327641You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335327641changes and commit them, and you can discard any commits you make in this -_bk;t=1781335327641state without impacting any branches by switching back to a branch. -_bk;t=1781335327641 -_bk;t=1781335327641If you want to create a new branch to retain commits you create, you may -_bk;t=1781335327641do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335327641 -_bk;t=1781335327641 git switch -c -_bk;t=1781335327641 -_bk;t=1781335327641Or undo this operation with: -_bk;t=1781335327641 -_bk;t=1781335327641 git switch - -_bk;t=1781335327641 -_bk;t=1781335327641Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335327641 -_bk;t=1781335327641HEAD is now at 92c48e57 feat(skills): Output swarm summary and job IDs in monitor_remote_ci -_bk;t=1781335327641# Cleaning again to catch any post-checkout changes -_bk;t=1781335327641$ git clean -ffxdq -_bk;t=1781335327648# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335327648# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335327648~~~ Running agent post-checkout hook -_bk;t=1781335327648$ /etc/buildkite-agent/hooks/post-checkout -_bk;t=1781335327679CHECKOUT_END_TIME: 1781335327665 -_bk;t=1781335327679CHECKOUT_DURATION_S: 1.504 -_bk;t=1781335327690Added: -_bk;t=1781335327690+ CHECKOUT_END_TIME -_bk;t=1781335327703Added: -_bk;t=1781335327703+ CHECKOUT_DURATION_S -_bk;t=1781335327718~~~ Running agent pre-command hook -_bk;t=1781335327718$ /etc/buildkite-agent/hooks/pre-command -_bk;t=1781335327747PREP_DURATION_S: 0.068 -_bk;t=1781335327759Added: -_bk;t=1781335327759+ PREP_DURATION_S -_bk;t=1781335327775~~~ Running plugin docker-buildkite-plugin command hook -_bk;t=1781335327775$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command -_bk;t=1781335327826--- :docker: Pulling gcr.io/bazel-public/ubuntu2204 -_bk;t=1781335327838Using default tag: latest -_bk;t=1781335329281latest: Pulling from bazel-public/ubuntu2204 -_bk;t=1781335329333Digest: sha256:3024b6fbc873688940dfe144c5f1a6cfe0c450bd287748c6f170db01e2459981 -_bk;t=1781335329333Status: Image is up to date for gcr.io/bazel-public/ubuntu2204:latest -_bk;t=1781335329334gcr.io/bazel-public/ubuntu2204:latest -_bk;t=1781335329350docker network host already exists -_bk;t=1781335329350--- :docker: Running command in gcr.io/bazel-public/ubuntu2204 -_bk;t=1781335329350$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_REPO --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --env BUILDKITE_JOB_ID --env BUILDKITE_COMMAND --env BUILDKITE_STEP_ID --env BUILDKITE_REBUILT_FROM_BUILD_ID --env CI --env BUILDKITE --env BUILDKITE_RETRY_COUNT --env BUILDKITE_SOURCE --env BUILDKITE_TAG --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_PULL_REQUEST --env BUILDKITE_PIPELINE_NAME --env BUILDKITE_COMMIT --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_BRANCH --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_STEP_KEY --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_PLUGINS --env BUILDKITE_BUILD_URL --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_TIMEOUT --env BUILDKITE_AGENT_NAME --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_ID --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_AGENT_ID --env BUILDKITE_PIPELINE_ID --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_MESSAGE --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_ORGANIZATION_SLUG --env BUILDKITE_LABEL --env BUILDKITE_COMPUTE_TYPE --network host --label com.buildkite.job-id=019ebfdb-dffb-4f9a-b540-dce4625e2d98 gcr.io/bazel-public/ubuntu2204 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py\npython3 bazelci.py runner --task=ubuntu_rolling' -_bk;t=1781335330290 -_bk;t=1781335330290 -_bk;t=1781335330290--- :bazel: Using Bazel version rolling -_bk;t=1781335330290 -_bk;t=1781335330290 -_bk;t=1781335330290bazel --version -_bk;t=17813353305432026/06/13 07:22:10 Downloading https://releases.bazel.build/10.0.0/rolling/10.0.0-pre.20260601.1/bazel-10.0.0-pre.20260601.1-linux-x86_64... -_bk;t=1781335330559 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 4 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 9 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 14 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 19 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 21 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 24 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 26 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 27 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 29 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 31 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 32 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 34 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 36 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 37 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 39 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 41 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 42 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 44 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (74%) Downloading: 46 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 47 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 49 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 50 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 52 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 54 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 55 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 57 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 59 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 60 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) -_bk;t=1781335331099bazel 10.0.0-pre.20260601.1 -_bk;t=1781335331101bazel info output_base -_bk;t=1781335331243Extracting Bazel installation... -_bk;t=1781335332539Starting local Bazel server (10.0.0-pre.20260601.1) and connecting to it... -_bk;t=1781335333916WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335333922WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335333922WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335333922WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335333922WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335333922WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335333922INFO: Invocation ID: a585cc88-3ea1-47d9-beae-ba23a70013d2 -_bk;t=1781335333967 -_bk;t=1781335333967 -_bk;t=1781335333967--- :information_source: Bazel Info -_bk;t=1781335333967 -_bk;t=1781335333967 -_bk;t=1781335333967bazel --nosystem_rc --nohome_rc version -_bk;t=1781335334166WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335334166WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335334166WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335334166WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335334166INFO: Invocation ID: 4fe99a9f-4c47-47f5-9078-9f78721f870c -_bk;t=1781335334171Bazelisk version: v1.28.1 -_bk;t=1781335334171Build label: 10.0.0-pre.20260601.1 -_bk;t=1781335334171Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer -_bk;t=1781335334171Build time: Thu Jun 11 17:11:25 2026 (1781197885) -_bk;t=1781335334171Build timestamp: 1781197885 -_bk;t=1781335334171Build timestamp as int: 1781197885 -_bk;t=1781335334171 -_bk;t=1781335334171bazel --nosystem_rc --nohome_rc info -_bk;t=1781335334363WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335334363WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335334363WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335334363WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335334363WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335334363WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335334363INFO: Invocation ID: fce045d9-eccb-4075-8977-cf30655c0d8d -_bk;t=1781335334487WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335335551WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335551WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335551WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335551WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336221bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335336222bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335336222bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335336222character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 -_bk;t=1781335336223command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log -_bk;t=1781335336223committed-heap-size: 117MB -_bk;t=1781335336224execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main -_bk;t=1781335336224gc-count: 14 -_bk;t=1781335336225gc-time: 47ms -_bk;t=1781335336225install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d -_bk;t=1781335336226java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d/embedded_tools/jdk -_bk;t=1781335336226java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335336227java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335336227local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335336228max-heap-size: 31658MB -_bk;t=1781335336228output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 -_bk;t=1781335336229output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out -_bk;t=1781335336229package_path: %workspace% -_bk;t=1781335336229release: release 10.0.0-pre.20260601.1 -_bk;t=1781335336231repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335336231server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-072212.45 -_bk;t=1781335336232server_pid: 45 -_bk;t=1781335336233used-heap-size: 91MB -_bk;t=1781335336233workspace: /workdir -_bk;t=1781335336249 -_bk;t=1781335336252 -_bk;t=1781335336252--- :information_source: Environment Variables -_bk;t=1781335336252 -_bk;t=1781335336252 -_bk;t=1781335336252BUILDKITE_PULL_REQUEST_LABELS=() -_bk;t=1781335336252BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) -_bk;t=1781335336252LANGUAGE=(C.UTF-8) -_bk;t=1781335336252BUILDKITE_ARTIFACT_PATHS=() -_bk;t=1781335336252BUILDKITE_TRIGGERED_FROM_BUILD_ID=() -_bk;t=1781335336252BUILDKITE_BUILD_CREATOR=(Richard Levasseur) -_bk;t=1781335336252CI=(true) -_bk;t=1781335336252HOSTNAME=(bk-docker-p2kk) -_bk;t=1781335336252BUILDKITE_GITHUB_ACTION=(synchronize) -_bk;t=1781335336252BUILDKITE_AGENT_ID=(019ebfce-538c-4036-b6c9-2025afeb657d) -_bk;t=1781335336252BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) -_bk;t=1781335336252BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) -_bk;t=1781335336252BUILDKITE_AGENT_META_DATA_QUEUE=(default) -_bk;t=1781335336252BUILDKITE_BUILD_ID=(019ebfdb-afc0-4350-be53-56e1e1dcf7df) -_bk;t=1781335336252HOME=(/var/lib/buildkite-agent) -_bk;t=1781335336252BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() -_bk;t=1781335336252BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335336252BUILDKITE_STEP_KEY=() -_bk;t=1781335336252BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) -_bk;t=1781335336252BUILDKITE=(true) -_bk;t=1781335336252BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) -_bk;t=1781335336252BUILDKITE_COMPUTE_TYPE=(self-hosted) -_bk;t=1781335336252BUILDKITE_BUILD_NUMBER=(15720) -_bk;t=1781335336252BUILDKITE_PIPELINE_PROVIDER=(github) -_bk;t=1781335336252BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() -_bk;t=1781335336252BUILDKITE_TAG=() -_bk;t=1781335336252BUILDKITE_AGENT_META_DATA_OS=(linux) -_bk;t=1781335336252BUILDKITE_JOB_ID=(019ebfdb-dffb-4f9a-b540-dce4625e2d98) -_bk;t=1781335336252BUILDKITE_COMMIT=(92c48e57c6353feb0452ad82f7cfc2c744616fa4) -_bk;t=1781335336252BUILDKITE_PULL_REQUEST=(3812) -_bk;t=1781335336252TERM=(xterm) -_bk;t=1781335336252BUILDKITE_PIPELINE_SLUG=(rules-python-python) -_bk;t=1781335336252BUILDKITE_COMMIT_RESOLVED=(true) -_bk;t=1781335336252BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) -_bk;t=1781335336252PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) -_bk;t=1781335336252PREP_DURATION_S=(0.068) -_bk;t=1781335336252CHECKOUT_DURATION_S=(1.504) -_bk;t=1781335336252BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) -_bk;t=1781335336252BUILDKITE_GITHUB_EVENT=(pull_request) -_bk;t=1781335336252BUILDKITE_SOURCE=(webhook) -_bk;t=1781335336252BUILDKITE_RETRY_COUNT=(0) -_bk;t=1781335336252BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) -_bk;t=1781335336252LANG=(C.UTF-8) -_bk;t=1781335336252BUILDKITE_REBUILT_FROM_BUILD_ID=() -_bk;t=1781335336252BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/ubuntu2204","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) -_bk;t=1781335336252BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98) -_bk;t=1781335336252DEBIAN_FRONTEND=(noninteractive) -_bk;t=1781335336252BUILDKITE_LABEL=(Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS) -_bk;t=1781335336252BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) -_bk;t=1781335336252BUILDKITE_PROJECT_PROVIDER=(github) -_bk;t=1781335336252BUILDKITE_ORGANIZATION_SLUG=(bazel) -_bk;t=1781335336252BUILDKITE_AGENT_META_DATA_KIND=(docker) -_bk;t=1781335336252BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() -_bk;t=1781335336252BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335336252BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py -_bk;t=1781335336252python3 bazelci.py runner --task=ubuntu_rolling) -_bk;t=1781335336252BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15720) -_bk;t=1781335336252BUILDKITE_TIMEOUT=(480) -_bk;t=1781335336252BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) -_bk;t=1781335336252BUILDKITE_STEP_ID=(019ebfdb-decb-45d9-8cdb-a5611b685fae) -_bk;t=1781335336252BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py -_bk;t=1781335336252python3 bazelci.py runner --task=ubuntu_rolling) -_bk;t=1781335336252BUILDKITE_PIPELINE_NAME=(rules_python :python:) -_bk;t=1781335336252LC_ALL=(C.UTF-8) -_bk;t=1781335336252JAVA_HOME=(/usr/lib/jvm/java-21-openjdk-amd64) -_bk;t=1781335336252PWD=(/workdir) -_bk;t=1781335336252ANDROID_HOME=(/opt/android-sdk-linux) -_bk;t=1781335336252BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) -_bk;t=1781335336252BUILDKITE_AGENT_NAME=(bk-docker-p2kk) -_bk;t=1781335336252BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) -_bk;t=1781335336252BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) -_bk;t=1781335336252ANDROID_NDK_HOME=(/opt/android-ndk-r15c) -_bk;t=1781335336252BAZELCI_TASK=(ubuntu_rolling) -_bk;t=1781335336252BAZELISK_USER_AGENT=(Bazelisk/BazelCI) -_bk;t=1781335336252USE_BAZEL_VERSION=(rolling) -_bk;t=1781335336252OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) -_bk;t=1781335336252 -_bk;t=1781335336252 -_bk;t=1781335336252--- :dart: Calculating targets -_bk;t=1781335336252 -_bk;t=1781335336252 -_bk;t=1781335336254curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmpdwhkjv8z/bazelci-agent -_bk;t=1781335336254 -_bk;t=1781335336254 -_bk;t=1781335336254--- :bazel: Computing flags for test step -_bk;t=1781335336254 -_bk;t=1781335336254 -_bk;t=1781335336254Adding to platform cache key: b'bazel' -_bk;t=1781335336254Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335336254Adding to platform cache key: b'ubuntu2204' -_bk;t=1781335336255 -_bk;t=1781335336255 -_bk;t=1781335336255+++ :bazel: Test (10.0.0-pre.20260601.1) -_bk;t=1781335336255 -_bk;t=1781335336255 -_bk;t=1781335336255bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmpdwhkjv8z/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --keep_going --test_tag_filters=-integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=USE_BAZEL_VERSION --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- //tests/... -_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335336588(07:22:16) WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335336588(07:22:16) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335336588(07:22:16) WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335336588(07:22:16) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335336588(07:22:16) INFO: Invocation ID: fbdda209-4c6d-46f6-bc64-b5077668d829 -_bk;t=1781335336588(07:22:16) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/fbdda209-4c6d-46f6-bc64-b5077668d829 -_bk;t=1781335336589(07:22:16) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks -_bk;t=1781335336589(07:22:16) INFO: Options provided by the client: -_bk;t=1781335336589 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: -_bk;t=1781335336589 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335336589 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335336589 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335336589(07:22:16) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335336589 'test' options: --test_output=errors -_bk;t=1781335336589(07:22:16) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335336623(07:22:16) INFO: Current date is 2026-06-13 -_bk;t=1781335336623(07:22:16) -_bk;t=1781335336624 _bk;t=1781335336624(07:22:16) Computing main repo mapping: -_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336697(07:22:16) Computing main repo mapping: -_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336697(07:22:16) Computing main repo mapping: -_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336697(07:22:16) Computing main repo mapping: -_bk;t=1781335336697 _bk;t=1781335336697(07:22:16) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336697(07:22:16) Computing main repo mapping: -_bk;t=1781335336768/tmp/tmpdwhkjv8z/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmpdwhkjv8z/test_bep.json -_bk;t=1781335337316 _bk;t=1781335337316(07:22:17) Loading: -_bk;t=1781335337333 _bk;t=1781335337333(07:22:17) Loading: 1 packages loaded -_bk;t=1781335340014 _bk;t=1781335340014(07:22:20) Analyzing: 590 targets (132 packages loaded, 0 targets configured) -_bk;t=1781335340028 _bk;t=1781335340028(07:22:20) Analyzing: 590 targets (132 packages loaded, 0 targets configured) -_bk;t=1781335340028 currently loading: @@platforms// -_bk;t=1781335340028 -_bk;t=1781335346601 _bk;t=1781335346601 _bk;t=1781335346601 _bk;t=1781335346601(07:22:26) Analyzing: 590 targets (214 packages loaded, 461,557 targets configured) -_bk;t=1781335346601 currently loading: tools/launcher -_bk;t=1781335346601 -_bk;t=1781335351629 _bk;t=1781335351629 _bk;t=1781335351629 _bk;t=1781335351629(07:22:31) Analyzing: 590 targets (309 packages loaded, 527,413 targets configured, 3 aspect applications) -_bk;t=1781335351629 Fetching repository @@+python+python_3_12_4_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_10_4_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_12_13_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_12_0_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_13_9_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335351629 Fetching repository @@+python+python_3_11_6_x86_64-unknown-linux-gnu; starting 4s ... (39 fetches) -_bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635 _bk;t=1781335356635(07:22:36) Analyzing: 590 targets (408 packages loaded, 663,166 targets configured, 3 aspect applications) -_bk;t=1781335356635 currently loading: @@+pip+rules_python_publish_deps_311_keyring_py3_none_any_552a3f7a// ... (2 packages) -_bk;t=1781335356635 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335356635 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335356635 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335356635 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335356635 Fetching ...ython+python_3_14_1_x86_64-unknown-linux-gnu; Extracting cpython-3.14.1_20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -_bk;t=1781335356635 Fetching repository @@+python+python_3_11_7_x86_64-unknown-linux-gnu; starting -_bk;t=1781335356635 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting -_bk;t=1781335356635 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting ... (42 fetches) -_bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056 _bk;t=1781335359056(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335359056value of: string -_bk;t=1781335359056expected: 3.10.20 -_bk;t=1781335359056actual: 3.11.15 -_bk;t=1781335359056 -_bk;t=1781335359056(07:22:39) Analyzing: 590 targets (458 packages loaded, 760,511 targets configured, 97 aspect applications) -_bk;t=1781335359056[53 / 121] checking cached actions -_bk;t=1781335359056 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359056 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359056 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359056 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359056 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359056 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359056 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359056 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076 _bk;t=1781335359076(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335359076value of: string -_bk;t=1781335359076expected: 3.12.13 -_bk;t=1781335359076actual: 3.11.15 -_bk;t=1781335359076 -_bk;t=1781335359076(07:22:39) Analyzing: 590 targets (458 packages loaded, 760,875 targets configured, 99 aspect applications) -_bk;t=1781335359076[60 / 133] 6 actions, 3 running -_bk;t=1781335359076 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local -_bk;t=1781335359076 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local -_bk;t=1781335359076 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local -_bk;t=1781335359076 [Prepa] Writing repo mapping manifest for //tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename -_bk;t=1781335359076 [Prepa] Writing script tests/get_release_info/test_file_url.sh -_bk;t=1781335359076 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359076 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359076 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359076 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359076 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359076 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359076 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359076 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084 _bk;t=1781335359084(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335359084value of: string -_bk;t=1781335359084expected: 3.13.13 -_bk;t=1781335359084actual: 3.11.15 -_bk;t=1781335359084 -_bk;t=1781335359084(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,304 targets configured, 102 aspect applications) -_bk;t=1781335359084[66 / 147] 5 actions, 4 running -_bk;t=1781335359084 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local -_bk;t=1781335359084 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local -_bk;t=1781335359084 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local -_bk;t=1781335359084 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local -_bk;t=1781335359084 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh -_bk;t=1781335359084 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359084 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359084 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359084 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359084 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359084 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359084 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359084 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085 _bk;t=1781335359085(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335359085value of: string -_bk;t=1781335359085expected: 3.14.4 -_bk;t=1781335359085actual: 3.11.15 -_bk;t=1781335359085 -_bk;t=1781335359085(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,336 targets configured, 102 aspect applications) -_bk;t=1781335359085[66 / 150] 5 actions, 4 running -_bk;t=1781335359085 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local -_bk;t=1781335359085 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local -_bk;t=1781335359085 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local -_bk;t=1781335359085 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local -_bk;t=1781335359085 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh -_bk;t=1781335359085 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359085 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359085 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359085 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335359085 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359085 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359085 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359085 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088 _bk;t=1781335359088(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335359088value of: string -_bk;t=1781335359088expected: 3.15.0a8 -_bk;t=1781335359088actual: 3.11.15 -_bk;t=1781335359088 -_bk;t=1781335359088(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,368 targets configured, 102 aspect applications) -_bk;t=1781335359088[66 / 154] 5 actions, 4 running -_bk;t=1781335359088 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local -_bk;t=1781335359088 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local -_bk;t=1781335359088 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local -_bk;t=1781335359088 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local -_bk;t=1781335359088 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh -_bk;t=1781335359088 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359088 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359088 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359088 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335359088 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359088 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359088 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359088 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094 _bk;t=1781335359094(07:22:39) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335359094value of: string -_bk;t=1781335359094expected: 3.9.25 -_bk;t=1781335359094actual: 3.11.15 -_bk;t=1781335359094 -_bk;t=1781335359094(07:22:39) Analyzing: 590 targets (458 packages loaded, 761,487 targets configured, 102 aspect applications) -_bk;t=1781335359094[66 / 156] 7 actions, 4 running -_bk;t=1781335359094 Writing repo mapping manifest for //tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info; 0s local -_bk;t=1781335359094 Writing script tests/pypi/python_tag/test_without_version.sh; 0s local -_bk;t=1781335359094 Writing repo mapping manifest for //tests/get_release_info:test_file_url; 0s local -_bk;t=1781335359094 Writing repo mapping manifest for //tests/cc/current_py_cc_libs:python_abi3_libs_linking_test; 0s local -_bk;t=1781335359094 [Prepa] Writing script tests/pypi/parse_requirements/test_optional_hash.sh -_bk;t=1781335359094 [Prepa] Writing script tests/envsubst/test_envsubst_nested_braces_inner_var.sh -_bk;t=1781335359094 [Prepa] Writing script tests/py_runtime/test_interpreter_binary_with_single_output_and_runfiles.sh -_bk;t=1781335359094 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359094 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359094 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359094 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335359094 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359094 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359094 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359094 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178 _bk;t=1781335359178(07:22:39) DEBUG: /workdir/python/private/repo_utils.bzl:101:16: -_bk;t=1781335359178rules_python:unit-test WARNING: Could not find a whl or an sdist with sha256=deadbeef -_bk;t=1781335359178(07:22:39) Analyzing: 590 targets (458 packages loaded, 762,919 targets configured, 108 aspect applications) -_bk;t=1781335359178[86 / 194] checking cached actions -_bk;t=1781335359178 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359178 Fetching repository @@+python+python_3_14_3_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359178 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 7s -_bk;t=1781335359178 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335359178 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335359179 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359179 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335359179 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 5s ... (39 fetches) -_bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215 _bk;t=1781335362215(07:22:42) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335362215====================================================================== -_bk;t=1781335362215WARNING: Target: @@//tests/bootstrap_impls:_run_binary_bootstrap_script_zip_yes_test_bin -_bk;t=1781335362215 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335362215 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335362215 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335362215 instructions and guide, see: -_bk;t=1781335362215 -_bk;t=1781335362215 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335362215====================================================================== -_bk;t=1781335362215(07:22:42) Analyzing: 590 targets (503 packages loaded, 795,690 targets configured, 133 aspect applications) -_bk;t=1781335362215 currently loading: @@+pip+dev_pip_314_sphinxcontrib_devhelp_py3_none_any_aefb8b83// -_bk;t=1781335362215[1,918 / 2,809] 2 actions running -_bk;t=1781335362215 //tests/venv_site_packages_libs:whl_scripts_runnable_test; 0s local -_bk;t=1781335362215 Creating source manifest for //tests/pypi/select_whl:test_select_cp312; 0s local -_bk;t=1781335362215 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335362215 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335362215 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335362215 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362215 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362215 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362215 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362215 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 8s ... (30 fetches) -_bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251 _bk;t=1781335362251(07:22:42) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335362251====================================================================== -_bk;t=1781335362251WARNING: Target: @@//tests/bootstrap_impls:_run_binary_zip_yes_test_bin -_bk;t=1781335362251 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335362251 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335362251 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335362251 instructions and guide, see: -_bk;t=1781335362251 -_bk;t=1781335362251 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335362251====================================================================== -_bk;t=1781335362251(07:22:42) Analyzing: 590 targets (504 packages loaded, 796,375 targets configured, 133 aspect applications) -_bk;t=1781335362251 currently loading: @@+pip+dev_pip_314_sphinxcontrib_devhelp_py3_none_any_aefb8b83// -_bk;t=1781335362251[1,952 / 2,818] //tests/venv_site_packages_libs:whl_scripts_runnable_test; 0s local -_bk;t=1781335362251 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335362251 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335362251 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335362251 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362251 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362251 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362251 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335362251 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 8s ... (30 fetches) -_bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430 _bk;t=1781335363430(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335363431value of: string -_bk;t=1781335363431expected: 3.10.20 -_bk;t=1781335363431actual: 3.11.15 -_bk;t=1781335363431 -_bk;t=1781335363431(07:22:43) Analyzing: 590 targets (513 packages loaded, 833,139 targets configured, 140 aspect applications) -_bk;t=1781335363431[2,518 / 3,401] 21 actions, 19 running -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 0s local -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 0s local -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local -_bk;t=1781335363431 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local -_bk;t=1781335363431 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... -_bk;t=1781335363431 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335363431 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363431 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363431 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363431 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363431 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363431 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363431 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) -_bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435 _bk;t=1781335363435(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335363435value of: string -_bk;t=1781335363435expected: 3.12.13 -_bk;t=1781335363435actual: 3.11.15 -_bk;t=1781335363435 -_bk;t=1781335363435(07:22:43) Analyzing: 590 targets (513 packages loaded, 833,728 targets configured, 140 aspect applications) -_bk;t=1781335363435[2,518 / 3,401] 21 actions, 19 running -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 0s local -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local -_bk;t=1781335363435 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local -_bk;t=1781335363435 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... -_bk;t=1781335363435 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335363435 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363435 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363435 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363435 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363435 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363435 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363435 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) -_bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445 _bk;t=1781335363445(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335363445value of: string -_bk;t=1781335363445expected: 3.13.13 -_bk;t=1781335363445actual: 3.11.15 -_bk;t=1781335363445 -_bk;t=1781335363445(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,576 targets configured, 140 aspect applications) -_bk;t=1781335363445[2,518 / 3,403] 22 actions, 19 running -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local -_bk;t=1781335363445 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local -_bk;t=1781335363445 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... -_bk;t=1781335363445 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335363445 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363445 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363445 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363446 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) -_bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335363447value of: string -_bk;t=1781335363447expected: 3.14.4 -_bk;t=1781335363447actual: 3.11.15 -_bk;t=1781335363447 -_bk;t=1781335363447(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,643 targets configured, 140 aspect applications) -_bk;t=1781335363447[2,518 / 3,403] 22 actions, 19 running -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local -_bk;t=1781335363447 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... -_bk;t=1781335363447 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335363447 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) -_bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335363447value of: string -_bk;t=1781335363447expected: 3.15.0a8 -_bk;t=1781335363447actual: 3.11.15 -_bk;t=1781335363447 -_bk;t=1781335363447(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,701 targets configured, 140 aspect applications) -_bk;t=1781335363447[2,518 / 3,403] 22 actions, 19 running -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local -_bk;t=1781335363447 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... -_bk;t=1781335363447 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335363447 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) -_bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447 _bk;t=1781335363447(07:22:43) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335363447value of: string -_bk;t=1781335363447expected: 3.9.25 -_bk;t=1781335363447actual: 3.11.15 -_bk;t=1781335363447 -_bk;t=1781335363447(07:22:43) Analyzing: 590 targets (513 packages loaded, 834,808 targets configured, 140 aspect applications) -_bk;t=1781335363447[2,518 / 3,403] 22 actions, 19 running -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-2ad1208cb838/bin/tests/toolchains/python_3.15.0a8_test.runfiles; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-opt-exec/bin/tests/build_data/print_build_data.runfiles [for tool]; 1s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-4636fcd09b26/bin/tests/toolchains/python_3.11.14_test.runfiles; 0s local -_bk;t=1781335363447 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_zip_no_test.runfiles; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/interpreter/interpreter_version_test_3.11.runfiles; 0s local -_bk;t=1781335363447 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 0s local ... -_bk;t=1781335363447 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335363447 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_12_7_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335363447 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335363447 Fetching repository @@+python+python_3_11_9_x86_64-unknown-linux-gnu; starting 9s ... (25 fetches) -_bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825 _bk;t=1781335366825(07:22:46) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335366825====================================================================== -_bk;t=1781335366825WARNING: Target: @@//tests/base_rules/py_binary:test_basic_zip_subject -_bk;t=1781335366825 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335366825 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335366825 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335366825 instructions and guide, see: -_bk;t=1781335366825 -_bk;t=1781335366825 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335366825====================================================================== -_bk;t=1781335366825(07:22:46) Analyzing: 590 targets (583 packages loaded, 1,062,304 targets configured, 149 aspect applications) -_bk;t=1781335366825[2,971 / 3,663] 22 / 522 tests; 30 actions, 23 running; last test: //tests/pypi/python_tag:test_without_version -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_inputs.test.runfiles; 3s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 3s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/sys_executable_inherits_sys_path.runfiles; 2s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-3271d464a94a/bin/tests/toolchains/python_3.14.3_test.runfiles; 2s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_find_runfiles_test.runfiles; 2s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-0d25393956b6/bin/tests/toolchains/python_3.11.5_test.runfiles; 2s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-aae3369793a7/bin/tests/toolchains/python_3.11.3_test.runfiles; 1s local -_bk;t=1781335366825 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/main_module_test.runfiles; 1s local ... -_bk;t=1781335366825 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335366825 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335366825 Fetching repository @@+python+python_3_12_11_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335366825 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335366825 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335366825 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 12s -_bk;t=1781335366825 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 12s -_bk;t=1781335366825 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 12s ... (39 fetches) -_bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639 _bk;t=1781335369639(07:22:49) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log) -_bk;t=1781335369639(07:22:49) Analyzing: 590 targets (587 packages loaded, 1,081,983 targets configured, 153 aspect applications) -_bk;t=1781335369639[3,081 / 3,736] 59 / 523 tests; 28 actions, 23 running; last test: //tests/pypi/pep508:test_env_defaults -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/main_module_test.runfiles; 4s local -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/bootstrap_script_zipapp_test.runfiles; 4s local -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-10b3c6159941/bin/tests/toolchains/custom_platform_toolchain_test.runfiles; 4s local -_bk;t=1781335369639 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/interpreter_args_test.runfiles; 3s local -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 3s local -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 3s local -_bk;t=1781335369639 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 3s local ... -_bk;t=1781335369639 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335369639 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335369639 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335369639 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335369639 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335369639 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335369639 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335369639 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 14s ... (44 fetches) -_bk;t=1781335369855buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log -_bk;t=17813353698802026-06-13 07:22:49 INFO  Found 1 files that match "tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log" -_bk;t=17813353698822026-06-13 07:22:49 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration -_bk;t=17813353698822026-06-13 07:22:49 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353699932026-06-13 07:22:49 INFO  Uploading 019ebfdc-a8ea-41c1-a702-92acfe2d2d53 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log (1.0 KiB) -_bk;t=17813353702722026-06-13 07:22:50 INFO  Artifact uploads completed successfully -_bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438 _bk;t=1781335370438(07:22:50) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log) -_bk;t=1781335370438(07:22:50) Analyzing: 590 targets (589 packages loaded, 1,083,879 targets configured, 153 aspect applications) -_bk;t=1781335370438 currently loading: @@+python+python_3_13_11_x86_64-unknown-linux-gnu// -_bk;t=1781335370438[3,113 / 3,761] 69 / 523 tests; 27 actions, 21 running; last test: //tests/builders:test_string_dict -_bk;t=1781335370438 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/interpreter_args_test.runfiles; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local -_bk;t=1781335370438 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local ... -_bk;t=1781335370438 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335370438 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335370438 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335370438 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335370438 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335370438 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335370438 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335370438 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (46 fetches) -_bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128(07:22:51) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log) -_bk;t=1781335371128(07:22:51) Analyzing: 590 targets (590 packages loaded, 1,085,752 targets configured, 153 aspect applications) -_bk;t=1781335371128[3,150 / 3,790] 79 / 525 tests; 30 actions, 23 running; last test: //tests/base_rules/py_test:test_py_info_propagation -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 5s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 5s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 5s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/uv/lock/requirements_run_tests.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 4s local ... -_bk;t=1781335371128 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 18s -_bk;t=1781335371128 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371128 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371128 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371128 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371128 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371128 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371128 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (44 fetches) -_bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 _bk;t=1781335371128 -_bk;t=1781335371128FAILED: //tests/toolchains/transitions:test_minor_versions (Summary) -_bk;t=1781335371128 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log -_bk;t=1781335371128 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log -_bk;t=1781335371128 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log -_bk;t=1781335371128(07:22:51) Analyzing: 590 targets (590 packages loaded, 1,085,752 targets configured, 153 aspect applications) -_bk;t=1781335371128[3,150 / 3,790] 81 / 525 tests, 1 failed; 30 actions, 23 running; last test: //tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 5s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 5s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 5s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/uv/lock/requirements_run_tests.runfiles; 4s local -_bk;t=1781335371128 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 4s local ... -_bk;t=1781335371128 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 18s -_bk;t=1781335371128 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371128 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371130 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371130 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371130 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371130 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371130 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (44 fetches) -_bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137 _bk;t=1781335371137(07:22:51) INFO: From Testing //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335371137==================== Test output for //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.10.20 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.12.13 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.13.13 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.14.4 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.15.0a8 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.9.25 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137================================================================================ -_bk;t=1781335371137==================== Test output for //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.10.20 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.12.13 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.13.13 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.14.4 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.15.0a8 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.9.25 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137================================================================================ -_bk;t=1781335371137==================== Test output for //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.10.20 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.12.13 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.13.13 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.14.4 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.15.0a8 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137value of: string -_bk;t=1781335371137expected: 3.9.25 -_bk;t=1781335371137actual: 3.11.15 -_bk;t=1781335371137 -_bk;t=1781335371137 -_bk;t=1781335371137================================================================================ -_bk;t=1781335371137(07:22:51) Analyzing: 590 targets (590 packages loaded, 1,085,752 targets configured, 153 aspect applications) -_bk;t=1781335371137[3,152 / 3,790] 81 / 525 tests, 1 failed; 30 actions, 23 running; last test: //tests/toolchains/transitions:test_minor_versions -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 5s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/no_unsafe_paths/no_unsafe_paths_3.11_test.runfiles; 5s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-90336049b0e3/bin/tests/packaging/bin.runfiles; 5s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 4s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_find_runfiles_test.runfiles; 4s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/entry_points/py_console_script_gen_test.runfiles; 4s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild-ST-5b1a83ee4873/bin/tests/uv/lock/requirements_run_tests.runfiles; 4s local -_bk;t=1781335371137 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 4s local ... -_bk;t=1781335371137 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 18s -_bk;t=1781335371137 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371137 Fetching repository @@+python+python_3_13_12_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371137 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335371137 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371137 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371137 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335371137 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 15s ... (44 fetches) -_bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276 _bk;t=1781335375276(07:22:55) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335375276====================================================================== -_bk;t=1781335375276WARNING: Target: @@//tests/base_rules/py_test:test_basic_zip_subject -_bk;t=1781335375276 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335375276 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335375276 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335375276 instructions and guide, see: -_bk;t=1781335375276 -_bk;t=1781335375276 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335375276====================================================================== -_bk;t=1781335375276(07:22:55) Analyzing: 590 targets (605 packages loaded, 1,127,934 targets configured, 158 aspect applications) -_bk;t=1781335375276[3,246 / 3,837] 122 / 545 tests, 1 failed; 30 actions, 23 running; last test: //tests/pypi/integration:all_requirements_build_test -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 9s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/uv/toolchain/uv_help_test.runfiles; 6s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_requirements_in.test.runfiles; 5s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild-ST-b260b98f1953/bin/tests/toolchains/python_3.11.9_test.runfiles; 4s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-opt-exec/bin/python/private/py_console_script_gen_py.runfiles [for tool]; 4s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_pyproject_toml.test.runfiles; 4s local -_bk;t=1781335375276 Creating runfiles tree bazel-out/k8-fastbuild-ST-b4008a3559a5/bin/tests/bootstrap_impls/a/b/c/nested_dir_test.runfiles; 4s local ... -_bk;t=1781335375276 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 20s -_bk;t=1781335375276 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 19s -_bk;t=1781335375276 Fetching repository @@+python+python_3_13_6_x86_64-unknown-linux-gnu; starting 19s -_bk;t=1781335375276 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 16s -_bk;t=1781335375276 Fetching ...nown-linux-gnu-freethreaded; Extracting cpython-3.14.4_20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 15s -_bk;t=1781335375276 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 10s -_bk;t=1781335375276 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 10s -_bk;t=1781335375276 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 10s ... (52 fetches) -_bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123 _bk;t=1781335377123(07:22:57) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335377123value of: string -_bk;t=1781335377123expected: /mac/python3.12 -_bk;t=1781335377123actual: /linux/python3.12 -_bk;t=1781335377123 -_bk;t=1781335377123(07:22:57) Analyzing: 590 targets (610 packages loaded, 1,157,815 targets configured, 167 aspect applications) -_bk;t=1781335377123[3,318 / 3,898] 138 / 554 tests, 1 failed; 30 actions, 23 running; last test: //tests/pypi/render_pkg_aliases:test_empty -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 10s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_requirements_in.test.runfiles; 7s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-opt-exec/bin/python/private/py_console_script_gen_py.runfiles [for tool]; 6s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_pyproject_toml.test.runfiles; 6s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild-ST-b5065571892e/bin/tests/toolchains/python_3.10.15_test.runfiles; 5s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/venv_site_packages_libs/py_binary_other_module_test.runfiles; 4s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild-ST-02349822b801/bin/tests/runfiles/runfiles_min_python_test.runfiles; 4s local -_bk;t=1781335377123 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 4s local ... -_bk;t=1781335377123 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335377123 Fetching ...nown-linux-gnu-freethreaded; Extracting cpython-3.14.4_20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz 16s -_bk;t=1781335377123 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 12s -_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 12s -_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 12s -_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 12s -_bk;t=1781335377123 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 11s -_bk;t=1781335377123 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 11s ... (51 fetches) -_bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130 _bk;t=1781335382130(07:23:02) Analyzing: 590 targets (610 packages loaded, 1,157,816 targets configured, 167 aspect applications) -_bk;t=1781335382130[3,695 / 4,175] 239 / 557 tests, 1 failed; 24 actions, 16 running; last test: //tests/builders:test_fruit_rule -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-2b3caf6f0eeb/bin/tests/multi_pypi/pypi_alpha/pypi_alpha_test.runfiles; 4s local -_bk;t=1781335382130 //tests/venv_site_packages_libs:venvs_site_packages_libs_test; 4s local -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 3s local -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-94a285a69336/bin/tests/toolchains/python_3.13.6_test.runfiles; 2s local -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-f4eb966a3244/bin/tests/toolchains/python_3.13.10_test.runfiles; 2s local -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 2s local -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-17e7cbfb1f72/bin/tests/toolchains/python_3.13.11_test.runfiles; 2s local -_bk;t=1781335382130 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 1s local ... -_bk;t=1781335382130 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335382130 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 17s -_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 17s -_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 17s -_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 17s -_bk;t=1781335382130 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 16s -_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 16s -_bk;t=1781335382130 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 16s ... (47 fetches) -_bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969 _bk;t=1781335382969(07:23:02) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log) -_bk;t=1781335382969(07:23:02) Analyzing: 590 targets (611 packages loaded, 1,159,817 targets configured, 168 aspect applications) -_bk;t=1781335382969[3,752 / 4,203] 265 / 558 tests, 1 failed; 26 actions, 18 running; last test: //tests/pypi/env_marker_setting:test_custom_env_markers -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 4s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-17e7cbfb1f72/bin/tests/toolchains/python_3.13.11_test.runfiles; 2s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 2s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-051e7bd7bd61/bin/tests/toolchains/python_3.13.4_test.runfiles; 2s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 2s local -_bk;t=1781335382969 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 1s local ... -_bk;t=1781335382969 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335382969 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 18s -_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 17s -_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 17s -_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 17s -_bk;t=1781335382969 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 17s -_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 17s -_bk;t=1781335382969 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 17s ... (44 fetches) -_bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292 _bk;t=1781335383292(07:23:03) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log) -_bk;t=1781335383292(07:23:03) Analyzing: 590 targets (611 packages loaded, 1,159,817 targets configured, 168 aspect applications) -_bk;t=1781335383292 currently loading: @@+python+python_3_15_0a8_x86_64-apple-darwin// -_bk;t=1781335383292[3,782 / 4,220] 278 / 558 tests, 1 failed; 24 actions, 18 running; last test: .../py_binary:test_main_module_bootstrap_system_python -_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local -_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 2s local -_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild-ST-051e7bd7bd61/bin/tests/toolchains/python_3.13.4_test.runfiles; 2s local -_bk;t=1781335383292 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local -_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 2s local -_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local -_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 1s local -_bk;t=1781335383293 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 1s local ... -_bk;t=1781335383293 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335383293 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 18s -_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383293 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 17s -_bk;t=1781335383293 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 17s ... (43 fetches) -_bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361 _bk;t=1781335383361(07:23:03) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log) -_bk;t=1781335383361(07:23:03) Analyzing: 590 targets (611 packages loaded, 1,159,817 targets configured, 168 aspect applications) -_bk;t=1781335383361 currently loading: @@+python+python_3_15_0a8_x86_64-apple-darwin// -_bk;t=1781335383361[3,785 / 4,220] 279 / 558 tests, 1 failed; 24 actions, 18 running; last test: //tests/cc/current_py_cc_headers:test_current_toolchain_headers -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-dd0bef968244/bin/tests/toolchains/python_3.13.1_test.runfiles; 3s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-051e7bd7bd61/bin/tests/toolchains/python_3.13.4_test.runfiles; 3s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 2s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 1s local -_bk;t=1781335383361 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 1s local ... -_bk;t=1781335383361 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335383361 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 18s -_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383362 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 17s -_bk;t=1781335383362 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 17s ... (43 fetches) -_bk;t=1781335383796buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log -_bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799(07:23:03) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log) -_bk;t=1781335383799(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335383799[3,806 / 4,229] 289 / 560 tests, 1 failed; 28 actions, 18 running; last test: //tests/pypi/pep508:tokenize_tests -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... -_bk;t=1781335383799 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799(07:23:03) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log) -_bk;t=1781335383799(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335383799[3,806 / 4,229] 289 / 560 tests, 1 failed; 28 actions, 18 running; last test: //tests/pypi/pep508:tokenize_tests -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local -_bk;t=1781335383799 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... -_bk;t=1781335383799 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335383799 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 _bk;t=1781335383799 -_bk;t=1781335383799FAILED: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Summary) -_bk;t=1781335383799 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log -_bk;t=1781335383799 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log -_bk;t=1781335383799 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log -_bk;t=1781335383800(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335383800[3,806 / 4,229] 290 / 560 tests, 2 failed; 28 actions, 18 running; last test: ...c_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... -_bk;t=1781335383800 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800 _bk;t=1781335383800(07:23:03) INFO: From Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335383800==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335383800In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335383800value of: string -_bk;t=1781335383800expected: /mac/python3.12 -_bk;t=1781335383800actual: /linux/python3.12 -_bk;t=1781335383800 -_bk;t=1781335383800 -_bk;t=1781335383800================================================================================ -_bk;t=1781335383800==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335383800In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335383800value of: string -_bk;t=1781335383800expected: /mac/python3.12 -_bk;t=1781335383800actual: /linux/python3.12 -_bk;t=1781335383800 -_bk;t=1781335383800 -_bk;t=1781335383800================================================================================ -_bk;t=1781335383800==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335383800In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335383800value of: string -_bk;t=1781335383800expected: /mac/python3.12 -_bk;t=1781335383800actual: /linux/python3.12 -_bk;t=1781335383800 -_bk;t=1781335383800 -_bk;t=1781335383800================================================================================ -_bk;t=1781335383800(07:23:03) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335383800[3,806 / 4,229] 290 / 560 tests, 2 failed; 28 actions, 18 running; last test: ...c_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 3s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 2s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 1s local -_bk;t=1781335383800 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 1s local ... -_bk;t=1781335383800 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335383800 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=17813353838112026-06-13 07:23:03 INFO  Found 1 files that match "tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log" -_bk;t=17813353838122026-06-13 07:23:03 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration -_bk;t=17813353838122026-06-13 07:23:03 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353839112026-06-13 07:23:03 INFO  Uploading 019ebfdc-df48-4765-8f70-170b5556bd85 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log (423 B) -_bk;t=17813353841182026-06-13 07:23:04 INFO  Artifact uploads completed successfully -_bk;t=1781335384169buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log -_bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172 _bk;t=1781335384172(07:23:04) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log) -_bk;t=1781335384172(07:23:04) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335384172[3,864 / 4,259] 310 / 560 tests, 2 failed; 29 actions, 19 running; last test: //tests/python:test_ignore_unsupported_versions -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 2s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 2s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-51aeab549327/bin/tests/toolchains/python_3.12.11_test.runfiles; 2s local -_bk;t=1781335384172 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 1s local ... -_bk;t=1781335384172 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335384172 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335384172 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335384172 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 _bk;t=1781335384173 -_bk;t=1781335384173FAILED: //tests/toolchains/transitions:test_full_version (Summary) -_bk;t=1781335384173 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log -_bk;t=1781335384173 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log -_bk;t=1781335384173 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log -_bk;t=1781335384173(07:23:04) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335384173[3,865 / 4,259] 311 / 560 tests, 3 failed; 28 actions, 20 running; last test: //tests/toolchains/transitions:test_full_version -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 2s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 2s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-51aeab549327/bin/tests/toolchains/python_3.12.11_test.runfiles; 2s local -_bk;t=1781335384173 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 1s local ... -_bk;t=1781335384174 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174 _bk;t=1781335384174(07:23:04) INFO: From Testing //tests/toolchains/transitions:test_full_version: -_bk;t=1781335384174==================== Test output for //tests/toolchains/transitions:test_full_version: -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.10.20 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.12.13 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.13.13 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.14.4 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.15.0a8 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.9.25 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174================================================================================ -_bk;t=1781335384174==================== Test output for //tests/toolchains/transitions:test_full_version: -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.10.20 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.12.13 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.13.13 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.14.4 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.15.0a8 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.9.25 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174================================================================================ -_bk;t=1781335384174==================== Test output for //tests/toolchains/transitions:test_full_version: -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.10.20 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.12.13 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.13.13 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.14.4 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.15.0a8 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335384174value of: string -_bk;t=1781335384174expected: 3.9.25 -_bk;t=1781335384174actual: 3.11.15 -_bk;t=1781335384174 -_bk;t=1781335384174 -_bk;t=1781335384174================================================================================ -_bk;t=1781335384174(07:23:04) Analyzing: 590 targets (613 packages loaded, 1,163,815 targets configured, 170 aspect applications) -_bk;t=1781335384174[3,867 / 4,259] 311 / 560 tests, 3 failed; 28 actions, 19 running; last test: //tests/toolchains/transitions:test_full_version -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 4s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-1027438733fb/bin/tests/toolchains/python_3.12.8_test.runfiles; 2s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-17d2a149f069/bin/tests/toolchains/python_3.10.20_test.runfiles; 2s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-d92763f463ab/bin/tests/toolchains/python_3.13.9_test.runfiles; 2s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-51aeab549327/bin/tests/toolchains/python_3.12.11_test.runfiles; 2s local -_bk;t=1781335384174 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 1s local ... -_bk;t=1781335384174 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335384174 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 18s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 18s -_bk;t=1781335384174 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 18s ... (42 fetches) -_bk;t=17813353842002026-06-13 07:23:04 INFO  Found 1 files that match "tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log" -_bk;t=17813353842012026-06-13 07:23:04 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration -_bk;t=17813353842012026-06-13 07:23:04 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353843102026-06-13 07:23:04 INFO  Uploading 019ebfdc-e0ce-4e9d-ac7e-0eef79d7041a tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log (1.0 KiB) -_bk;t=17813353845182026-06-13 07:23:04 INFO  Artifact uploads completed successfully -_bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218 _bk;t=1781335389218(07:23:09) Analyzing: 590 targets (618 packages loaded, 1,169,910 targets configured, 172 aspect applications) -_bk;t=1781335389218[4,311 / 4,593] 444 / 563 tests, 3 failed; 30 actions, 25 running; last test: //tests/pypi/parse_whl_name:test_real_numpy_wheel -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/repack_whl/repack_whl_test.runfiles; 4s local -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 3s local -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 3s local -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-ee2bd70c60e5/bin/tests/deprecated/versioned_py_test.runfiles; 3s local -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 3s local -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 3s local -_bk;t=1781335389218 //tests/bootstrap_impls:bazel_tools_importable_system_python_test; 3s local -_bk;t=1781335389218 Creating runfiles tree bazel-out/k8-fastbuild-ST-7b5864bfaccb/bin/tests/toolchains/python_3.10.8_test.runfiles; 3s local ... -_bk;t=1781335389218 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s -_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 24s -_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335389218 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 23s -_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 23s -_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 23s -_bk;t=1781335389218 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 22s ... (34 fetches) -_bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306 _bk;t=1781335394306(07:23:14) Analyzing: 590 targets (621 packages loaded, 1,182,606 targets configured, 175 aspect applications) -_bk;t=1781335394306[4,795 / 5,554] 489 / 566 tests, 3 failed; 30 actions, 12 running; last test: //tests/multiple_inputs:multiple_pyproject_toml.test -_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 8s local -_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 8s local -_bk;t=1781335394306 //tests/deprecated:versioned_compile_pip_requirements.test; 8s local -_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/implicit_namespace_packages/namespace_packages_test.runfiles; 5s local -_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-fastbuild-ST-6e5f5c2fa7f9/bin/.../venv_site_packages_libs/importlib_metadata_test.runfiles; 5s local -_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-opt-exec-ST-a6fae3158ae9/bin/docs/sphinx-build.runfiles [for tool]; 4s local -_bk;t=1781335394306 Creating runfiles tree bazel-out/k8-opt-exec/bin/external/sphinxdocs+/sphinxdocs/private/proto_to_markdown.runfiles [for tool]; 4s local -_bk;t=1781335394306 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 2s linux-sandbox ... -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_aarch64-unknown-linux-gnu-freethreaded; starting 29s -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 29s -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a8_aarch64-unknown-linux-gnu-freethreaded; starting 29s -_bk;t=1781335394306 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 29s -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-musl; starting 28s -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 28s -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 27s -_bk;t=1781335394306 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 27s ... (27 fetches) -_bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747 _bk;t=1781335401747(07:23:21) Analyzing: 590 targets (640 packages loaded, 1,230,280 targets configured, 198 aspect applications) -_bk;t=1781335401747[5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: ...m_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded -_bk;t=1781335402429 _bk;t=1781335402429 _bk;t=1781335402429(07:23:22) INFO: Analyzed 590 targets (640 packages loaded, 1,230,281 targets configured, 198 aspect applications). -_bk;t=1781335402429(07:23:22) [5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: ...n:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded -_bk;t=1781335402498 _bk;t=1781335402498(07:23:22) INFO: Found 590 test targets... -_bk;t=1781335402498(07:23:22) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization -_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: Elapsed time: 66.093s, Critical Path: 12.71s -_bk;t=1781335402550(07:23:22) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization -_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: 5819 processes: 1920 remote cache hit, 4473 internal, 23 linux-sandbox. -_bk;t=1781335402550(07:23:22) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization -_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: Build completed, 3 tests FAILED, 5819 total actions -_bk;t=1781335402550(07:23:22) INFO: -_bk;t=1781335402550 _bk;t=1781335402550(07:23:22) INFO: -_bk;t=1781335402558 _bk;t=1781335402558//tests:bzl_libraries_build_test (cached) PASSED in 0.6s -_bk;t=1781335402558(07:23:22) INFO: -_bk;t=1781335402559 _bk;t=1781335402559//tests/api/py_common:test_merge_py_infos (cached) PASSED in 0.2s -_bk;t=1781335402559(07:23:22) INFO: -_bk;t=1781335402559 _bk;t=1781335402559//tests/base_rules/precompile:test_precompile_attr_inherit_pyc_collection_disabled_precompile_flag_enabled (cached) PASSED in 0.7s -_bk;t=1781335402559(07:23:22) INFO: -_bk;t=1781335402559 _bk;t=1781335402559//tests/base_rules/precompile:test_precompile_enabled_py_binary (cached) PASSED in 0.8s -_bk;t=1781335402559(07:23:22) INFO: -_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_disabled (cached) PASSED in 0.9s -_bk;t=1781335402560(07:23:22) INFO: -_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_enabled (cached) PASSED in 0.4s -_bk;t=1781335402560(07:23:22) INFO: -_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_enabled_py_test (cached) PASSED in 0.5s -_bk;t=1781335402560(07:23:22) INFO: -_bk;t=1781335402560 _bk;t=1781335402560//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_disabled (cached) PASSED in 0.2s -_bk;t=1781335402560(07:23:22) INFO: -_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.8s -_bk;t=1781335402561(07:23:22) INFO: -_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_disabled (cached) PASSED in 0.7s -_bk;t=1781335402561(07:23:22) INFO: -_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.4s -_bk;t=1781335402561(07:23:22) INFO: -_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_precompiler_action (cached) PASSED in 0.3s -_bk;t=1781335402561(07:23:22) INFO: -_bk;t=1781335402561 _bk;t=1781335402561//tests/base_rules/precompile:test_pyc_collection_disabled_library_omit_source (cached) PASSED in 0.4s -_bk;t=1781335402561(07:23:22) INFO: -_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/precompile:test_pyc_collection_include_dep_omit_source (cached) PASSED in 0.6s -_bk;t=1781335402562(07:23:22) INFO: -_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/precompile:test_pyc_only (cached) PASSED in 0.5s -_bk;t=1781335402562(07:23:22) INFO: -_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/py_binary:test_basic_windows (cached) PASSED in 0.6s -_bk;t=1781335402562(07:23:22) INFO: -_bk;t=1781335402562 _bk;t=1781335402562//tests/base_rules/py_binary:test_basic_zip (cached) PASSED in 0.3s -_bk;t=1781335402562(07:23:22) INFO: -_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_config_settings_extra_toolchains (cached) PASSED in 0.4s -_bk;t=1781335402563(07:23:22) INFO: -_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_cross_compile_to_unix (cached) PASSED in 0.3s -_bk;t=1781335402563(07:23:22) INFO: -_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_data_sets_uses_shared_library (cached) PASSED in 0.3s -_bk;t=1781335402563(07:23:22) INFO: -_bk;t=1781335402563 _bk;t=1781335402563//tests/base_rules/py_binary:test_debugger (cached) PASSED in 0.7s -_bk;t=1781335402563(07:23:22) INFO: -_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_can_be_generated (cached) PASSED in 0.5s -_bk;t=1781335402564(07:23:22) INFO: -_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s -_bk;t=1781335402564(07:23:22) INFO: -_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.7s -_bk;t=1781335402564(07:23:22) INFO: -_bk;t=1781335402564 _bk;t=1781335402564//tests/base_rules/py_binary:test_default_main_must_be_in_srcs (cached) PASSED in 0.4s -_bk;t=1781335402564(07:23:22) INFO: -_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_default_outputs (cached) PASSED in 0.3s -_bk;t=1781335402565(07:23:22) INFO: -_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_executable_in_runfiles (cached) PASSED in 0.1s -_bk;t=1781335402565(07:23:22) INFO: -_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_explicit_main (cached) PASSED in 0.2s -_bk;t=1781335402565(07:23:22) INFO: -_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.1s -_bk;t=1781335402565(07:23:22) INFO: -_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_main_module_bootstrap_script (cached) PASSED in 0.4s -_bk;t=1781335402565(07:23:22) INFO: -_bk;t=1781335402565 _bk;t=1781335402565//tests/base_rules/py_binary:test_main_module_bootstrap_system_python (cached) PASSED in 0.8s -_bk;t=1781335402565(07:23:22) INFO: -_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_name_cannot_end_in_py (cached) PASSED in 0.5s -_bk;t=1781335402566(07:23:22) INFO: -_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_py_info_populated (cached) PASSED in 0.2s -_bk;t=1781335402566(07:23:22) INFO: -_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_py_info_propagation (cached) PASSED in 0.2s -_bk;t=1781335402566(07:23:22) INFO: -_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_py_runtime_info_provided (cached) PASSED in 0.2s -_bk;t=1781335402566(07:23:22) INFO: -_bk;t=1781335402566 _bk;t=1781335402566//tests/base_rules/py_binary:test_requires_provider (cached) PASSED in 0.3s -_bk;t=1781335402566(07:23:22) INFO: -_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_binary:test_tags_can_be_tuple (cached) PASSED in 0.3s -_bk;t=1781335402567(07:23:22) INFO: -_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_binary:test_windows_target_with_path_separators (cached) PASSED in 0.4s -_bk;t=1781335402567(07:23:22) INFO: -_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_info:test_py_info_builder (cached) PASSED in 0.3s -_bk;t=1781335402567(07:23:22) INFO: -_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_info:test_py_info_create (cached) PASSED in 0.5s -_bk;t=1781335402567(07:23:22) INFO: -_bk;t=1781335402567 _bk;t=1781335402567//tests/base_rules/py_library:test_data_sets_uses_shared_library (cached) PASSED in 0.4s -_bk;t=1781335402567(07:23:22) INFO: -_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_default_outputs (cached) PASSED in 0.1s -_bk;t=1781335402568(07:23:22) INFO: -_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_files_to_compile (cached) PASSED in 0.4s -_bk;t=1781335402568(07:23:22) INFO: -_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_py_info_populated (cached) PASSED in 0.4s -_bk;t=1781335402568(07:23:22) INFO: -_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_py_info_propagation (cached) PASSED in 0.3s -_bk;t=1781335402568(07:23:22) INFO: -_bk;t=1781335402568 _bk;t=1781335402568//tests/base_rules/py_library:test_py_runtime_info_not_present (cached) PASSED in 0.2s -_bk;t=1781335402568(07:23:22) INFO: -_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_requires_provider (cached) PASSED in 0.7s -_bk;t=1781335402569(07:23:22) INFO: -_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_srcs_can_contain_rule_generating_py_and_nonpy_files (cached) PASSED in 0.1s -_bk;t=1781335402569(07:23:22) INFO: -_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_srcs_generating_no_py_files_is_error (cached) PASSED in 0.3s -_bk;t=1781335402569(07:23:22) INFO: -_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_library:test_tags_can_be_tuple (cached) PASSED in 0.1s -_bk;t=1781335402569(07:23:22) INFO: -_bk;t=1781335402569 _bk;t=1781335402569//tests/base_rules/py_test:test_basic_windows (cached) PASSED in 0.3s -_bk;t=1781335402570(07:23:22) INFO: -_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_basic_zip (cached) PASSED in 0.5s -_bk;t=1781335402570(07:23:22) INFO: -_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_config_settings_extra_toolchains (cached) PASSED in 0.6s -_bk;t=1781335402570(07:23:22) INFO: -_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_cross_compile_to_unix (cached) PASSED in 0.7s -_bk;t=1781335402570(07:23:22) INFO: -_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_data_sets_uses_shared_library (cached) PASSED in 0.6s -_bk;t=1781335402570(07:23:22) INFO: -_bk;t=1781335402570 _bk;t=1781335402570//tests/base_rules/py_test:test_debugger (cached) PASSED in 0.4s -_bk;t=1781335402570(07:23:22) INFO: -_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_can_be_generated (cached) PASSED in 0.4s -_bk;t=1781335402571(07:23:22) INFO: -_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s -_bk;t=1781335402571(07:23:22) INFO: -_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.5s -_bk;t=1781335402571(07:23:22) INFO: -_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_main_must_be_in_srcs (cached) PASSED in 0.6s -_bk;t=1781335402571(07:23:22) INFO: -_bk;t=1781335402571 _bk;t=1781335402571//tests/base_rules/py_test:test_default_outputs (cached) PASSED in 0.3s -_bk;t=1781335402571(07:23:22) INFO: -_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_executable_in_runfiles (cached) PASSED in 0.2s -_bk;t=1781335402572(07:23:22) INFO: -_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_explicit_main (cached) PASSED in 0.3s -_bk;t=1781335402572(07:23:22) INFO: -_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.5s -_bk;t=1781335402572(07:23:22) INFO: -_bk;t=1781335402572 _bk;t=1781335402572//tests/base_rules/py_test:test_mac_requires_darwin_for_execution (cached) PASSED in 0.3s -_bk;t=1781335402572(07:23:22) INFO: -_bk;t=1781335402572 _bk;t=1781335402573//tests/base_rules/py_test:test_main_module_bootstrap_script (cached) PASSED in 0.3s -_bk;t=1781335402573(07:23:22) INFO: -_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_main_module_bootstrap_system_python (cached) PASSED in 0.1s -_bk;t=1781335402573(07:23:22) INFO: -_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_name_cannot_end_in_py (cached) PASSED in 0.3s -_bk;t=1781335402573(07:23:22) INFO: -_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_non_mac_doesnt_require_darwin_for_execution (cached) PASSED in 0.2s -_bk;t=1781335402573(07:23:22) INFO: -_bk;t=1781335402573 _bk;t=1781335402573//tests/base_rules/py_test:test_py_info_populated (cached) PASSED in 0.6s -_bk;t=1781335402573(07:23:22) INFO: -_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_py_info_propagation (cached) PASSED in 0.5s -_bk;t=1781335402574(07:23:22) INFO: -_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_py_runtime_info_provided (cached) PASSED in 0.3s -_bk;t=1781335402574(07:23:22) INFO: -_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_requires_provider (cached) PASSED in 0.2s -_bk;t=1781335402574(07:23:22) INFO: -_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_tags_can_be_tuple (cached) PASSED in 0.3s -_bk;t=1781335402574(07:23:22) INFO: -_bk;t=1781335402574 _bk;t=1781335402574//tests/base_rules/py_test:test_windows_target_with_path_separators (cached) PASSED in 0.6s -_bk;t=1781335402574(07:23:22) INFO: -_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:bazel_tools_importable_system_python_test (cached) PASSED in 0.9s -_bk;t=1781335402575(07:23:22) INFO: -_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:bootstrap_script_zipapp_test (cached) PASSED in 2.2s -_bk;t=1781335402575(07:23:22) INFO: -_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:external_binary_test (cached) PASSED in 3.2s -_bk;t=1781335402575(07:23:22) INFO: -_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:inherit_pythonsafepath_env_test (cached) PASSED in 1.3s -_bk;t=1781335402575(07:23:22) INFO: -_bk;t=1781335402575 _bk;t=1781335402575//tests/bootstrap_impls:interpreter_args_test (cached) PASSED in 0.8s -_bk;t=1781335402575(07:23:22) INFO: -_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:main_module_test (cached) PASSED in 1.2s -_bk;t=1781335402576(07:23:22) INFO: -_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:relative_path_test (cached) PASSED in 0.5s -_bk;t=1781335402576(07:23:22) INFO: -_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_bootstrap_script_find_runfiles_test (cached) PASSED in 1.4s -_bk;t=1781335402576(07:23:22) INFO: -_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_bootstrap_script_zip_no_test (cached) PASSED in 1.2s -_bk;t=1781335402576(07:23:22) INFO: -_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test (cached) PASSED in 1.9s -_bk;t=1781335402576(07:23:22) INFO: -_bk;t=1781335402576 _bk;t=1781335402576//tests/bootstrap_impls:run_binary_find_runfiles_test (cached) PASSED in 1.1s -_bk;t=1781335402576(07:23:22) INFO: -_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:run_binary_venvs_use_declare_symlink_no_test (cached) PASSED in 0.9s -_bk;t=1781335402577(07:23:22) INFO: -_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:run_binary_zip_no_test (cached) PASSED in 1.1s -_bk;t=1781335402577(07:23:22) INFO: -_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:run_binary_zip_yes_test (cached) PASSED in 2.2s -_bk;t=1781335402577(07:23:22) INFO: -_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:sys_executable_inherits_sys_path (cached) PASSED in 0.6s -_bk;t=1781335402577(07:23:22) INFO: -_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:sys_path_order_bootstrap_script_test (cached) PASSED in 1.1s -_bk;t=1781335402577(07:23:22) INFO: -_bk;t=1781335402577 _bk;t=1781335402577//tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test (cached) PASSED in 0.9s -_bk;t=1781335402577(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls:system_python_nodeps_test (cached) PASSED in 1.2s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls/a/b/c:nested_dir_test (cached) PASSED in 1.2s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls/bin_calls_bin:bootstrap_script_python_test (cached) PASSED in 0.8s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/bootstrap_impls/bin_calls_bin:bootstrap_system_python_test (cached) PASSED in 0.6s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/builders:test_bool (cached) PASSED in 0.7s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/builders:test_cfg_arg (cached) PASSED in 0.4s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402578 _bk;t=1781335402578//tests/builders:test_depset_builder (cached) PASSED in 0.2s -_bk;t=1781335402578(07:23:22) INFO: -_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_exec_group (cached) PASSED in 0.3s -_bk;t=1781335402579(07:23:22) INFO: -_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_fruit_rule (cached) PASSED in 0.2s -_bk;t=1781335402579(07:23:22) INFO: -_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_int (cached) PASSED in 0.4s -_bk;t=1781335402579(07:23:22) INFO: -_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_int_list (cached) PASSED in 0.2s -_bk;t=1781335402579(07:23:22) INFO: -_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_label (cached) PASSED in 0.2s -_bk;t=1781335402579(07:23:22) INFO: -_bk;t=1781335402579 _bk;t=1781335402579//tests/builders:test_label_keyed_string_dict (cached) PASSED in 0.8s -_bk;t=1781335402579(07:23:22) INFO: -_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_label_list (cached) PASSED in 0.2s -_bk;t=1781335402580(07:23:22) INFO: -_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_output (cached) PASSED in 0.3s -_bk;t=1781335402580(07:23:22) INFO: -_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_output_list (cached) PASSED in 0.4s -_bk;t=1781335402580(07:23:22) INFO: -_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_rule_api (cached) PASSED in 0.4s -_bk;t=1781335402580(07:23:22) INFO: -_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_rule_with_immutable_attrs (cached) PASSED in 0.4s -_bk;t=1781335402580(07:23:22) INFO: -_bk;t=1781335402580 _bk;t=1781335402580//tests/builders:test_rule_with_toolchains (cached) PASSED in 0.4s -_bk;t=1781335402580(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_runfiles_builder (cached) PASSED in 0.2s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string (cached) PASSED in 0.2s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_dict (cached) PASSED in 0.3s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_keyed_label_dict (cached) PASSED in 0.2s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_list (cached) PASSED in 0.8s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_string_list_dict (cached) PASSED in 0.2s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402581 _bk;t=1781335402581//tests/builders:test_toolchain_type (cached) PASSED in 0.7s -_bk;t=1781335402581(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_headers:test_current_toolchain_headers (cached) PASSED in 0.3s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_headers:test_current_toolchain_headers_abi3 (cached) PASSED in 0.4s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_headers:test_toolchain_is_registered_by_default (cached) PASSED in 0.3s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:python_abi3_libs_linking_test (cached) PASSED in 0.5s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:python_libs_linking_test (cached) PASSED in 0.4s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:test_current_toolchain_libs (cached) PASSED in 0.4s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402582 _bk;t=1781335402582//tests/cc/current_py_cc_libs:test_toolchain_is_registered_by_default (cached) PASSED in 0.6s -_bk;t=1781335402582(07:23:22) INFO: -_bk;t=1781335402583 _bk;t=1781335402583//tests/cc/py_cc_toolchain:test_libs_optional (cached) PASSED in 0.4s -_bk;t=1781335402583(07:23:22) INFO: -_bk;t=1781335402583 _bk;t=1781335402583//tests/cc/py_cc_toolchain:test_py_cc_toolchain (cached) PASSED in 0.9s -_bk;t=1781335402583(07:23:22) INFO: -_bk;t=1781335402583 _bk;t=1781335402583//tests/config_settings:test_latest_micro_version_matching (cached) PASSED in 0.3s -_bk;t=1781335402583(07:23:22) INFO: -_bk;t=1781335402583 _bk;t=1781335402583//tests/config_settings:test_minor_version_matching (cached) PASSED in 0.9s -_bk;t=1781335402583(07:23:22) INFO: -_bk;t=1781335402583 _bk;t=1781335402583//tests/config_settings/transition:test_kwargs_get_consumed (cached) PASSED in 0.0s -_bk;t=1781335402583(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_args_default (cached) PASSED in 0.9s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_binary_windows_build_python_zip_false (cached) PASSED in 0.9s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_binary_with_transition (cached) PASSED in 0.1s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/config_settings/transition:test_py_test_with_transition (cached) PASSED in 0.3s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/coverage_deps:test_unsupported_python_version_warns (cached) PASSED in 0.8s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/coverage_deps:test_windows_platform_is_silent (cached) PASSED in 0.0s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402584 _bk;t=1781335402584//tests/deprecated:build_test (cached) PASSED in 0.4s -_bk;t=1781335402584(07:23:22) INFO: -_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:hub_compile_pip_requirements.test (cached) PASSED in 10.5s -_bk;t=1781335402585(07:23:22) INFO: -_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:hub_py_test (cached) PASSED in 0.9s -_bk;t=1781335402585(07:23:22) INFO: -_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:transition_py_test (cached) PASSED in 0.8s -_bk;t=1781335402585(07:23:22) INFO: -_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:versioned_compile_pip_requirements.test (cached) PASSED in 22.6s -_bk;t=1781335402585(07:23:22) INFO: -_bk;t=1781335402585 _bk;t=1781335402585//tests/deprecated:versioned_py_test (cached) PASSED in 0.6s -_bk;t=1781335402585(07:23:22) INFO: -_bk;t=1781335402585 _bk;t=1781335402585//tests/docs:docs_build_test (cached) PASSED in 0.0s -_bk;t=1781335402585(07:23:22) INFO: -_bk;t=1781335402586 _bk;t=1781335402586//tests/entry_points:build_entry_point (cached) PASSED in 0.7s -_bk;t=1781335402586(07:23:22) INFO: -_bk;t=1781335402586 _bk;t=1781335402586//tests/entry_points:py_console_script_gen_test (cached) PASSED in 1.0s -_bk;t=1781335402586(07:23:22) INFO: -_bk;t=1781335402586 _bk;t=1781335402586//tests/envsubst:test_envsubst_braceless (cached) PASSED in 0.5s -_bk;t=1781335402586(07:23:22) INFO: -_bk;t=1781335402586 _bk;t=1781335402586//tests/envsubst:test_envsubst_braces_with_default (cached) PASSED in 0.3s -_bk;t=1781335402586(07:23:22) INFO: -_bk;t=1781335402586 _bk;t=1781335402586//tests/envsubst:test_envsubst_braces_without_default (cached) PASSED in 0.4s -_bk;t=1781335402586(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_both_vars (cached) PASSED in 0.2s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_braces_inner_var (cached) PASSED in 0.3s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_no_vars (cached) PASSED in 0.2s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/envsubst:test_envsubst_nested_outer_var (cached) PASSED in 0.2s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/get_release_info:test_astral_mirror (cached) PASSED in 0.7s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/get_release_info:test_astral_mirror_legacy (cached) PASSED in 0.4s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402587 _bk;t=1781335402587//tests/get_release_info:test_file_url (cached) PASSED in 0.3s -_bk;t=1781335402587(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/implicit_namespace_packages:namespace_packages_test (cached) PASSED in 0.8s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:interpreter_version_test_3.10 (cached) PASSED in 1.4s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:interpreter_version_test_3.11 (cached) PASSED in 1.3s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:interpreter_version_test_3.12 (cached) PASSED in 1.5s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:python_src_test_3.10 (cached) PASSED in 1.6s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:python_src_test_3.11 (cached) PASSED in 1.2s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402588 _bk;t=1781335402588//tests/interpreter:python_src_test_3.12 (cached) PASSED in 1.2s -_bk;t=1781335402588(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/multi_pypi/pypi_alpha:pypi_alpha_test (cached) PASSED in 1.4s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/multi_pypi/pypi_beta:pypi_beta_test (cached) PASSED in 1.1s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/multiple_inputs:multiple_inputs.test (cached) PASSED in 6.9s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/multiple_inputs:multiple_pyproject_toml.test (cached) PASSED in 10.5s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/multiple_inputs:multiple_requirements_in.test (cached) PASSED in 24.5s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/no_unsafe_paths:no_unsafe_paths_3.10_test (cached) PASSED in 1.1s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402589 _bk;t=1781335402589//tests/no_unsafe_paths:no_unsafe_paths_3.11_test (cached) PASSED in 1.4s -_bk;t=1781335402589(07:23:22) INFO: -_bk;t=1781335402590 _bk;t=1781335402590//tests/normalize_name:test_name_normalization (cached) PASSED in 0.1s -_bk;t=1781335402590(07:23:22) INFO: -_bk;t=1781335402590 _bk;t=1781335402590//tests/packaging:bin (cached) PASSED in 1.0s -_bk;t=1781335402590(07:23:22) INFO: -_bk;t=1781335402590 _bk;t=1781335402590//tests/packaging:bzl_libraries_build_test (cached) PASSED in 0.4s -_bk;t=1781335402590(07:23:22) INFO: -_bk;t=1781335402590 _bk;t=1781335402590//tests/py_exec_tools_toolchain:test_disable_exec_interpreter (cached) PASSED in 0.4s -_bk;t=1781335402590(07:23:22) INFO: -_bk;t=1781335402590 _bk;t=1781335402590//tests/py_runtime:test_bootstrap_template (cached) PASSED in 0.2s -_bk;t=1781335402590(07:23:22) INFO: -_bk;t=1781335402590 _bk;t=1781335402590//tests/py_runtime:test_cannot_have_both_inbuild_and_system_interpreter (cached) PASSED in 0.0s -_bk;t=1781335402590(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_cannot_specify_files_for_system_interpreter (cached) PASSED in 0.1s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_coverage_tool_executable (cached) PASSED in 0.3s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_coverage_tool_plain_files (cached) PASSED in 0.2s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_in_build_interpreter (cached) PASSED in 0.2s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_binary_with_multiple_outputs (cached) PASSED in 0.4s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_binary_with_single_output_and_runfiles (cached) PASSED in 0.2s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_major (cached) PASSED in 0.2s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_minor (cached) PASSED in 0.3s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402591 _bk;t=1781335402591//tests/py_runtime:test_interpreter_version_info_no_extraneous_keys (cached) PASSED in 0.3s -_bk;t=1781335402591(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_interpreter_version_info_parses_values_to_struct (cached) PASSED in 0.4s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_interpreter_version_info_sets_values_to_none_if_not_given (cached) PASSED in 0.3s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_must_have_either_inbuild_or_system_interpreter (cached) PASSED in 0.3s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_system_interpreter (cached) PASSED in 0.3s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_system_interpreter_must_be_absolute (cached) PASSED in 0.4s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime:test_version_info_from_flag (cached) PASSED in 0.5s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info (cached) PASSED in 0.2s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402592 _bk;t=1781335402592//tests/py_runtime_pair:test_basic (cached) PASSED in 0.2s -_bk;t=1781335402592(07:23:22) INFO: -_bk;t=1781335402593 _bk;t=1781335402593//tests/py_runtime_pair:test_py_runtime_pair_and_binary (cached) PASSED in 0.6s -_bk;t=1781335402593(07:23:22) INFO: -_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_config_settings (cached) PASSED in 0.6s -_bk;t=1781335402593(07:23:22) INFO: -_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_content_type_from_attr (cached) PASSED in 0.6s -_bk;t=1781335402593(07:23:22) INFO: -_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_content_type_from_description (cached) PASSED in 0.3s -_bk;t=1781335402593(07:23:22) INFO: -_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_data (cached) PASSED in 0.3s -_bk;t=1781335402593(07:23:22) INFO: -_bk;t=1781335402593 _bk;t=1781335402593//tests/py_wheel:test_data_bad_path (cached) PASSED in 0.4s -_bk;t=1781335402593(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_wheel:test_data_bad_path_but_right_prefix (cached) PASSED in 0.2s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_wheel:test_metadata (cached) PASSED in 0.3s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_wheel/py_wheel:test_too_long_project_url_label (cached) PASSED in 0.2s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:system_python_zipapp_external_bootstrap_test (cached) PASSED in 4.8s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:system_python_zipapp_test (cached) PASSED in 2.2s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:venv_zipapp_compressed_test (cached) PASSED in 3.3s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402594 _bk;t=1781335402594//tests/py_zipapp:venv_zipapp_test (cached) PASSED in 1.9s -_bk;t=1781335402594(07:23:22) INFO: -_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/argparse:test_extra_index_url (cached) PASSED in 0.5s -_bk;t=1781335402595(07:23:22) INFO: -_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/argparse:test_index_url (cached) PASSED in 0.2s -_bk;t=1781335402595(07:23:22) INFO: -_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/argparse:test_platform (cached) PASSED in 0.4s -_bk;t=1781335402595(07:23:22) INFO: -_bk;t=1781335402595 _bk;t=1781335402595//tests/pypi/config_settings:test_legacy_default (cached) PASSED in 0.3s -_bk;t=1781335402595(07:23:22) INFO: -_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/config_settings:test_legacy_with_constraint_values (cached) PASSED in 0.1s -_bk;t=1781335402596(07:23:22) INFO: -_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/env_marker_setting:test_custom_env_markers (cached) PASSED in 0.6s -_bk;t=1781335402596(07:23:22) INFO: -_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/env_marker_setting:test_expr_python_full_version_lt_negative (cached) PASSED in 0.4s -_bk;t=1781335402596(07:23:22) INFO: -_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/env_marker_setting:test_expr_python_version_gte (cached) PASSED in 0.3s -_bk;t=1781335402596(07:23:22) INFO: -_bk;t=1781335402596 _bk;t=1781335402596//tests/pypi/extension:test_build_pipstar_platform (cached) PASSED in 0.7s -_bk;t=1781335402596(07:23:22) INFO: -_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/extension:test_simple (cached) PASSED in 0.3s -_bk;t=1781335402597(07:23:22) INFO: -_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/extension:test_simple_isolated (cached) PASSED in 0.2s -_bk;t=1781335402597(07:23:22) INFO: -_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/generate_group_library_build_bazel:test_in_hub (cached) PASSED in 0.3s -_bk;t=1781335402597(07:23:22) INFO: -_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/generate_group_library_build_bazel:test_simple (cached) PASSED in 0.5s -_bk;t=1781335402597(07:23:22) INFO: -_bk;t=1781335402597 _bk;t=1781335402597//tests/pypi/generate_whl_library_build_bazel:test_all (cached) PASSED in 0.4s -_bk;t=1781335402597(07:23:22) INFO: -_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/generate_whl_library_build_bazel:test_all_legacy (cached) PASSED in 0.3s -_bk;t=1781335402598(07:23:22) INFO: -_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/generate_whl_library_build_bazel:test_all_with_loads (cached) PASSED in 0.2s -_bk;t=1781335402598(07:23:22) INFO: -_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/generate_whl_library_build_bazel:test_all_workspace (cached) PASSED in 0.9s -_bk;t=1781335402598(07:23:22) INFO: -_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/hub_builder:test_download_only_multiple (cached) PASSED in 0.4s -_bk;t=1781335402598(07:23:22) INFO: -_bk;t=1781335402598 _bk;t=1781335402598//tests/pypi/hub_builder:test_err_duplicate_repos (cached) PASSED in 0.2s -_bk;t=1781335402598(07:23:22) INFO: -_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_index_url_precedence (cached) PASSED in 0.5s -_bk;t=1781335402599(07:23:22) INFO: -_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_optimum_sys_platform_extra (cached) PASSED in 0.2s -_bk;t=1781335402599(07:23:22) INFO: -_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_pipstar_platforms (cached) PASSED in 0.3s -_bk;t=1781335402599(07:23:22) INFO: -_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_pipstar_platforms_limit (cached) PASSED in 0.1s -_bk;t=1781335402599(07:23:22) INFO: -_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_simple (cached) PASSED in 0.5s -_bk;t=1781335402599(07:23:22) INFO: -_bk;t=1781335402599 _bk;t=1781335402599//tests/pypi/hub_builder:test_simple_extras_vs_no_extras (cached) PASSED in 0.3s -_bk;t=1781335402599(07:23:22) INFO: -_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_extras_vs_no_extras_simpleapi (cached) PASSED in 0.5s -_bk;t=1781335402600(07:23:22) INFO: -_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_get_index (cached) PASSED in 0.3s -_bk;t=1781335402600(07:23:22) INFO: -_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_multiple_python_versions (cached) PASSED in 0.4s -_bk;t=1781335402600(07:23:22) INFO: -_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_multiple_requirements (cached) PASSED in 0.6s -_bk;t=1781335402600(07:23:22) INFO: -_bk;t=1781335402600 _bk;t=1781335402600//tests/pypi/hub_builder:test_simple_with_markers (cached) PASSED in 0.6s -_bk;t=1781335402600(07:23:22) INFO: -_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/hub_builder:test_torch_experimental_index_url (cached) PASSED in 0.1s -_bk;t=1781335402601(07:23:22) INFO: -_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/index_sources:test_no_simple_api_sources (cached) PASSED in 0.2s -_bk;t=1781335402601(07:23:22) INFO: -_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/index_sources:test_simple_api_sources (cached) PASSED in 0.1s -_bk;t=1781335402601(07:23:22) INFO: -_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/integration:all_requirements_build_test (cached) PASSED in 0.9s -_bk;t=1781335402601(07:23:22) INFO: -_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/namespace_pkgs:test_create_inits (cached) PASSED in 0.1s -_bk;t=1781335402601(07:23:22) INFO: -_bk;t=1781335402601 _bk;t=1781335402601//tests/pypi/namespace_pkgs:test_empty_case (cached) PASSED in 0.0s -_bk;t=1781335402601(07:23:22) INFO: -_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_find_correct_namespace_packages (cached) PASSED in 0.2s -_bk;t=1781335402602(07:23:22) INFO: -_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_ignores_empty_directories (cached) PASSED in 0.2s -_bk;t=1781335402602(07:23:22) INFO: -_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_ignores_non_module_files_in_directories (cached) PASSED in 0.5s -_bk;t=1781335402602(07:23:22) INFO: -_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_in_current_dir (cached) PASSED in 0.7s -_bk;t=1781335402602(07:23:22) INFO: -_bk;t=1781335402602 _bk;t=1781335402602//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_nested_standard_pkgs (cached) PASSED in 0.2s -_bk;t=1781335402602(07:23:22) INFO: -_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_standard_pkgs (cached) PASSED in 0.3s -_bk;t=1781335402603(07:23:22) INFO: -_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_pkgs (cached) PASSED in 0.5s -_bk;t=1781335402603(07:23:22) INFO: -_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_recognized_all_nonstandard_module_types (cached) PASSED in 0.4s -_bk;t=1781335402603(07:23:22) INFO: -_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/namespace_pkgs:test_skips_ignored_directories (cached) PASSED in 0.5s -_bk;t=1781335402603(07:23:22) INFO: -_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/parse_requirements:test_different_package_extras (cached) PASSED in 0.5s -_bk;t=1781335402603(07:23:22) INFO: -_bk;t=1781335402603 _bk;t=1781335402603//tests/pypi/parse_requirements:test_different_package_version (cached) PASSED in 0.1s -_bk;t=1781335402603(07:23:22) INFO: -_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_direct_urls_integration (cached) PASSED in 0.0s -_bk;t=1781335402604(07:23:22) INFO: -_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_direct_urls_no_extract (cached) PASSED in 0.3s -_bk;t=1781335402604(07:23:22) INFO: -_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_dupe_requirements (cached) PASSED in 0.4s -_bk;t=1781335402604(07:23:22) INFO: -_bk;t=1781335402604 _bk;t=1781335402604//tests/pypi/parse_requirements:test_env_marker_resolution (cached) PASSED in 0.2s -_bk;t=1781335402604(07:23:22) INFO: -_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_extra_pip_args (cached) PASSED in 0.4s -_bk;t=1781335402605(07:23:22) INFO: -_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_get_index_urls_all_versions (cached) PASSED in 0.4s -_bk;t=1781335402605(07:23:22) INFO: -_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_get_index_urls_cross_platform (cached) PASSED in 0.6s -_bk;t=1781335402605(07:23:22) INFO: -_bk;t=1781335402605 _bk;t=1781335402605//tests/pypi/parse_requirements:test_get_index_urls_different_versions (cached) PASSED in 0.3s -_bk;t=1781335402605(07:23:22) INFO: -_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_get_index_urls_single_py_version (cached) PASSED in 0.7s -_bk;t=1781335402606(07:23:22) INFO: -_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_git_sources (cached) PASSED in 0.0s -_bk;t=1781335402606(07:23:22) INFO: -_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_multi_os (cached) PASSED in 0.0s -_bk;t=1781335402606(07:23:22) INFO: -_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_multi_os_legacy (cached) PASSED in 0.3s -_bk;t=1781335402606(07:23:22) INFO: -_bk;t=1781335402606 _bk;t=1781335402606//tests/pypi/parse_requirements:test_optional_hash (cached) PASSED in 0.3s -_bk;t=1781335402606(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements:test_overlapping_shas_with_index_results (cached) PASSED in 0.4s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements:test_select_requirement_none_platform (cached) PASSED in 0.9s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements:test_simple (cached) PASSED in 0.1s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_0 (cached) PASSED in 0.3s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_1 (cached) PASSED in 0.2s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_simpleapi_html:test_index (cached) PASSED in 0.1s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402607 _bk;t=1781335402607//tests/pypi/parse_simpleapi_html:test_sdist (cached) PASSED in 0.3s -_bk;t=1781335402607(07:23:22) INFO: -_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_simpleapi_html:test_whls (cached) PASSED in 0.1s -_bk;t=1781335402608(07:23:22) INFO: -_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_multiple_platforms (cached) PASSED in 0.0s -_bk;t=1781335402608(07:23:22) INFO: -_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_real_numpy_wheel (cached) PASSED in 0.4s -_bk;t=1781335402608(07:23:22) INFO: -_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_simple (cached) PASSED in 0.7s -_bk;t=1781335402608(07:23:22) INFO: -_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/parse_whl_name:test_with_build_tag (cached) PASSED in 0.3s -_bk;t=1781335402608(07:23:22) INFO: -_bk;t=1781335402608 _bk;t=1781335402608//tests/pypi/patch_whl:test_simple (cached) PASSED in 0.2s -_bk;t=1781335402608(07:23:22) INFO: -_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/patch_whl:test_simple_local_version (cached) PASSED in 0.5s -_bk;t=1781335402609(07:23:22) INFO: -_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_non_version_env_tests (cached) PASSED in 0.5s -_bk;t=1781335402609(07:23:22) INFO: -_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_partial_only_extra (cached) PASSED in 0.2s -_bk;t=1781335402609(07:23:22) INFO: -_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_platform_version_is_special (cached) PASSED in 0.3s -_bk;t=1781335402609(07:23:22) INFO: -_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_version_env_tests (cached) PASSED in 0.5s -_bk;t=1781335402609(07:23:22) INFO: -_bk;t=1781335402609 _bk;t=1781335402609//tests/pypi/pep508:evaluate_with_aliases (cached) PASSED in 0.1s -_bk;t=1781335402609(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:logical_expression_tests (cached) PASSED in 0.2s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:misc_expressions (cached) PASSED in 0.9s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_all_markers_are_added (cached) PASSED in 0.3s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_can_add_os_specific_deps (cached) PASSED in 0.1s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_can_get_deps_based_on_specific_python_version (cached) PASSED in 0.3s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_deps_are_added_to_more_specialized_platforms (cached) PASSED in 0.5s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_env_defaults (cached) PASSED in 0.2s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402610 _bk;t=1781335402610//tests/pypi/pep508:test_env_freebsd (cached) PASSED in 0.4s -_bk;t=1781335402610(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_env_macos (cached) PASSED in 0.2s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_extra_with_conditional_and_unconditional_markers (cached) PASSED in 0.2s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_extras_with_hyphens_are_normalized (cached) PASSED in 0.4s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_include_only_particular_deps (cached) PASSED in 0.1s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_requirement_line_parsing (cached) PASSED in 0.3s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_self_dependencies_can_come_in_any_order (cached) PASSED in 0.0s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402611 _bk;t=1781335402611//tests/pypi/pep508:test_self_include_deps_from_previously_visited (cached) PASSED in 0.2s -_bk;t=1781335402611(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:test_self_is_ignored (cached) PASSED in 0.2s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:test_simple_deps (cached) PASSED in 0.1s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:test_span_all_python_versions (cached) PASSED in 0.1s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pep508:tokenize_tests (cached) PASSED in 0.0s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pkg_aliases:test_config_setting_aliases (cached) PASSED in 0.6s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pkg_aliases:test_config_setting_aliases_many (cached) PASSED in 0.2s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402612 _bk;t=1781335402612//tests/pypi/pkg_aliases:test_config_settings_exist_legacy (cached) PASSED in 0.2s -_bk;t=1781335402612(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_group_aliases (cached) PASSED in 0.0s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_legacy_aliases (cached) PASSED in 0.3s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases (cached) PASSED in 0.2s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_empty (cached) PASSED in 0.2s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename (cached) PASSED in 0.2s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename_target_platforms (cached) PASSED in 0.1s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402613 _bk;t=1781335402613//tests/pypi/pypi_cache:test_memory_cache_hit (cached) PASSED in 0.5s -_bk;t=1781335402613(07:23:22) INFO: -_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_memory_cache_index_urls (cached) PASSED in 0.2s -_bk;t=1781335402614(07:23:22) INFO: -_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts (cached) PASSED in 0.2s -_bk;t=1781335402614(07:23:22) INFO: -_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts_drops_unaccessed_dists (cached) PASSED in 0.3s -_bk;t=1781335402614(07:23:22) INFO: -_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts (cached) PASSED in 0.3s -_bk;t=1781335402614(07:23:22) INFO: -_bk;t=1781335402614 _bk;t=1781335402614//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_drops_unaccessed (cached) PASSED in 0.3s -_bk;t=1781335402614(07:23:22) INFO: -_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_incomplete (cached) PASSED in 1.0s -_bk;t=1781335402615(07:23:22) INFO: -_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/pypi_cache:test_pypi_cache_writes_index_urls_to_facts (cached) PASSED in 0.4s -_bk;t=1781335402615(07:23:22) INFO: -_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/pypi_cache:test_pypi_cache_writes_to_facts (cached) PASSED in 0.9s -_bk;t=1781335402615(07:23:22) INFO: -_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/python_tag:test_with_version (cached) PASSED in 0.2s -_bk;t=1781335402615(07:23:22) INFO: -_bk;t=1781335402615 _bk;t=1781335402615//tests/pypi/python_tag:test_without_version (cached) PASSED in 0.1s -_bk;t=1781335402615(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_aliases_are_created_for_all_wheels (cached) PASSED in 0.4s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_aliases_with_groups (cached) PASSED in 0.4s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_bzlmod_aliases (cached) PASSED in 0.3s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_empty (cached) PASSED in 0.2s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_empty_flag_versions (cached) PASSED in 0.3s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_get_flag_versions_from_alias_target_platforms (cached) PASSED in 0.2s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402616 _bk;t=1781335402616//tests/pypi/render_pkg_aliases:test_get_python_versions (cached) PASSED in 0.3s -_bk;t=1781335402616(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/render_pkg_aliases:test_get_python_versions_with_target_platforms (cached) PASSED in 0.3s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/render_pkg_aliases:test_legacy_aliases (cached) PASSED in 0.1s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/repack_whl:repack_whl_test (cached) PASSED in 1.8s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_fail_download_only_bad_attr (cached) PASSED in 0.2s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_fail_duplicate_platforms (cached) PASSED in 0.2s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_fail_no_requirements (cached) PASSED in 0.2s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_host_only_lockfile (cached) PASSED in 0.3s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402617 _bk;t=1781335402617//tests/pypi/requirements_files_by_platform:test_host_only_multiple_os (cached) PASSED in 0.3s -_bk;t=1781335402617(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_host_only_os_with_fallback (cached) PASSED in 0.2s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_multi_os (cached) PASSED in 0.3s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_multi_os_download_only_platform (cached) PASSED in 0.3s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_os_arch_requirements_with_default (cached) PASSED in 0.2s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_simple (cached) PASSED in 0.4s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_simple_limited (cached) PASSED in 0.4s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402618 _bk;t=1781335402618//tests/pypi/requirements_files_by_platform:test_simple_with_python_version (cached) PASSED in 0.1s -_bk;t=1781335402618(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_android (cached) PASSED in 0.3s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_freethreaded_wheels (cached) PASSED in 0.3s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_ignore_unsupported (cached) PASSED in 0.2s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_legacy_manylinux (cached) PASSED in 0.2s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_manylinx_musllinux_pref (cached) PASSED in 0.2s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_match_abi_and_not_py_version (cached) PASSED in 0.3s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402619 _bk;t=1781335402619//tests/pypi/select_whl:test_multiple_musllinux (cached) PASSED in 0.3s -_bk;t=1781335402619(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_musllinux_exact_params (cached) PASSED in 0.5s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_mvs_match (cached) PASSED in 0.2s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_mvs_match_override_less_specific (cached) PASSED in 0.4s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_multiple_mvs_match_override_more_specific (cached) PASSED in 0.5s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_not_select_abi3 (cached) PASSED in 0.2s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_not_select_py2 (cached) PASSED in 0.2s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_pytags_all_possible (cached) PASSED in 0.3s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402620 _bk;t=1781335402620//tests/pypi/select_whl:test_select_by_supported_cp_version (cached) PASSED in 0.4s -_bk;t=1781335402620(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_select_by_supported_py_version (cached) PASSED in 0.2s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_select_cp312 (cached) PASSED in 0.5s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_select_filename_with_many_tags (cached) PASSED in 0.3s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_simplest (cached) PASSED in 0.3s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/select_whl:test_supported_cp_version_manylinux (cached) PASSED in 0.4s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/simpleapi_download:test_download_envsubst_url (cached) PASSED in 0.2s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/simpleapi_download:test_download_url (cached) PASSED in 0.6s -_bk;t=1781335402621(07:23:22) INFO: -_bk;t=1781335402621 _bk;t=1781335402621//tests/pypi/simpleapi_download:test_download_url_parallel (cached) PASSED in 0.3s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/simpleapi_download:test_download_url_parallel_with_overrides (cached) PASSED in 0.4s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/simpleapi_download:test_index_overrides (cached) PASSED in 0.5s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/simpleapi_download:test_simple (cached) PASSED in 0.2s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/urllib:test_absolute_url (cached) PASSED in 0.1s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/urllib:test_strip_empty_path_segments (cached) PASSED in 0.4s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/version_from_filename:test_sdist_version_extraction (cached) PASSED in 0.3s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402622 _bk;t=1781335402622//tests/pypi/version_from_filename:test_sdist_version_extraction_fail (cached) PASSED in 0.6s -_bk;t=1781335402622(07:23:22) INFO: -_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/version_from_filename:test_wheel_version_extraction (cached) PASSED in 0.4s -_bk;t=1781335402623(07:23:22) INFO: -_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_installer:arguments_test (cached) PASSED in 1.2s -_bk;t=1781335402623(07:23:22) INFO: -_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_library:whl_library_extras_test (cached) PASSED in 1.0s -_bk;t=1781335402623(07:23:22) INFO: -_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_library_targets:test_copy (cached) PASSED in 0.2s -_bk;t=1781335402623(07:23:22) INFO: -_bk;t=1781335402623 _bk;t=1781335402623//tests/pypi/whl_library_targets:test_filegroups (cached) PASSED in 0.2s -_bk;t=1781335402623(07:23:22) INFO: -_bk;t=1781335402624 _bk;t=1781335402624//tests/pypi/whl_library_targets:test_group (cached) PASSED in 0.2s -_bk;t=1781335402624(07:23:22) INFO: -_bk;t=1781335402624 _bk;t=1781335402624//tests/pypi/whl_library_targets:test_platforms (cached) PASSED in 0.3s -_bk;t=1781335402624(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_library_targets:test_sdist_excludes_record (cached) PASSED in 0.4s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_library_targets:test_whl_and_library_deps (cached) PASSED in 0.1s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_library_targets:test_whl_and_library_deps_from_requires (cached) PASSED in 0.9s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_contains_dist_info_but_no_metadata (cached) PASSED in 0.3s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_contains_metadata (cached) PASSED in 0.4s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_empty (cached) PASSED in 0.7s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_parse_entry_points (cached) PASSED in 0.7s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_parse_entry_points_deduplicate (cached) PASSED in 0.4s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402625 _bk;t=1781335402625//tests/pypi/whl_metadata:test_parse_metadata_all (cached) PASSED in 0.4s -_bk;t=1781335402625(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_metadata:test_parse_metadata_basic (cached) PASSED in 0.3s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_metadata:test_parse_metadata_invalid (cached) PASSED in 0.2s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_metadata:test_parse_metadata_multiline_license (cached) PASSED in 0.2s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_name_with_percent (cached) PASSED in 0.3s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_name_with_plus (cached) PASSED in 0.4s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_platform_whl (cached) PASSED in 0.7s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402626 _bk;t=1781335402626//tests/pypi/whl_repo_name:test_sdist (cached) PASSED in 0.2s -_bk;t=1781335402626(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_repo_name:test_sdist_no_sha (cached) PASSED in 0.5s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_repo_name:test_simple (cached) PASSED in 0.3s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_repo_name:test_simple_no_sha (cached) PASSED in 0.2s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_target_platforms:can_parse_existing_tags (cached) PASSED in 0.2s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_target_platforms:test_simple (cached) PASSED in 0.2s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/pypi/whl_target_platforms:test_with_abi (cached) PASSED in 0.5s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/python:test_add_new_version (cached) PASSED in 0.2s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402627 _bk;t=1781335402627//tests/python:test_add_patches (cached) PASSED in 0.2s -_bk;t=1781335402627(07:23:22) INFO: -_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_add_target_settings (cached) PASSED in 0.2s -_bk;t=1781335402628(07:23:22) INFO: -_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_auth_overrides (cached) PASSED in 0.3s -_bk;t=1781335402628(07:23:22) INFO: -_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_defaults (cached) PASSED in 0.3s -_bk;t=1781335402628(07:23:22) INFO: -_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_defaults_env (cached) PASSED in 0.1s -_bk;t=1781335402628(07:23:22) INFO: -_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_defaults_file (cached) PASSED in 0.4s -_bk;t=1781335402628(07:23:22) INFO: -_bk;t=1781335402628 _bk;t=1781335402628//tests/python:test_default_from_rules_python_when_rules_python_is_not_root (cached) PASSED in 0.2s -_bk;t=1781335402628(07:23:22) INFO: -_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_default_from_rules_python_when_rules_python_is_root (cached) PASSED in 0.6s -_bk;t=1781335402629(07:23:22) INFO: -_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_default_from_single_toolchain (cached) PASSED in 0.4s -_bk;t=1781335402629(07:23:22) INFO: -_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_default_with_patch_version (cached) PASSED in 0.0s -_bk;t=1781335402629(07:23:22) INFO: -_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_defaults_overrides_single_toolchain (cached) PASSED in 0.6s -_bk;t=1781335402629(07:23:22) INFO: -_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_defaults_overrides_toolchains_setting_is_default (cached) PASSED in 0.2s -_bk;t=1781335402629(07:23:22) INFO: -_bk;t=1781335402629 _bk;t=1781335402629//tests/python:test_fail_two_overrides (cached) PASSED in 0.1s -_bk;t=1781335402629(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_first_occurance_of_the_toolchain_wins (cached) PASSED in 0.1s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_ignore_unsupported_versions (cached) PASSED in 0.3s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_register_all_versions (cached) PASSED in 0.7s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_single_version_override_errors (cached) PASSED in 0.4s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_single_version_platform_override_errors (cached) PASSED in 0.3s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python:test_toolchain_ordering (cached) PASSED in 0.6s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python_bzlmod_ext:test_dynamic_manifest_files (cached) PASSED in 0.2s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402630 _bk;t=1781335402630//tests/python_bzlmod_ext:test_dynamic_manifest_toolchains (cached) PASSED in 0.2s -_bk;t=1781335402630(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/python_bzlmod_ext:test_parse_filename_baseline (cached) PASSED in 0.2s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/python_bzlmod_ext:test_parse_sha_manifest (cached) PASSED in 0.1s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/repl:repl_with_dep_test (cached) PASSED in 3.8s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/repl:repl_without_dep_test (cached) PASSED in 4.1s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/repo_utils:test_get_platforms_os_name (cached) PASSED in 0.2s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/repo_utils:test_is_relative_to (cached) PASSED in 0.1s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402631 _bk;t=1781335402631//tests/repo_utils:test_relative_to (cached) PASSED in 0.1s -_bk;t=1781335402631(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:pathlib_min_python_test (cached) PASSED in 1.6s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:pathlib_test (cached) PASSED in 2.1s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:publishing (cached) PASSED in 0.3s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:runfiles_min_python_test (cached) PASSED in 2.5s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runfiles:runfiles_test (cached) PASSED in 1.2s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runtime_env_toolchain:bootstrap_script_test (cached) PASSED in 1.6s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402632 _bk;t=1781335402632//tests/runtime_env_toolchain:test_runtime_env_toolchain_matches (cached) PASSED in 0.3s -_bk;t=1781335402632(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/runtime_env_toolchain:toolchain_runs_test (cached) PASSED in 1.0s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_file (cached) PASSED in 0.5s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_glob (cached) PASSED in 0.6s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_mctx (cached) PASSED in 0.5s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_module_and_tags (cached) PASSED in 0.6s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_path (cached) PASSED in 0.6s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_rctx (cached) PASSED in 0.3s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402633 _bk;t=1781335402633//tests/support/mocks:test_select (cached) PASSED in 0.6s -_bk;t=1781335402633(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/text_util:test_render_alias (cached) PASSED in 0.7s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/text_util:test_render_tuple_dict (cached) PASSED in 0.3s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:build_test (cached) PASSED in 0.1s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:custom_platform_toolchain_test (cached) PASSED in 0.9s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.11_test (cached) PASSED in 1.2s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.12_test (cached) PASSED in 1.4s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.13_test (cached) PASSED in 0.8s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402634 _bk;t=1781335402634//tests/toolchains:python_3.10.14_test (cached) PASSED in 1.7s -_bk;t=1781335402634(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.15_test (cached) PASSED in 1.4s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.16_test (cached) PASSED in 1.4s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.18_test (cached) PASSED in 1.4s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.19_test (cached) PASSED in 1.6s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.20_test (cached) PASSED in 1.6s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.2_test (cached) PASSED in 0.8s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.4_test (cached) PASSED in 0.8s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402635//tests/toolchains:python_3.10.6_test (cached) PASSED in 0.8s -_bk;t=1781335402635(07:23:22) INFO: -_bk;t=1781335402635 _bk;t=1781335402636//tests/toolchains:python_3.10.8_test (cached) PASSED in 1.5s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.10.9_test (cached) PASSED in 1.2s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.10_test (cached) PASSED in 1.2s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.13_test (cached) PASSED in 1.0s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.14_test (cached) PASSED in 1.6s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.15_test (cached) PASSED in 1.4s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.1_test (cached) PASSED in 1.2s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402636 _bk;t=1781335402636//tests/toolchains:python_3.11.3_test (cached) PASSED in 1.5s -_bk;t=1781335402636(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.4_test (cached) PASSED in 1.5s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.5_test (cached) PASSED in 0.9s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.6_test (cached) PASSED in 0.9s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.7_test (cached) PASSED in 1.3s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.8_test (cached) PASSED in 1.6s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.11.9_test (cached) PASSED in 1.4s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.12.0_test (cached) PASSED in 1.8s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402637 _bk;t=1781335402637//tests/toolchains:python_3.12.11_test (cached) PASSED in 1.0s -_bk;t=1781335402637(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.12_test (cached) PASSED in 1.2s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.13_test (cached) PASSED in 1.7s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.1_test (cached) PASSED in 1.1s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.2_test (cached) PASSED in 2.1s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.3_test (cached) PASSED in 1.0s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.4_test (cached) PASSED in 1.7s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.7_test (cached) PASSED in 1.5s -_bk;t=1781335402638(07:23:22) INFO: -_bk;t=1781335402638 _bk;t=1781335402638//tests/toolchains:python_3.12.8_test (cached) PASSED in 1.6s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.12.9_test (cached) PASSED in 0.8s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.0_test (cached) PASSED in 1.5s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.10_test (cached) PASSED in 1.4s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.11_test (cached) PASSED in 1.1s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.12_test (cached) PASSED in 1.1s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.13_test (cached) PASSED in 1.0s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402639 _bk;t=1781335402639//tests/toolchains:python_3.13.1_test (cached) PASSED in 1.6s -_bk;t=1781335402639(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.2_test (cached) PASSED in 1.0s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.4_test (cached) PASSED in 1.2s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.6_test (cached) PASSED in 1.0s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.13.9_test (cached) PASSED in 1.0s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.0_test (cached) PASSED in 0.8s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.1_test (cached) PASSED in 1.6s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.2_test (cached) PASSED in 1.3s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.3_test (cached) PASSED in 1.2s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402640 _bk;t=1781335402640//tests/toolchains:python_3.14.4_test (cached) PASSED in 1.5s -_bk;t=1781335402640(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.15.0a1_test (cached) PASSED in 1.4s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.15.0a2_test (cached) PASSED in 1.1s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.15.0a8_test (cached) PASSED in 1.1s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains:python_3.9.25_test (cached) PASSED in 1.1s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin (cached) PASSED in 0.3s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc (cached) PASSED in 0.1s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402641 _bk;t=1781335402641//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335402641(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu (cached) PASSED in 0.0s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.0s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin (cached) PASSED in 0.9s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.6s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc (cached) PASSED in 0.8s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402642 _bk;t=1781335402642//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_musl (cached) PASSED in 0.7s -_bk;t=1781335402642(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin (cached) PASSED in 0.5s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.6s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc (cached) PASSED in 0.6s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.2s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu (cached) PASSED in 0.2s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.8s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin (cached) PASSED in 0.5s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc (cached) PASSED in 0.4s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.5s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402643 _bk;t=1781335402643//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.7s -_bk;t=1781335402643(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_musl (cached) PASSED in 0.0s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/toolchains/transitions:test_default (cached) PASSED in 0.8s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/tools:wheelmaker_test (cached) PASSED in 2.3s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/private/release:release_test (cached) PASSED in 1.5s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/zipapp:exe_zip_maker_test (cached) PASSED in 1.9s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/zipapp:zip_main_maker_test (cached) PASSED in 1.3s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/tools/zipapp:zipper_test (cached) PASSED in 1.6s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/uv/lock:requirements_run_tests (cached) PASSED in 3.2s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402644 _bk;t=1781335402644//tests/uv/lock:requirements_test (cached) PASSED in 0.6s -_bk;t=1781335402644(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/lock/pyproject_toml:requirements_test (cached) PASSED in 0.3s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/lock/workspaces:requirements_test (cached) PASSED in 0.5s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/toolchain:uv_help_test (cached) PASSED in 1.1s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_complex_configuring (cached) PASSED in 0.5s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_default_building (cached) PASSED in 0.6s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_defaults (cached) PASSED in 0.3s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_manual_url_spec (cached) PASSED in 0.2s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_non_rules_python_non_root_is_ignored (cached) PASSED in 0.2s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_only_defaults (cached) PASSED in 0.2s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402645 _bk;t=1781335402645//tests/uv/uv:test_rules_python_does_not_take_precedence (cached) PASSED in 0.2s -_bk;t=1781335402645(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/uv/uv:test_toolchain_precedence (cached) PASSED in 1.0s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:importlib_metadata_test (cached) PASSED in 1.3s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:py_binary_other_module_test (cached) PASSED in 0.8s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:shared_lib_loading_test (cached) PASSED in 3.8s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:venvs_site_packages_libs_test (cached) PASSED in 1.4s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs:whl_scripts_runnable_test (cached) PASSED in 1.7s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs/app_files_building:test_complex_namespace_packages (cached) PASSED in 0.1s -_bk;t=1781335402646(07:23:22) INFO: -_bk;t=1781335402646 _bk;t=1781335402646//tests/venv_site_packages_libs/app_files_building:test_conflict_merging (cached) PASSED in 0.2s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_empty_and_trivial_inputs (cached) PASSED in 0.1s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_malformed_entry (cached) PASSED in 0.3s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_multiple_venv_symlink_kinds (cached) PASSED in 0.3s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_complex (cached) PASSED in 0.2s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_implicit_namespace_packages (cached) PASSED in 0.2s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_namespace_packages (cached) PASSED in 0.2s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402647 _bk;t=1781335402647//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_whls (cached) PASSED in 0.5s -_bk;t=1781335402647(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_single_toplevel (cached) PASSED in 0.1s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/venv_site_packages_libs/app_files_building:test_package_version_filtering (cached) PASSED in 0.3s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/venv_site_packages_libs/app_files_building:test_shared_library_symlinking (cached) PASSED in 0.2s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/version:test_normalization (cached) PASSED in 0.3s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/version:test_normalize_local (cached) PASSED in 0.7s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/version:test_ordering (cached) PASSED in 0.2s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/version_label:test_version_label_from_complex_version (cached) PASSED in 0.3s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402648 _bk;t=1781335402648//tests/version_label:test_version_label_from_major_minor_patch_version (cached) PASSED in 0.1s -_bk;t=1781335402648(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/version_label:test_version_label_from_major_minor_version (cached) PASSED in 0.4s -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/version_label:test_version_label_from_major_minor_version_custom_sep (cached) PASSED in 0.3s -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_filegroup:extract_wheel_files_test (cached) PASSED in 0.8s -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_filegroup:test_runfiles (cached) PASSED in 0.4s -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_filegroup:whl_headers_test (cached) PASSED in 0.4s -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/whl_with_build_files:verify_files_test (cached) PASSED in 0.9s -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/base_rules/py_binary:test_py_info_propagation_builtin SKIPPED -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/base_rules/py_library:test_py_info_propagation_builtin SKIPPED -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/base_rules/py_test:test_py_info_propagation_builtin SKIPPED -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402649 _bk;t=1781335402649//tests/cc/current_py_cc_headers:abi3_headers_linkage_test_py SKIPPED -_bk;t=1781335402649(07:23:22) INFO: -_bk;t=1781335402650 _bk;t=1781335402650//tests/py_runtime_pair:test_builtin_py_info_accepted SKIPPED -_bk;t=1781335402650(07:23:22) INFO: -_bk;t=1781335402650 _bk;t=1781335402650//tests/build_data:build_data_test PASSED in 0.6s -_bk;t=1781335402650(07:23:22) INFO: -_bk;t=1781335402650 _bk;t=1781335402650//tests/exec_toolchain_matching:test_exec_matches_target_python_version FAILED in 3 out of 3 in 0.3s -_bk;t=1781335402650 Stats over 3 runs: max = 0.3s, min = 0.1s, avg = 0.2s, dev = 0.1s -_bk;t=1781335402650(07:23:22) INFO: -_bk;t=1781335402650 _bk;t=1781335402650 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log -_bk;t=1781335402650(07:23:22) INFO: -_bk;t=1781335402650 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651//tests/toolchains/transitions:test_full_version FAILED in 3 out of 3 in 0.3s -_bk;t=1781335402651 Stats over 3 runs: max = 0.3s, min = 0.2s, avg = 0.2s, dev = 0.0s -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651//tests/toolchains/transitions:test_minor_versions FAILED in 3 out of 3 in 0.6s -_bk;t=1781335402651 Stats over 3 runs: max = 0.6s, min = 0.1s, avg = 0.3s, dev = 0.2s -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log -_bk;t=1781335402651(07:23:22) INFO: -_bk;t=1781335402651 _bk;t=1781335402651 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log -_bk;t=1781335402652(07:23:22) INFO: -_bk;t=1781335402652 _bk;t=1781335402652 -_bk;t=1781335402652(07:23:22) INFO: -_bk;t=1781335402652 _bk;t=1781335402652Executed 4 out of 590 tests: 582 tests pass, 3 fail locally, and 5 were skipped. -_bk;t=1781335402652(07:23:22) INFO: -_bk;t=1781335402897 _bk;t=1781335402899(07:23:22) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/fbdda209-4c6d-46f6-bc64-b5077668d829 -_bk;t=1781335402899bazel info output_base -_bk;t=1781335403154WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335403154WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335403154WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335403154WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335403154WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335403154WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335403154INFO: Invocation ID: 6ed95b0b-816d-45c4-b458-4f992890f827 -_bk;t=1781335403219 -_bk;t=1781335403219 -_bk;t=1781335403219--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=1781335403219 -_bk;t=1781335403219 -_bk;t=1781335403219buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=17813354032342026-06-13 07:23:23 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" -_bk;t=17813354032352026-06-13 07:23:23 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration -_bk;t=17813354032352026-06-13 07:23:23 INFO  Creating (0-1)/1 artifacts -_bk;t=17813354033412026-06-13 07:23:23 INFO  Uploading 019ebfdd-2b29-4fcc-99d9-bfb1b2d5d345 var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (170 KiB) -_bk;t=1781335403524buildkite-agent artifact upload /tmp/tmpdwhkjv8z/test_bep.json -_bk;t=17813354035482026-06-13 07:23:23 INFO  Found 1 files that match "/tmp/tmpdwhkjv8z/test_bep.json" -_bk;t=17813354035482026-06-13 07:23:23 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-dffb-4f9a-b540-dce4625e2d98"), using your agent configuration -_bk;t=17813354035482026-06-13 07:23:23 INFO  Creating (0-1)/1 artifacts -_bk;t=17813354035552026-06-13 07:23:23 INFO  Artifact uploads completed successfully -_bk;t=17813354036482026-06-13 07:23:23 INFO  Uploading 019ebfdd-2c61-45dc-a4c9-6b06db342b04 tmp/tmpdwhkjv8z/test_bep.json (2.9 MiB) -_bk;t=17813354038722026-06-13 07:23:23 INFO  Artifact uploads completed successfully -_bk;t=1781335403874bazel test failed with exit code 3 -_bk;t=1781335428608^^^ +++ -_bk;t=1781335428608🚨 Error: The command exited with status 3 -_bk;t=1781335428608^^^ +++ -_bk;t=1781335428608user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 -_bk;t=1781335428609~~~ Running plugin docker-buildkite-plugin pre-exit hook -_bk;t=1781335428609$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log deleted file mode 100644 index 45e847a9fd..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log +++ /dev/null @@ -1,2647 +0,0 @@ -_bk;t=1781335819495~~~ Running agent environment hook -_bk;t=1781335819495$ /etc/buildkite-agent/hooks/environment -_bk;t=1781335819526# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980" -_bk;t=1781335819526~~~ Preparing plugins -_bk;t=1781335819526# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" -_bk;t=1781335819527$ mktemp -dp /etc/buildkite-agent/plugins -_bk;t=1781335819527# Switching to the temporary plugin directory -_bk;t=1781335819527$ cd /etc/buildkite-agent/plugins/3247436658 -_bk;t=1781335819527$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . -_bk;t=1781335819529Cloning into '.'... -_bk;t=1781335819675POST git-upload-pack (175 bytes) -_bk;t=1781335819714POST git-upload-pack (gzip 3102 to 1570 bytes) -_bk;t=1781335819759remote: Enumerating objects: 2225, done._bk;t=1781335819759 -_bk;t=1781335819759remote: Counting objects: 0% (1/321)_bk;t=1781335819759 remote: Counting objects: 1% (4/321)_bk;t=1781335819759 remote: Counting objects: 2% (7/321)_bk;t=1781335819759 remote: Counting objects: 3% (10/321)_bk;t=1781335819759 remote: Counting objects: 4% (13/321)_bk;t=1781335819759 remote: Counting objects: 5% (17/321)_bk;t=1781335819759 remote: Counting objects: 6% (20/321)_bk;t=1781335819759 remote: Counting objects: 7% (23/321)_bk;t=1781335819759 remote: Counting objects: 8% (26/321)_bk;t=1781335819759 remote: Counting objects: 9% (29/321)_bk;t=1781335819759 remote: Counting objects: 10% (33/321)_bk;t=1781335819759 remote: Counting objects: 11% (36/321)_bk;t=1781335819759 remote: Counting objects: 12% (39/321)_bk;t=1781335819759 remote: Counting objects: 13% (42/321)_bk;t=1781335819759 remote: Counting objects: 14% (45/321)_bk;t=1781335819759 remote: Counting objects: 15% (49/321)_bk;t=1781335819759 remote: Counting objects: 16% (52/321)_bk;t=1781335819759 remote: Counting objects: 17% (55/321)_bk;t=1781335819759 remote: Counting objects: 18% (58/321)_bk;t=1781335819759 remote: Counting objects: 19% (61/321)_bk;t=1781335819759 remote: Counting objects: 20% (65/321)_bk;t=1781335819759 remote: Counting objects: 21% (68/321)_bk;t=1781335819759 remote: Counting objects: 22% (71/321)_bk;t=1781335819759 remote: Counting objects: 23% (74/321)_bk;t=1781335819759 remote: Counting objects: 24% (78/321)_bk;t=1781335819759 remote: Counting objects: 25% (81/321)_bk;t=1781335819759 remote: Counting objects: 26% (84/321)_bk;t=1781335819759 remote: Counting objects: 27% (87/321)_bk;t=1781335819759 remote: Counting objects: 28% (90/321)_bk;t=1781335819759 remote: Counting objects: 29% (94/321)_bk;t=1781335819759 remote: Counting objects: 30% (97/321)_bk;t=1781335819759 remote: Counting objects: 31% (100/321)_bk;t=1781335819759 remote: Counting objects: 32% (103/321)_bk;t=1781335819759 remote: Counting objects: 33% (106/321)_bk;t=1781335819759 remote: Counting objects: 34% (110/321)_bk;t=1781335819759 remote: Counting objects: 35% (113/321)_bk;t=1781335819759 remote: Counting objects: 36% (116/321)_bk;t=1781335819759 remote: Counting objects: 37% (119/321)_bk;t=1781335819759 remote: Counting objects: 38% (122/321)_bk;t=1781335819759 remote: Counting objects: 39% (126/321)_bk;t=1781335819759 remote: Counting objects: 40% (129/321)_bk;t=1781335819759 remote: Counting objects: 41% (132/321)_bk;t=1781335819759 remote: Counting objects: 42% (135/321)_bk;t=1781335819759 remote: Counting objects: 43% (139/321)_bk;t=1781335819759 remote: Counting objects: 44% (142/321)_bk;t=1781335819759 remote: Counting objects: 45% (145/321)_bk;t=1781335819759 remote: Counting objects: 46% (148/321)_bk;t=1781335819759 remote: Counting objects: 47% (151/321)_bk;t=1781335819759 remote: Counting objects: 48% (155/321)_bk;t=1781335819759 remote: Counting objects: 49% (158/321)_bk;t=1781335819759 remote: Counting objects: 50% (161/321)_bk;t=1781335819759 remote: Counting objects: 51% (164/321)_bk;t=1781335819759 remote: Counting objects: 52% (167/321)_bk;t=1781335819759 remote: Counting objects: 53% (171/321)_bk;t=1781335819759 remote: Counting objects: 54% (174/321)_bk;t=1781335819759 remote: Counting objects: 55% (177/321)_bk;t=1781335819759 remote: Counting objects: 56% (180/321)_bk;t=1781335819759 remote: Counting objects: 57% (183/321)_bk;t=1781335819759 remote: Counting objects: 58% (187/321)_bk;t=1781335819759 remote: Counting objects: 59% (190/321)_bk;t=1781335819759 remote: Counting objects: 60% (193/321)_bk;t=1781335819759 remote: Counting objects: 61% (196/321)_bk;t=1781335819759 remote: Counting objects: 62% (200/321)_bk;t=1781335819759 remote: Counting objects: 63% (203/321)_bk;t=1781335819759 remote: Counting objects: 64% (206/321)_bk;t=1781335819759 remote: Counting objects: 65% (209/321)_bk;t=1781335819759 remote: Counting objects: 66% (212/321)_bk;t=1781335819759 remote: Counting objects: 67% (216/321)_bk;t=1781335819759 remote: Counting objects: 68% (219/321)_bk;t=1781335819759 remote: Counting objects: 69% (222/321)_bk;t=1781335819759 remote: Counting objects: 70% (225/321)_bk;t=1781335819759 remote: Counting objects: 71% (228/321)_bk;t=1781335819759 remote: Counting objects: 72% (232/321)_bk;t=1781335819759 remote: Counting objects: 73% (235/321)_bk;t=1781335819759 remote: Counting objects: 74% (238/321)_bk;t=1781335819759 remote: Counting objects: 75% (241/321)_bk;t=1781335819759 remote: Counting objects: 76% (244/321)_bk;t=1781335819759 remote: Counting objects: 77% (248/321)_bk;t=1781335819759 remote: Counting objects: 78% (251/321)_bk;t=1781335819759 remote: Counting objects: 79% (254/321)_bk;t=1781335819759 remote: Counting objects: 80% (257/321)_bk;t=1781335819759 remote: Counting objects: 81% (261/321)_bk;t=1781335819759 remote: Counting objects: 82% (264/321)_bk;t=1781335819759 remote: Counting objects: 83% (267/321)_bk;t=1781335819759 remote: Counting objects: 84% (270/321)_bk;t=1781335819759 remote: Counting objects: 85% (273/321)_bk;t=1781335819759 remote: Counting objects: 86% (277/321)_bk;t=1781335819759 remote: Counting objects: 87% (280/321)_bk;t=1781335819759 remote: Counting objects: 88% (283/321)_bk;t=1781335819759 remote: Counting objects: 89% (286/321)_bk;t=1781335819759 remote: Counting objects: 90% (289/321)_bk;t=1781335819759 remote: Counting objects: 91% (293/321)_bk;t=1781335819759 remote: Counting objects: 92% (296/321)_bk;t=1781335819759 remote: Counting objects: 93% (299/321)_bk;t=1781335819759 remote: Counting objects: 94% (302/321)_bk;t=1781335819759 remote: Counting objects: 95% (305/321)_bk;t=1781335819759 remote: Counting objects: 96% (309/321)_bk;t=1781335819759 remote: Counting objects: 97% (312/321)_bk;t=1781335819759 remote: Counting objects: 98% (315/321)_bk;t=1781335819759 remote: Counting objects: 99% (318/321)_bk;t=1781335819759 remote: Counting objects: 100% (321/321)_bk;t=1781335819759 remote: Counting objects: 100% (321/321), done._bk;t=1781335819759 -_bk;t=1781335819759remote: Compressing objects: 0% (1/150)_bk;t=1781335819759 remote: Compressing objects: 1% (2/150)_bk;t=1781335819759 remote: Compressing objects: 2% (3/150)_bk;t=1781335819759 remote: Compressing objects: 3% (5/150)_bk;t=1781335819759 remote: Compressing objects: 4% (6/150)_bk;t=1781335819775 remote: Compressing objects: 5% (8/150)_bk;t=1781335819775 remote: Compressing objects: 6% (9/150)_bk;t=1781335819775 remote: Compressing objects: 7% (11/150)_bk;t=1781335819775 remote: Compressing objects: 8% (12/150)_bk;t=1781335819775 remote: Compressing objects: 9% (14/150)_bk;t=1781335819775 remote: Compressing objects: 10% (15/150)_bk;t=1781335819775 remote: Compressing objects: 11% (17/150)_bk;t=1781335819775 remote: Compressing objects: 12% (18/150)_bk;t=1781335819775 remote: Compressing objects: 13% (20/150)_bk;t=1781335819775 remote: Compressing objects: 14% (21/150)_bk;t=1781335819775 remote: Compressing objects: 15% (23/150)_bk;t=1781335819775 remote: Compressing objects: 16% (24/150)_bk;t=1781335819775 remote: Compressing objects: 17% (26/150)_bk;t=1781335819775 remote: Compressing objects: 18% (27/150)_bk;t=1781335819775 remote: Compressing objects: 19% (29/150)_bk;t=1781335819775 remote: Compressing objects: 20% (30/150)_bk;t=1781335819775 remote: Compressing objects: 21% (32/150)_bk;t=1781335819775 remote: Compressing objects: 22% (33/150)_bk;t=1781335819775 remote: Compressing objects: 23% (35/150)_bk;t=1781335819775 remote: Compressing objects: 24% (36/150)_bk;t=1781335819775 remote: Compressing objects: 25% (38/150)_bk;t=1781335819775 remote: Compressing objects: 26% (39/150)_bk;t=1781335819775 remote: Compressing objects: 27% (41/150)_bk;t=1781335819775 remote: Compressing objects: 28% (42/150)_bk;t=1781335819775 remote: Compressing objects: 29% (44/150)_bk;t=1781335819775 remote: Compressing objects: 30% (45/150)_bk;t=1781335819775 remote: Compressing objects: 31% (47/150)_bk;t=1781335819775 remote: Compressing objects: 32% (48/150)_bk;t=1781335819775 remote: Compressing objects: 33% (50/150)_bk;t=1781335819775 remote: Compressing objects: 34% (51/150)_bk;t=1781335819775 remote: Compressing objects: 35% (53/150)_bk;t=1781335819775 remote: Compressing objects: 36% (54/150)_bk;t=1781335819775 remote: Compressing objects: 37% (56/150)_bk;t=1781335819775 remote: Compressing objects: 38% (57/150)_bk;t=1781335819775 remote: Compressing objects: 39% (59/150)_bk;t=1781335819775 remote: Compressing objects: 40% (60/150)_bk;t=1781335819775 remote: Compressing objects: 41% (62/150)_bk;t=1781335819775 remote: Compressing objects: 42% (63/150)_bk;t=1781335819775 remote: Compressing objects: 43% (65/150)_bk;t=1781335819775 remote: Compressing objects: 44% (66/150)_bk;t=1781335819775 remote: Compressing objects: 45% (68/150)_bk;t=1781335819775 remote: Compressing objects: 46% (69/150)_bk;t=1781335819775 remote: Compressing objects: 47% (71/150)_bk;t=1781335819775 remote: Compressing objects: 48% (72/150)_bk;t=1781335819775 remote: Compressing objects: 49% (74/150)_bk;t=1781335819775 remote: Compressing objects: 50% (75/150)_bk;t=1781335819775 remote: Compressing objects: 51% (77/150)_bk;t=1781335819775 remote: Compressing objects: 52% (78/150)_bk;t=1781335819775 remote: Compressing objects: 53% (80/150)_bk;t=1781335819775 remote: Compressing objects: 54% (81/150)_bk;t=1781335819775 remote: Compressing objects: 55% (83/150)_bk;t=1781335819775 remote: Compressing objects: 56% (84/150)_bk;t=1781335819775 remote: Compressing objects: 57% (86/150)_bk;t=1781335819775 remote: Compressing objects: 58% (87/150)_bk;t=1781335819775 remote: Compressing objects: 59% (89/150)_bk;t=1781335819775 remote: Compressing objects: 60% (90/150)_bk;t=1781335819775 remote: Compressing objects: 61% (92/150)_bk;t=1781335819775 remote: Compressing objects: 62% (93/150)_bk;t=1781335819775 remote: Compressing objects: 63% (95/150)_bk;t=1781335819775 remote: Compressing objects: 64% (96/150)_bk;t=1781335819775 remote: Compressing objects: 65% (98/150)_bk;t=1781335819775 remote: Compressing objects: 66% (99/150)_bk;t=1781335819775 remote: Compressing objects: 67% (101/150)_bk;t=1781335819775 remote: Compressing objects: 68% (102/150)_bk;t=1781335819775 remote: Compressing objects: 69% (104/150)_bk;t=1781335819775 remote: Compressing objects: 70% (105/150)_bk;t=1781335819775 remote: Compressing objects: 71% (107/150)_bk;t=1781335819775 remote: Compressing objects: 72% (108/150)_bk;t=1781335819775 remote: Compressing objects: 73% (110/150)_bk;t=1781335819775 remote: Compressing objects: 74% (111/150)_bk;t=1781335819775 remote: Compressing objects: 75% (113/150)_bk;t=1781335819775 remote: Compressing objects: 76% (114/150)_bk;t=1781335819775 remote: Compressing objects: 77% (116/150)_bk;t=1781335819775 remote: Compressing objects: 78% (117/150)_bk;t=1781335819775 remote: Compressing objects: 79% (119/150)_bk;t=1781335819775 remote: Compressing objects: 80% (120/150)_bk;t=1781335819775 remote: Compressing objects: 81% (122/150)_bk;t=1781335819775 remote: Compressing objects: 82% (123/150)_bk;t=1781335819775 remote: Compressing objects: 83% (125/150)_bk;t=1781335819775 remote: Compressing objects: 84% (126/150)_bk;t=1781335819775 remote: Compressing objects: 85% (128/150)_bk;t=1781335819775 remote: Compressing objects: 86% (129/150)_bk;t=1781335819775 remote: Compressing objects: 87% (131/150)_bk;t=1781335819775 remote: Compressing objects: 88% (132/150)_bk;t=1781335819775 remote: Compressing objects: 89% (134/150)_bk;t=1781335819775 remote: Compressing objects: 90% (135/150)_bk;t=1781335819775 remote: Compressing objects: 91% (137/150)_bk;t=1781335819775 remote: Compressing objects: 92% (138/150)_bk;t=1781335819775 remote: Compressing objects: 93% (140/150)_bk;t=1781335819775 remote: Compressing objects: 94% (141/150)_bk;t=1781335819775 remote: Compressing objects: 95% (143/150)_bk;t=1781335819775 remote: Compressing objects: 96% (144/150)_bk;t=1781335819775 remote: Compressing objects: 97% (146/150)_bk;t=1781335819775 remote: Compressing objects: 98% (147/150)_bk;t=1781335819775 remote: Compressing objects: 99% (149/150)_bk;t=1781335819775 remote: Compressing objects: 100% (150/150)_bk;t=1781335819775 remote: Compressing objects: 100% (150/150), done._bk;t=1781335819782 -_bk;t=1781335819783Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) remote: Total 2225 (delta 206), reused 171 (delta 170), pack-reused 1904 (from 3)_bk;t=1781335819858 -_bk;t=1781335819858Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) Receiving objects: 96% (2136/2225) Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.77 KiB | 7.19 MiB/s, done. -_bk;t=1781335819860Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (90/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (111/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (167/1109) Resolving deltas: 16% (178/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (212/1109) Resolving deltas: 20% (224/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (244/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (300/1109) Resolving deltas: 28% (311/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (356/1109) Resolving deltas: 33% (366/1109) Resolving deltas: 34% (378/1109) Resolving deltas: 35% (389/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (413/1109) Resolving deltas: 38% (422/1109) Resolving deltas: 39% (433/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (466/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (500/1109) Resolving deltas: 46% (512/1109) Resolving deltas: 47% (522/1109) Resolving deltas: 48% (533/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (556/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (599/1109) Resolving deltas: 55% (610/1109) Resolving deltas: 56% (622/1109) Resolving deltas: 57% (633/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (666/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (756/1109) Resolving deltas: 69% (766/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (789/1109) Resolving deltas: 72% (799/1109) Resolving deltas: 73% (810/1109) Resolving deltas: 74% (822/1109) Resolving deltas: 75% (833/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (866/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (922/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (999/1109) Resolving deltas: 91% (1012/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1099/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. -_bk;t=1781335819903# Checking out `v3.8.0` -_bk;t=1781335819903$ git checkout -f v3.8.0 -_bk;t=1781335819908Note: switching to 'v3.8.0'. -_bk;t=1781335819908 -_bk;t=1781335819908You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335819908changes and commit them, and you can discard any commits you make in this -_bk;t=1781335819908state without impacting any branches by switching back to a branch. -_bk;t=1781335819908 -_bk;t=1781335819908If you want to create a new branch to retain commits you create, you may -_bk;t=1781335819908do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335819908 -_bk;t=1781335819908 git switch -c -_bk;t=1781335819908 -_bk;t=1781335819908Or undo this operation with: -_bk;t=1781335819908 -_bk;t=1781335819908 git switch - -_bk;t=1781335819908 -_bk;t=1781335819908Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335819908 -_bk;t=1781335819908HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master -_bk;t=1781335819908# Moving temporary plugin directory to final location -_bk;t=1781335819908$ mv /etc/buildkite-agent/plugins/3247436658 /etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 -_bk;t=1781335819908$ cd /var/lib/buildkite-agent/builds -_bk;t=1781335819908~~~ Running agent pre-checkout hook -_bk;t=1781335819909$ /etc/buildkite-agent/hooks/pre-checkout -_bk;t=1781335819925JOB_START_TIME: 1781335819925 -_bk;t=1781335819938Added: -_bk;t=1781335819939+ JOB_START_TIME -_bk;t=1781335819953~~~ Preparing working directory -_bk;t=1781335819953# Creating "/var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python" -_bk;t=1781335819954$ cd /var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python -_bk;t=1781335819954$ cd /var/lib/gitmirrors -_bk;t=1781335819962# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335819963# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously -_bk;t=1781335819963$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head -_bk;t=1781335820198remote: Enumerating objects: 2513, done._bk;t=1781335820198 -_bk;t=1781335820198remote: Counting objects: 0% (1/1602)_bk;t=1781335820198 remote: Counting objects: 1% (17/1602)_bk;t=1781335820198 remote: Counting objects: 2% (33/1602)_bk;t=1781335820198 remote: Counting objects: 3% (49/1602)_bk;t=1781335820198 remote: Counting objects: 4% (65/1602)_bk;t=1781335820198 remote: Counting objects: 5% (81/1602)_bk;t=1781335820198 remote: Counting objects: 6% (97/1602)_bk;t=1781335820198 remote: Counting objects: 7% (113/1602)_bk;t=1781335820198 remote: Counting objects: 8% (129/1602)_bk;t=1781335820198 remote: Counting objects: 9% (145/1602)_bk;t=1781335820198 remote: Counting objects: 10% (161/1602)_bk;t=1781335820199 remote: Counting objects: 11% (177/1602)_bk;t=1781335820199 remote: Counting objects: 12% (193/1602)_bk;t=1781335820199 remote: Counting objects: 13% (209/1602)_bk;t=1781335820199 remote: Counting objects: 14% (225/1602)_bk;t=1781335820199 remote: Counting objects: 15% (241/1602)_bk;t=1781335820199 remote: Counting objects: 16% (257/1602)_bk;t=1781335820199 remote: Counting objects: 17% (273/1602)_bk;t=1781335820199 remote: Counting objects: 18% (289/1602)_bk;t=1781335820199 remote: Counting objects: 19% (305/1602)_bk;t=1781335820199 remote: Counting objects: 20% (321/1602)_bk;t=1781335820199 remote: Counting objects: 21% (337/1602)_bk;t=1781335820199 remote: Counting objects: 22% (353/1602)_bk;t=1781335820199 remote: Counting objects: 23% (369/1602)_bk;t=1781335820199 remote: Counting objects: 24% (385/1602)_bk;t=1781335820199 remote: Counting objects: 25% (401/1602)_bk;t=1781335820199 remote: Counting objects: 26% (417/1602)_bk;t=1781335820199 remote: Counting objects: 27% (433/1602)_bk;t=1781335820199 remote: Counting objects: 28% (449/1602)_bk;t=1781335820199 remote: Counting objects: 29% (465/1602)_bk;t=1781335820199 remote: Counting objects: 30% (481/1602)_bk;t=1781335820199 remote: Counting objects: 31% (497/1602)_bk;t=1781335820199 remote: Counting objects: 32% (513/1602)_bk;t=1781335820199 remote: Counting objects: 33% (529/1602)_bk;t=1781335820199 remote: Counting objects: 34% (545/1602)_bk;t=1781335820199 remote: Counting objects: 35% (561/1602)_bk;t=1781335820199 remote: Counting objects: 36% (577/1602)_bk;t=1781335820199 remote: Counting objects: 37% (593/1602)_bk;t=1781335820199 remote: Counting objects: 38% (609/1602)_bk;t=1781335820199 remote: Counting objects: 39% (625/1602)_bk;t=1781335820199 remote: Counting objects: 40% (641/1602)_bk;t=1781335820199 remote: Counting objects: 41% (657/1602)_bk;t=1781335820199 remote: Counting objects: 42% (673/1602)_bk;t=1781335820199 remote: Counting objects: 43% (689/1602)_bk;t=1781335820199 remote: Counting objects: 44% (705/1602)_bk;t=1781335820199 remote: Counting objects: 45% (721/1602)_bk;t=1781335820199 remote: Counting objects: 46% (737/1602)_bk;t=1781335820199 remote: Counting objects: 47% (753/1602)_bk;t=1781335820199 remote: Counting objects: 48% (769/1602)_bk;t=1781335820199 remote: Counting objects: 49% (785/1602)_bk;t=1781335820199 remote: Counting objects: 50% (801/1602)_bk;t=1781335820199 remote: Counting objects: 51% (818/1602)_bk;t=1781335820199 remote: Counting objects: 52% (834/1602)_bk;t=1781335820199 remote: Counting objects: 53% (850/1602)_bk;t=1781335820199 remote: Counting objects: 54% (866/1602)_bk;t=1781335820199 remote: Counting objects: 55% (882/1602)_bk;t=1781335820199 remote: Counting objects: 56% (898/1602)_bk;t=1781335820199 remote: Counting objects: 57% (914/1602)_bk;t=1781335820199 remote: Counting objects: 58% (930/1602)_bk;t=1781335820199 remote: Counting objects: 59% (946/1602)_bk;t=1781335820199 remote: Counting objects: 60% (962/1602)_bk;t=1781335820199 remote: Counting objects: 61% (978/1602)_bk;t=1781335820199 remote: Counting objects: 62% (994/1602)_bk;t=1781335820199 remote: Counting objects: 63% (1010/1602)_bk;t=1781335820199 remote: Counting objects: 64% (1026/1602)_bk;t=1781335820199 remote: Counting objects: 65% (1042/1602)_bk;t=1781335820199 remote: Counting objects: 66% (1058/1602)_bk;t=1781335820199 remote: Counting objects: 67% (1074/1602)_bk;t=1781335820199 remote: Counting objects: 68% (1090/1602)_bk;t=1781335820199 remote: Counting objects: 69% (1106/1602)_bk;t=1781335820199 remote: Counting objects: 70% (1122/1602)_bk;t=1781335820199 remote: Counting objects: 71% (1138/1602)_bk;t=1781335820199 remote: Counting objects: 72% (1154/1602)_bk;t=1781335820199 remote: Counting objects: 73% (1170/1602)_bk;t=1781335820199 remote: Counting objects: 74% (1186/1602)_bk;t=1781335820199 remote: Counting objects: 75% (1202/1602)_bk;t=1781335820199 remote: Counting objects: 76% (1218/1602)_bk;t=1781335820199 remote: Counting objects: 77% (1234/1602)_bk;t=1781335820199 remote: Counting objects: 78% (1250/1602)_bk;t=1781335820199 remote: Counting objects: 79% (1266/1602)_bk;t=1781335820199 remote: Counting objects: 80% (1282/1602)_bk;t=1781335820199 remote: Counting objects: 81% (1298/1602)_bk;t=1781335820199 remote: Counting objects: 82% (1314/1602)_bk;t=1781335820199 remote: Counting objects: 83% (1330/1602)_bk;t=1781335820199 remote: Counting objects: 84% (1346/1602)_bk;t=1781335820199 remote: Counting objects: 85% (1362/1602)_bk;t=1781335820199 remote: Counting objects: 86% (1378/1602)_bk;t=1781335820199 remote: Counting objects: 87% (1394/1602)_bk;t=1781335820199 remote: Counting objects: 88% (1410/1602)_bk;t=1781335820199 remote: Counting objects: 89% (1426/1602)_bk;t=1781335820199 remote: Counting objects: 90% (1442/1602)_bk;t=1781335820199 remote: Counting objects: 91% (1458/1602)_bk;t=1781335820199 remote: Counting objects: 92% (1474/1602)_bk;t=1781335820199 remote: Counting objects: 93% (1490/1602)_bk;t=1781335820199 remote: Counting objects: 94% (1506/1602)_bk;t=1781335820199 remote: Counting objects: 95% (1522/1602)_bk;t=1781335820199 remote: Counting objects: 96% (1538/1602)_bk;t=1781335820199 remote: Counting objects: 97% (1554/1602)_bk;t=1781335820199 remote: Counting objects: 98% (1570/1602)_bk;t=1781335820199 remote: Counting objects: 99% (1586/1602)_bk;t=1781335820199 remote: Counting objects: 100% (1602/1602)_bk;t=1781335820199 remote: Counting objects: 100% (1602/1602), done._bk;t=1781335820199 -_bk;t=1781335820199remote: Compressing objects: 0% (1/449)_bk;t=1781335820199 remote: Compressing objects: 1% (5/449)_bk;t=1781335820199 remote: Compressing objects: 2% (9/449)_bk;t=1781335820199 remote: Compressing objects: 3% (14/449)_bk;t=1781335820199 remote: Compressing objects: 4% (18/449)_bk;t=1781335820199 remote: Compressing objects: 5% (23/449)_bk;t=1781335820199 remote: Compressing objects: 6% (27/449)_bk;t=1781335820199 remote: Compressing objects: 7% (32/449)_bk;t=1781335820199 remote: Compressing objects: 8% (36/449)_bk;t=1781335820199 remote: Compressing objects: 9% (41/449)_bk;t=1781335820199 remote: Compressing objects: 10% (45/449)_bk;t=1781335820199 remote: Compressing objects: 11% (50/449)_bk;t=1781335820199 remote: Compressing objects: 12% (54/449)_bk;t=1781335820199 remote: Compressing objects: 13% (59/449)_bk;t=1781335820199 remote: Compressing objects: 14% (63/449)_bk;t=1781335820199 remote: Compressing objects: 15% (68/449)_bk;t=1781335820199 remote: Compressing objects: 16% (72/449)_bk;t=1781335820199 remote: Compressing objects: 17% (77/449)_bk;t=1781335820199 remote: Compressing objects: 18% (81/449)_bk;t=1781335820199 remote: Compressing objects: 19% (86/449)_bk;t=1781335820199 remote: Compressing objects: 20% (90/449)_bk;t=1781335820199 remote: Compressing objects: 21% (95/449)_bk;t=1781335820199 remote: Compressing objects: 22% (99/449)_bk;t=1781335820199 remote: Compressing objects: 23% (104/449)_bk;t=1781335820199 remote: Compressing objects: 24% (108/449)_bk;t=1781335820199 remote: Compressing objects: 25% (113/449)_bk;t=1781335820199 remote: Compressing objects: 26% (117/449)_bk;t=1781335820199 remote: Compressing objects: 27% (122/449)_bk;t=1781335820199 remote: Compressing objects: 28% (126/449)_bk;t=1781335820199 remote: Compressing objects: 29% (131/449)_bk;t=1781335820199 remote: Compressing objects: 30% (135/449)_bk;t=1781335820199 remote: Compressing objects: 31% (140/449)_bk;t=1781335820199 remote: Compressing objects: 32% (144/449)_bk;t=1781335820199 remote: Compressing objects: 33% (149/449)_bk;t=1781335820199 remote: Compressing objects: 34% (153/449)_bk;t=1781335820199 remote: Compressing objects: 35% (158/449)_bk;t=1781335820199 remote: Compressing objects: 36% (162/449)_bk;t=1781335820199 remote: Compressing objects: 37% (167/449)_bk;t=1781335820199 remote: Compressing objects: 38% (171/449)_bk;t=1781335820199 remote: Compressing objects: 39% (176/449)_bk;t=1781335820199 remote: Compressing objects: 40% (180/449)_bk;t=1781335820199 remote: Compressing objects: 41% (185/449)_bk;t=1781335820199 remote: Compressing objects: 42% (189/449)_bk;t=1781335820199 remote: Compressing objects: 43% (194/449)_bk;t=1781335820199 remote: Compressing objects: 44% (198/449)_bk;t=1781335820199 remote: Compressing objects: 45% (203/449)_bk;t=1781335820199 remote: Compressing objects: 46% (207/449)_bk;t=1781335820199 remote: Compressing objects: 47% (212/449)_bk;t=1781335820199 remote: Compressing objects: 48% (216/449)_bk;t=1781335820199 remote: Compressing objects: 49% (221/449)_bk;t=1781335820199 remote: Compressing objects: 50% (225/449)_bk;t=1781335820199 remote: Compressing objects: 51% (229/449)_bk;t=1781335820200 remote: Compressing objects: 52% (234/449)_bk;t=1781335820200 remote: Compressing objects: 53% (238/449)_bk;t=1781335820200 remote: Compressing objects: 54% (243/449)_bk;t=1781335820200 remote: Compressing objects: 55% (247/449)_bk;t=1781335820200 remote: Compressing objects: 56% (252/449)_bk;t=1781335820200 remote: Compressing objects: 57% (256/449)_bk;t=1781335820200 remote: Compressing objects: 58% (261/449)_bk;t=1781335820200 remote: Compressing objects: 59% (265/449)_bk;t=1781335820200 remote: Compressing objects: 60% (270/449)_bk;t=1781335820200 remote: Compressing objects: 61% (274/449)_bk;t=1781335820200 remote: Compressing objects: 62% (279/449)_bk;t=1781335820200 remote: Compressing objects: 63% (283/449)_bk;t=1781335820200 remote: Compressing objects: 64% (288/449)_bk;t=1781335820200 remote: Compressing objects: 65% (292/449)_bk;t=1781335820200 remote: Compressing objects: 66% (297/449)_bk;t=1781335820200 remote: Compressing objects: 67% (301/449)_bk;t=1781335820200 remote: Compressing objects: 68% (306/449)_bk;t=1781335820200 remote: Compressing objects: 69% (310/449)_bk;t=1781335820200 remote: Compressing objects: 70% (315/449)_bk;t=1781335820200 remote: Compressing objects: 71% (319/449)_bk;t=1781335820200 remote: Compressing objects: 72% (324/449)_bk;t=1781335820200 remote: Compressing objects: 73% (328/449)_bk;t=1781335820200 remote: Compressing objects: 74% (333/449)_bk;t=1781335820200 remote: Compressing objects: 75% (337/449)_bk;t=1781335820200 remote: Compressing objects: 76% (342/449)_bk;t=1781335820200 remote: Compressing objects: 77% (346/449)_bk;t=1781335820200 remote: Compressing objects: 78% (351/449)_bk;t=1781335820200 remote: Compressing objects: 79% (355/449)_bk;t=1781335820200 remote: Compressing objects: 80% (360/449)_bk;t=1781335820200 remote: Compressing objects: 81% (364/449)_bk;t=1781335820200 remote: Compressing objects: 82% (369/449)_bk;t=1781335820200 remote: Compressing objects: 83% (373/449)_bk;t=1781335820200 remote: Compressing objects: 84% (378/449)_bk;t=1781335820200 remote: Compressing objects: 85% (382/449)_bk;t=1781335820200 remote: Compressing objects: 86% (387/449)_bk;t=1781335820200 remote: Compressing objects: 87% (391/449)_bk;t=1781335820200 remote: Compressing objects: 88% (396/449)_bk;t=1781335820200 remote: Compressing objects: 89% (400/449)_bk;t=1781335820200 remote: Compressing objects: 90% (405/449)_bk;t=1781335820200 remote: Compressing objects: 91% (409/449)_bk;t=1781335820200 remote: Compressing objects: 92% (414/449)_bk;t=1781335820200 remote: Compressing objects: 93% (418/449)_bk;t=1781335820210 remote: Compressing objects: 94% (423/449)_bk;t=1781335820210 remote: Compressing objects: 95% (427/449)_bk;t=1781335820210 remote: Compressing objects: 96% (432/449)_bk;t=1781335820210 remote: Compressing objects: 97% (436/449)_bk;t=1781335820210 remote: Compressing objects: 98% (441/449)_bk;t=1781335820210 remote: Compressing objects: 99% (445/449)_bk;t=1781335820210 remote: Compressing objects: 100% (449/449)_bk;t=1781335820210 remote: Compressing objects: 100% (449/449), done._bk;t=1781335820210 -_bk;t=1781335820224Receiving objects: 0% (1/2513) Receiving objects: 1% (26/2513) Receiving objects: 2% (51/2513) Receiving objects: 3% (76/2513) Receiving objects: 4% (101/2513) Receiving objects: 5% (126/2513) Receiving objects: 6% (151/2513) Receiving objects: 7% (176/2513) Receiving objects: 8% (202/2513) Receiving objects: 9% (227/2513) Receiving objects: 10% (252/2513) Receiving objects: 11% (277/2513) Receiving objects: 12% (302/2513) Receiving objects: 13% (327/2513) Receiving objects: 14% (352/2513) Receiving objects: 15% (377/2513) Receiving objects: 16% (403/2513) Receiving objects: 17% (428/2513) Receiving objects: 18% (453/2513) Receiving objects: 19% (478/2513) Receiving objects: 20% (503/2513) Receiving objects: 21% (528/2513) Receiving objects: 22% (553/2513) Receiving objects: 23% (578/2513) Receiving objects: 24% (604/2513) Receiving objects: 25% (629/2513) Receiving objects: 26% (654/2513) Receiving objects: 27% (679/2513) Receiving objects: 28% (704/2513) Receiving objects: 29% (729/2513) Receiving objects: 30% (754/2513) Receiving objects: 31% (780/2513) Receiving objects: 32% (805/2513) Receiving objects: 33% (830/2513) Receiving objects: 34% (855/2513) Receiving objects: 35% (880/2513) Receiving objects: 36% (905/2513) Receiving objects: 37% (930/2513) Receiving objects: 38% (955/2513) Receiving objects: 39% (981/2513) Receiving objects: 40% (1006/2513) Receiving objects: 41% (1031/2513) Receiving objects: 42% (1056/2513) Receiving objects: 43% (1081/2513) Receiving objects: 44% (1106/2513) Receiving objects: 45% (1131/2513) Receiving objects: 46% (1156/2513) Receiving objects: 47% (1182/2513) Receiving objects: 48% (1207/2513) Receiving objects: 49% (1232/2513) Receiving objects: 50% (1257/2513) Receiving objects: 51% (1282/2513) Receiving objects: 52% (1307/2513) Receiving objects: 53% (1332/2513) Receiving objects: 54% (1358/2513) Receiving objects: 55% (1383/2513) Receiving objects: 56% (1408/2513) Receiving objects: 57% (1433/2513) Receiving objects: 58% (1458/2513) Receiving objects: 59% (1483/2513) Receiving objects: 60% (1508/2513) Receiving objects: 61% (1533/2513) Receiving objects: 62% (1559/2513) Receiving objects: 63% (1584/2513) Receiving objects: 64% (1609/2513) Receiving objects: 65% (1634/2513) Receiving objects: 66% (1659/2513) Receiving objects: 67% (1684/2513) Receiving objects: 68% (1709/2513) Receiving objects: 69% (1734/2513) Receiving objects: 70% (1760/2513) Receiving objects: 71% (1785/2513) Receiving objects: 72% (1810/2513) Receiving objects: 73% (1835/2513) Receiving objects: 74% (1860/2513) Receiving objects: 75% (1885/2513) Receiving objects: 76% (1910/2513) Receiving objects: 77% (1936/2513) Receiving objects: 78% (1961/2513) Receiving objects: 79% (1986/2513) Receiving objects: 80% (2011/2513) Receiving objects: 81% (2036/2513) Receiving objects: 82% (2061/2513) Receiving objects: 83% (2086/2513) Receiving objects: 84% (2111/2513) Receiving objects: 85% (2137/2513) Receiving objects: 86% (2162/2513) Receiving objects: 87% (2187/2513) Receiving objects: 88% (2212/2513) Receiving objects: 89% (2237/2513) Receiving objects: 90% (2262/2513) Receiving objects: 91% (2287/2513) Receiving objects: 92% (2312/2513) Receiving objects: 93% (2338/2513) Receiving objects: 94% (2363/2513) Receiving objects: 95% (2388/2513) Receiving objects: 96% (2413/2513) remote: Total 2513 (delta 1370), reused 1217 (delta 1146), pack-reused 911 (from 3)_bk;t=1781335820360 -_bk;t=1781335820362Receiving objects: 97% (2438/2513) Receiving objects: 98% (2463/2513) Receiving objects: 99% (2488/2513) Receiving objects: 100% (2513/2513) Receiving objects: 100% (2513/2513), 1.58 MiB | 11.46 MiB/s, done. -_bk;t=1781335820362Resolving deltas: 0% (0/1537) Resolving deltas: 1% (16/1537) Resolving deltas: 2% (31/1537) Resolving deltas: 3% (47/1537) Resolving deltas: 4% (63/1537) Resolving deltas: 5% (77/1537) Resolving deltas: 6% (93/1537) Resolving deltas: 7% (110/1537) Resolving deltas: 8% (123/1537) Resolving deltas: 9% (139/1537) Resolving deltas: 10% (154/1537) Resolving deltas: 11% (171/1537) Resolving deltas: 12% (185/1537) Resolving deltas: 13% (200/1537) Resolving deltas: 14% (217/1537) Resolving deltas: 15% (231/1537) Resolving deltas: 16% (246/1537) Resolving deltas: 17% (262/1537) Resolving deltas: 18% (277/1537) Resolving deltas: 19% (293/1537) Resolving deltas: 20% (308/1537) Resolving deltas: 21% (323/1537) Resolving deltas: 22% (339/1537) Resolving deltas: 23% (354/1537) Resolving deltas: 24% (369/1537) Resolving deltas: 25% (385/1537) Resolving deltas: 26% (400/1537) Resolving deltas: 27% (415/1537) Resolving deltas: 28% (431/1537) Resolving deltas: 29% (446/1537) Resolving deltas: 30% (462/1537) Resolving deltas: 31% (477/1537) Resolving deltas: 32% (492/1537) Resolving deltas: 33% (508/1537) Resolving deltas: 34% (523/1537) Resolving deltas: 35% (538/1537) Resolving deltas: 36% (554/1537) Resolving deltas: 37% (569/1537) Resolving deltas: 38% (585/1537) Resolving deltas: 39% (600/1537) Resolving deltas: 40% (615/1537) Resolving deltas: 41% (631/1537) Resolving deltas: 42% (646/1537) Resolving deltas: 43% (661/1537) Resolving deltas: 44% (677/1537) Resolving deltas: 45% (692/1537) Resolving deltas: 46% (708/1537) Resolving deltas: 47% (723/1537) Resolving deltas: 48% (738/1537) Resolving deltas: 49% (754/1537) Resolving deltas: 50% (769/1537) Resolving deltas: 51% (784/1537) Resolving deltas: 52% (800/1537) Resolving deltas: 53% (815/1537) Resolving deltas: 54% (830/1537) Resolving deltas: 55% (846/1537) Resolving deltas: 56% (861/1537) Resolving deltas: 57% (877/1537) Resolving deltas: 58% (892/1537) Resolving deltas: 59% (907/1537) Resolving deltas: 60% (923/1537) Resolving deltas: 61% (938/1537) Resolving deltas: 62% (953/1537) Resolving deltas: 63% (969/1537) Resolving deltas: 64% (984/1537) Resolving deltas: 65% (1000/1537) Resolving deltas: 66% (1015/1537) Resolving deltas: 67% (1030/1537) Resolving deltas: 68% (1046/1537) Resolving deltas: 69% (1061/1537) Resolving deltas: 70% (1076/1537) Resolving deltas: 71% (1092/1537) Resolving deltas: 72% (1107/1537) Resolving deltas: 73% (1123/1537) Resolving deltas: 74% (1138/1537) Resolving deltas: 75% (1153/1537) Resolving deltas: 76% (1169/1537) Resolving deltas: 77% (1184/1537) Resolving deltas: 78% (1199/1537) Resolving deltas: 79% (1215/1537) Resolving deltas: 80% (1230/1537) Resolving deltas: 81% (1245/1537) Resolving deltas: 82% (1261/1537) Resolving deltas: 83% (1276/1537) Resolving deltas: 84% (1292/1537) Resolving deltas: 85% (1307/1537) Resolving deltas: 86% (1322/1537) Resolving deltas: 87% (1338/1537) Resolving deltas: 88% (1353/1537) Resolving deltas: 89% (1368/1537) Resolving deltas: 90% (1384/1537) Resolving deltas: 91% (1399/1537) Resolving deltas: 92% (1415/1537) Resolving deltas: 93% (1430/1537) Resolving deltas: 94% (1445/1537) Resolving deltas: 95% (1461/1537) Resolving deltas: 96% (1476/1537) Resolving deltas: 97% (1491/1537) Resolving deltas: 98% (1507/1537) Resolving deltas: 99% (1522/1537) Resolving deltas: 100% (1537/1537) Resolving deltas: 100% (1537/1537), completed with 253 local objects. -_bk;t=1781335820514From https://github.com/bazel-contrib/rules_python -_bk;t=1781335820514 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335820516$ cd /var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python -_bk;t=1781335820516$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335820518Cloning into '.'... -_bk;t=1781335820648POST git-upload-pack (175 bytes) -_bk;t=1781335820692POST git-upload-pack (gzip 2193 to 1014 bytes) -_bk;t=1781335820742remote: Enumerating objects: 2527, done._bk;t=1781335820742 -_bk;t=1781335820742remote: Counting objects: 0% (1/1595)_bk;t=1781335820742 remote: Counting objects: 1% (16/1595)_bk;t=1781335820742 remote: Counting objects: 2% (32/1595)_bk;t=1781335820742 remote: Counting objects: 3% (48/1595)_bk;t=1781335820742 remote: Counting objects: 4% (64/1595)_bk;t=1781335820742 remote: Counting objects: 5% (80/1595)_bk;t=1781335820742 remote: Counting objects: 6% (96/1595)_bk;t=1781335820742 remote: Counting objects: 7% (112/1595)_bk;t=1781335820742 remote: Counting objects: 8% (128/1595)_bk;t=1781335820742 remote: Counting objects: 9% (144/1595)_bk;t=1781335820742 remote: Counting objects: 10% (160/1595)_bk;t=1781335820742 remote: Counting objects: 11% (176/1595)_bk;t=1781335820742 remote: Counting objects: 12% (192/1595)_bk;t=1781335820742 remote: Counting objects: 13% (208/1595)_bk;t=1781335820742 remote: Counting objects: 14% (224/1595)_bk;t=1781335820742 remote: Counting objects: 15% (240/1595)_bk;t=1781335820742 remote: Counting objects: 16% (256/1595)_bk;t=1781335820742 remote: Counting objects: 17% (272/1595)_bk;t=1781335820742 remote: Counting objects: 18% (288/1595)_bk;t=1781335820742 remote: Counting objects: 19% (304/1595)_bk;t=1781335820742 remote: Counting objects: 20% (319/1595)_bk;t=1781335820742 remote: Counting objects: 21% (335/1595)_bk;t=1781335820742 remote: Counting objects: 22% (351/1595)_bk;t=1781335820742 remote: Counting objects: 23% (367/1595)_bk;t=1781335820742 remote: Counting objects: 24% (383/1595)_bk;t=1781335820742 remote: Counting objects: 25% (399/1595)_bk;t=1781335820742 remote: Counting objects: 26% (415/1595)_bk;t=1781335820742 remote: Counting objects: 27% (431/1595)_bk;t=1781335820742 remote: Counting objects: 28% (447/1595)_bk;t=1781335820742 remote: Counting objects: 29% (463/1595)_bk;t=1781335820742 remote: Counting objects: 30% (479/1595)_bk;t=1781335820742 remote: Counting objects: 31% (495/1595)_bk;t=1781335820742 remote: Counting objects: 32% (511/1595)_bk;t=1781335820742 remote: Counting objects: 33% (527/1595)_bk;t=1781335820742 remote: Counting objects: 34% (543/1595)_bk;t=1781335820742 remote: Counting objects: 35% (559/1595)_bk;t=1781335820742 remote: Counting objects: 36% (575/1595)_bk;t=1781335820742 remote: Counting objects: 37% (591/1595)_bk;t=1781335820742 remote: Counting objects: 38% (607/1595)_bk;t=1781335820742 remote: Counting objects: 39% (623/1595)_bk;t=1781335820742 remote: Counting objects: 40% (638/1595)_bk;t=1781335820742 remote: Counting objects: 41% (654/1595)_bk;t=1781335820742 remote: Counting objects: 42% (670/1595)_bk;t=1781335820742 remote: Counting objects: 43% (686/1595)_bk;t=1781335820742 remote: Counting objects: 44% (702/1595)_bk;t=1781335820742 remote: Counting objects: 45% (718/1595)_bk;t=1781335820742 remote: Counting objects: 46% (734/1595)_bk;t=1781335820742 remote: Counting objects: 47% (750/1595)_bk;t=1781335820742 remote: Counting objects: 48% (766/1595)_bk;t=1781335820742 remote: Counting objects: 49% (782/1595)_bk;t=1781335820742 remote: Counting objects: 50% (798/1595)_bk;t=1781335820742 remote: Counting objects: 51% (814/1595)_bk;t=1781335820742 remote: Counting objects: 52% (830/1595)_bk;t=1781335820742 remote: Counting objects: 53% (846/1595)_bk;t=1781335820742 remote: Counting objects: 54% (862/1595)_bk;t=1781335820742 remote: Counting objects: 55% (878/1595)_bk;t=1781335820742 remote: Counting objects: 56% (894/1595)_bk;t=1781335820742 remote: Counting objects: 57% (910/1595)_bk;t=1781335820742 remote: Counting objects: 58% (926/1595)_bk;t=1781335820742 remote: Counting objects: 59% (942/1595)_bk;t=1781335820742 remote: Counting objects: 60% (957/1595)_bk;t=1781335820742 remote: Counting objects: 61% (973/1595)_bk;t=1781335820742 remote: Counting objects: 62% (989/1595)_bk;t=1781335820742 remote: Counting objects: 63% (1005/1595)_bk;t=1781335820743 remote: Counting objects: 64% (1021/1595)_bk;t=1781335820743 remote: Counting objects: 65% (1037/1595)_bk;t=1781335820743 remote: Counting objects: 66% (1053/1595)_bk;t=1781335820743 remote: Counting objects: 67% (1069/1595)_bk;t=1781335820743 remote: Counting objects: 68% (1085/1595)_bk;t=1781335820743 remote: Counting objects: 69% (1101/1595)_bk;t=1781335820743 remote: Counting objects: 70% (1117/1595)_bk;t=1781335820743 remote: Counting objects: 71% (1133/1595)_bk;t=1781335820743 remote: Counting objects: 72% (1149/1595)_bk;t=1781335820743 remote: Counting objects: 73% (1165/1595)_bk;t=1781335820743 remote: Counting objects: 74% (1181/1595)_bk;t=1781335820743 remote: Counting objects: 75% (1197/1595)_bk;t=1781335820743 remote: Counting objects: 76% (1213/1595)_bk;t=1781335820743 remote: Counting objects: 77% (1229/1595)_bk;t=1781335820743 remote: Counting objects: 78% (1245/1595)_bk;t=1781335820743 remote: Counting objects: 79% (1261/1595)_bk;t=1781335820743 remote: Counting objects: 80% (1276/1595)_bk;t=1781335820743 remote: Counting objects: 81% (1292/1595)_bk;t=1781335820743 remote: Counting objects: 82% (1308/1595)_bk;t=1781335820743 remote: Counting objects: 83% (1324/1595)_bk;t=1781335820743 remote: Counting objects: 84% (1340/1595)_bk;t=1781335820743 remote: Counting objects: 85% (1356/1595)_bk;t=1781335820743 remote: Counting objects: 86% (1372/1595)_bk;t=1781335820743 remote: Counting objects: 87% (1388/1595)_bk;t=1781335820743 remote: Counting objects: 88% (1404/1595)_bk;t=1781335820743 remote: Counting objects: 89% (1420/1595)_bk;t=1781335820743 remote: Counting objects: 90% (1436/1595)_bk;t=1781335820743 remote: Counting objects: 91% (1452/1595)_bk;t=1781335820743 remote: Counting objects: 92% (1468/1595)_bk;t=1781335820743 remote: Counting objects: 93% (1484/1595)_bk;t=1781335820743 remote: Counting objects: 94% (1500/1595)_bk;t=1781335820743 remote: Counting objects: 95% (1516/1595)_bk;t=1781335820743 remote: Counting objects: 96% (1532/1595)_bk;t=1781335820743 remote: Counting objects: 97% (1548/1595)_bk;t=1781335820743 remote: Counting objects: 98% (1564/1595)_bk;t=1781335820743 remote: Counting objects: 99% (1580/1595)_bk;t=1781335820743 remote: Counting objects: 100% (1595/1595)_bk;t=1781335820743 remote: Counting objects: 100% (1595/1595), done._bk;t=1781335820743 -_bk;t=1781335820743remote: Compressing objects: 0% (1/384)_bk;t=1781335820743 remote: Compressing objects: 1% (4/384)_bk;t=1781335820743 remote: Compressing objects: 2% (8/384)_bk;t=1781335820743 remote: Compressing objects: 3% (12/384)_bk;t=1781335820743 remote: Compressing objects: 4% (16/384)_bk;t=1781335820743 remote: Compressing objects: 5% (20/384)_bk;t=1781335820743 remote: Compressing objects: 6% (24/384)_bk;t=1781335820743 remote: Compressing objects: 7% (27/384)_bk;t=1781335820743 remote: Compressing objects: 8% (31/384)_bk;t=1781335820743 remote: Compressing objects: 9% (35/384)_bk;t=1781335820743 remote: Compressing objects: 10% (39/384)_bk;t=1781335820743 remote: Compressing objects: 11% (43/384)_bk;t=1781335820743 remote: Compressing objects: 12% (47/384)_bk;t=1781335820743 remote: Compressing objects: 13% (50/384)_bk;t=1781335820743 remote: Compressing objects: 14% (54/384)_bk;t=1781335820743 remote: Compressing objects: 15% (58/384)_bk;t=1781335820743 remote: Compressing objects: 16% (62/384)_bk;t=1781335820743 remote: Compressing objects: 17% (66/384)_bk;t=1781335820743 remote: Compressing objects: 18% (70/384)_bk;t=1781335820743 remote: Compressing objects: 19% (73/384)_bk;t=1781335820743 remote: Compressing objects: 20% (77/384)_bk;t=1781335820743 remote: Compressing objects: 21% (81/384)_bk;t=1781335820743 remote: Compressing objects: 22% (85/384)_bk;t=1781335820743 remote: Compressing objects: 23% (89/384)_bk;t=1781335820743 remote: Compressing objects: 24% (93/384)_bk;t=1781335820743 remote: Compressing objects: 25% (96/384)_bk;t=1781335820743 remote: Compressing objects: 26% (100/384)_bk;t=1781335820743 remote: Compressing objects: 27% (104/384)_bk;t=1781335820743 remote: Compressing objects: 28% (108/384)_bk;t=1781335820743 remote: Compressing objects: 29% (112/384)_bk;t=1781335820743 remote: Compressing objects: 30% (116/384)_bk;t=1781335820743 remote: Compressing objects: 31% (120/384)_bk;t=1781335820743 remote: Compressing objects: 32% (123/384)_bk;t=1781335820743 remote: Compressing objects: 33% (127/384)_bk;t=1781335820743 remote: Compressing objects: 34% (131/384)_bk;t=1781335820743 remote: Compressing objects: 35% (135/384)_bk;t=1781335820743 remote: Compressing objects: 36% (139/384)_bk;t=1781335820743 remote: Compressing objects: 37% (143/384)_bk;t=1781335820743 remote: Compressing objects: 38% (146/384)_bk;t=1781335820743 remote: Compressing objects: 39% (150/384)_bk;t=1781335820743 remote: Compressing objects: 40% (154/384)_bk;t=1781335820743 remote: Compressing objects: 41% (158/384)_bk;t=1781335820743 remote: Compressing objects: 42% (162/384)_bk;t=1781335820743 remote: Compressing objects: 43% (166/384)_bk;t=1781335820743 remote: Compressing objects: 44% (169/384)_bk;t=1781335820743 remote: Compressing objects: 45% (173/384)_bk;t=1781335820743 remote: Compressing objects: 46% (177/384)_bk;t=1781335820743 remote: Compressing objects: 47% (181/384)_bk;t=1781335820743 remote: Compressing objects: 48% (185/384)_bk;t=1781335820743 remote: Compressing objects: 49% (189/384)_bk;t=1781335820743 remote: Compressing objects: 50% (192/384)_bk;t=1781335820743 remote: Compressing objects: 51% (196/384)_bk;t=1781335820743 remote: Compressing objects: 52% (200/384)_bk;t=1781335820743 remote: Compressing objects: 53% (204/384)_bk;t=1781335820743 remote: Compressing objects: 54% (208/384)_bk;t=1781335820743 remote: Compressing objects: 55% (212/384)_bk;t=1781335820743 remote: Compressing objects: 56% (216/384)_bk;t=1781335820754 remote: Compressing objects: 57% (219/384)_bk;t=1781335820754 remote: Compressing objects: 58% (223/384)_bk;t=1781335820754 remote: Compressing objects: 59% (227/384)_bk;t=1781335820754 remote: Compressing objects: 60% (231/384)_bk;t=1781335820754 remote: Compressing objects: 61% (235/384)_bk;t=1781335820754 remote: Compressing objects: 62% (239/384)_bk;t=1781335820754 remote: Compressing objects: 63% (242/384)_bk;t=1781335820754 remote: Compressing objects: 64% (246/384)_bk;t=1781335820754 remote: Compressing objects: 65% (250/384)_bk;t=1781335820754 remote: Compressing objects: 66% (254/384)_bk;t=1781335820754 remote: Compressing objects: 67% (258/384)_bk;t=1781335820754 remote: Compressing objects: 68% (262/384)_bk;t=1781335820754 remote: Compressing objects: 69% (265/384)_bk;t=1781335820754 remote: Compressing objects: 70% (269/384)_bk;t=1781335820754 remote: Compressing objects: 71% (273/384)_bk;t=1781335820754 remote: Compressing objects: 72% (277/384)_bk;t=1781335820754 remote: Compressing objects: 73% (281/384)_bk;t=1781335820754 remote: Compressing objects: 74% (285/384)_bk;t=1781335820754 remote: Compressing objects: 75% (288/384)_bk;t=1781335820754 remote: Compressing objects: 76% (292/384)_bk;t=1781335820754 remote: Compressing objects: 77% (296/384)_bk;t=1781335820754 remote: Compressing objects: 78% (300/384)_bk;t=1781335820754 remote: Compressing objects: 79% (304/384)_bk;t=1781335820754 remote: Compressing objects: 80% (308/384)_bk;t=1781335820754 remote: Compressing objects: 81% (312/384)_bk;t=1781335820754 remote: Compressing objects: 82% (315/384)_bk;t=1781335820754 remote: Compressing objects: 83% (319/384)_bk;t=1781335820754 remote: Compressing objects: 84% (323/384)_bk;t=1781335820754 remote: Compressing objects: 85% (327/384)_bk;t=1781335820754 remote: Compressing objects: 86% (331/384)_bk;t=1781335820754 remote: Compressing objects: 87% (335/384)_bk;t=1781335820754 remote: Compressing objects: 88% (338/384)_bk;t=1781335820754 remote: Compressing objects: 89% (342/384)_bk;t=1781335820754 remote: Compressing objects: 90% (346/384)_bk;t=1781335820754 remote: Compressing objects: 91% (350/384)_bk;t=1781335820754 remote: Compressing objects: 92% (354/384)_bk;t=1781335820754 remote: Compressing objects: 93% (358/384)_bk;t=1781335820754 remote: Compressing objects: 94% (361/384)_bk;t=1781335820754 remote: Compressing objects: 95% (365/384)_bk;t=1781335820754 remote: Compressing objects: 96% (369/384)_bk;t=1781335820754 remote: Compressing objects: 97% (373/384)_bk;t=1781335820754 remote: Compressing objects: 98% (377/384)_bk;t=1781335820754 remote: Compressing objects: 99% (381/384)_bk;t=1781335820754 remote: Compressing objects: 100% (384/384)_bk;t=1781335820754 remote: Compressing objects: 100% (384/384), done._bk;t=1781335820754 -_bk;t=1781335820767Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1421), reused 1216 (delta 1211), pack-reused 932 (from 3)_bk;t=1781335820884 -_bk;t=1781335820885Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.59 MiB | 13.38 MiB/s, done. -_bk;t=1781335820887Resolving deltas: 0% (0/1591) Resolving deltas: 1% (16/1591) Resolving deltas: 2% (32/1591) Resolving deltas: 3% (48/1591) Resolving deltas: 4% (64/1591) Resolving deltas: 5% (80/1591) Resolving deltas: 6% (96/1591) Resolving deltas: 7% (112/1591) Resolving deltas: 8% (128/1591) Resolving deltas: 9% (144/1591) Resolving deltas: 10% (160/1591) Resolving deltas: 11% (176/1591) Resolving deltas: 12% (191/1591) Resolving deltas: 13% (207/1591) Resolving deltas: 14% (223/1591) Resolving deltas: 15% (239/1591) Resolving deltas: 16% (255/1591) Resolving deltas: 17% (271/1591) Resolving deltas: 18% (287/1591) Resolving deltas: 19% (303/1591) Resolving deltas: 20% (319/1591) Resolving deltas: 21% (335/1591) Resolving deltas: 22% (351/1591) Resolving deltas: 23% (366/1591) Resolving deltas: 24% (382/1591) Resolving deltas: 25% (398/1591) Resolving deltas: 26% (414/1591) Resolving deltas: 27% (430/1591) Resolving deltas: 28% (446/1591) Resolving deltas: 29% (462/1591) Resolving deltas: 30% (478/1591) Resolving deltas: 31% (494/1591) Resolving deltas: 32% (510/1591) Resolving deltas: 33% (526/1591) Resolving deltas: 34% (541/1591) Resolving deltas: 35% (557/1591) Resolving deltas: 36% (573/1591) Resolving deltas: 37% (589/1591) Resolving deltas: 38% (605/1591) Resolving deltas: 39% (621/1591) Resolving deltas: 40% (637/1591) Resolving deltas: 41% (653/1591) Resolving deltas: 42% (669/1591) Resolving deltas: 43% (685/1591) Resolving deltas: 44% (701/1591) Resolving deltas: 45% (716/1591) Resolving deltas: 46% (732/1591) Resolving deltas: 47% (748/1591) Resolving deltas: 48% (764/1591) Resolving deltas: 49% (780/1591) Resolving deltas: 50% (796/1591) Resolving deltas: 51% (812/1591) Resolving deltas: 52% (828/1591) Resolving deltas: 53% (844/1591) Resolving deltas: 54% (860/1591) Resolving deltas: 55% (876/1591) Resolving deltas: 56% (891/1591) Resolving deltas: 57% (907/1591) Resolving deltas: 58% (923/1591) Resolving deltas: 59% (939/1591) Resolving deltas: 60% (955/1591) Resolving deltas: 61% (971/1591) Resolving deltas: 62% (987/1591) Resolving deltas: 63% (1003/1591) Resolving deltas: 64% (1019/1591) Resolving deltas: 65% (1035/1591) Resolving deltas: 66% (1051/1591) Resolving deltas: 67% (1066/1591) Resolving deltas: 68% (1082/1591) Resolving deltas: 69% (1098/1591) Resolving deltas: 70% (1114/1591) Resolving deltas: 71% (1130/1591) Resolving deltas: 72% (1146/1591) Resolving deltas: 73% (1162/1591) Resolving deltas: 74% (1178/1591) Resolving deltas: 75% (1194/1591) Resolving deltas: 76% (1210/1591) Resolving deltas: 77% (1226/1591) Resolving deltas: 78% (1241/1591) Resolving deltas: 79% (1257/1591) Resolving deltas: 80% (1273/1591) Resolving deltas: 81% (1289/1591) Resolving deltas: 82% (1305/1591) Resolving deltas: 83% (1321/1591) Resolving deltas: 84% (1337/1591) Resolving deltas: 85% (1353/1591) Resolving deltas: 86% (1369/1591) Resolving deltas: 87% (1385/1591) Resolving deltas: 88% (1401/1591) Resolving deltas: 89% (1416/1591) Resolving deltas: 90% (1432/1591) Resolving deltas: 91% (1448/1591) Resolving deltas: 92% (1464/1591) Resolving deltas: 93% (1480/1591) Resolving deltas: 94% (1496/1591) Resolving deltas: 95% (1512/1591) Resolving deltas: 96% (1528/1591) Resolving deltas: 97% (1544/1591) Resolving deltas: 98% (1560/1591) Resolving deltas: 99% (1576/1591) Resolving deltas: 100% (1591/1591) Resolving deltas: 100% (1591/1591), completed with 272 local objects. -_bk;t=1781335821163$ git clean -ffxdq -_bk;t=1781335821169# Fetch and checkout pull request head from GitHub -_bk;t=1781335821169$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335821301POST git-upload-pack (395 bytes) -_bk;t=1781335821351From https://github.com/bazel-contrib/rules_python -_bk;t=1781335821351 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335821351 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD -_bk;t=1781335821356# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` -_bk;t=1781335821356$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335821418Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. -_bk;t=1781335821418 -_bk;t=1781335821418You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335821418changes and commit them, and you can discard any commits you make in this -_bk;t=1781335821418state without impacting any branches by switching back to a branch. -_bk;t=1781335821418 -_bk;t=1781335821418If you want to create a new branch to retain commits you create, you may -_bk;t=1781335821418do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335821418 -_bk;t=1781335821418 git switch -c -_bk;t=1781335821418 -_bk;t=1781335821418Or undo this operation with: -_bk;t=1781335821418 -_bk;t=1781335821418 git switch - -_bk;t=1781335821418 -_bk;t=1781335821418Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335821418 -_bk;t=1781335821418HEAD is now at d6eeb759 feat(skills): Include Buildkite Build ID in monitor_remote_ci summary -_bk;t=1781335821419# Cleaning again to catch any post-checkout changes -_bk;t=1781335821419$ git clean -ffxdq -_bk;t=1781335821425# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335821425# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335821425~~~ Running agent post-checkout hook -_bk;t=1781335821426$ /etc/buildkite-agent/hooks/post-checkout -_bk;t=1781335821456CHECKOUT_END_TIME: 1781335821441 -_bk;t=1781335821456CHECKOUT_DURATION_S: 1.516 -_bk;t=1781335821469Added: -_bk;t=1781335821469+ CHECKOUT_END_TIME -_bk;t=1781335821482Added: -_bk;t=1781335821482+ CHECKOUT_DURATION_S -_bk;t=1781335821496~~~ Running agent pre-command hook -_bk;t=1781335821496$ /etc/buildkite-agent/hooks/pre-command -_bk;t=1781335821526PREP_DURATION_S: 0.071 -_bk;t=1781335821538Added: -_bk;t=1781335821538+ PREP_DURATION_S -_bk;t=1781335821554~~~ Running plugin docker-buildkite-plugin command hook -_bk;t=1781335821554$ /etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command -_bk;t=1781335821606--- :docker: Pulling gcr.io/bazel-public/ubuntu2204 -_bk;t=1781335821618Using default tag: latest -_bk;t=1781335823073latest: Pulling from bazel-public/ubuntu2204 -_bk;t=1781335823129Digest: sha256:3024b6fbc873688940dfe144c5f1a6cfe0c450bd287748c6f170db01e2459981 -_bk;t=1781335823129Status: Image is up to date for gcr.io/bazel-public/ubuntu2204:latest -_bk;t=1781335823130gcr.io/bazel-public/ubuntu2204:latest -_bk;t=1781335823145docker network host already exists -_bk;t=1781335823146--- :docker: Running command in gcr.io/bazel-public/ubuntu2204 -_bk;t=1781335823146$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-h6l7/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_RETRY_COUNT --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_PIPELINE_ID --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_STEP_KEY --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_JOB_ID --env BUILDKITE_COMPUTE_TYPE --env BUILDKITE_PIPELINE_NAME --env BUILDKITE_STEP_ID --env BUILDKITE_MESSAGE --env BUILDKITE_REBUILT_FROM_BUILD_ID --env BUILDKITE_AGENT_NAME --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_ORGANIZATION_SLUG --env BUILDKITE_BRANCH --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_BUILD_ID --env BUILDKITE_COMMIT --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE --env BUILDKITE_LABEL --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_PULL_REQUEST --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_URL --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_SOURCE --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_COMMAND --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_TIMEOUT --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_AGENT_ID --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_REPO --env BUILDKITE_PLUGINS --env CI --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_TAG --network host --label com.buildkite.job-id=019ebfe3-639c-45e9-a409-b70bc82f1980 gcr.io/bazel-public/ubuntu2204 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py\npython3 bazelci.py runner --task=ubuntu_rolling' -_bk;t=1781335824142 -_bk;t=1781335824142 -_bk;t=1781335824142--- :bazel: Using Bazel version rolling -_bk;t=1781335824142 -_bk;t=1781335824142 -_bk;t=1781335824142bazel --version -_bk;t=17813358244112026/06/13 07:30:24 Downloading https://releases.bazel.build/10.0.0/rolling/10.0.0-pre.20260601.1/bazel-10.0.0-pre.20260601.1-linux-x86_64... -_bk;t=1781335824421 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 4 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 9 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 14 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 19 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 21 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 22 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 24 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 26 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 27 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 29 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 31 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 32 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 34 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 36 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 37 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 39 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 41 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 42 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 44 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 45 MB out of 62 MB (74%) Downloading: 46 MB out of 62 MB (74%) Downloading: 46 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 47 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (77%) Downloading: 48 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 49 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 50 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (82%) Downloading: 51 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 52 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (85%) Downloading: 53 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 54 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 55 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (90%) Downloading: 56 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 57 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (93%) Downloading: 58 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 59 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 60 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (98%) Downloading: 61 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) -_bk;t=1781335824894bazel 10.0.0-pre.20260601.1 -_bk;t=1781335824897bazel info output_base -_bk;t=1781335825072Extracting Bazel installation... -_bk;t=1781335826412Starting local Bazel server (10.0.0-pre.20260601.1) and connecting to it... -_bk;t=1781335827807WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335827810WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335827810WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335827810WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335827810WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335827810WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335827810INFO: Invocation ID: 11e14538-62a6-4e41-936c-078e4a61f122 -_bk;t=1781335827864 -_bk;t=1781335827864 -_bk;t=1781335827864--- :information_source: Bazel Info -_bk;t=1781335827864 -_bk;t=1781335827864 -_bk;t=1781335827864bazel --nosystem_rc --nohome_rc version -_bk;t=1781335828071WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335828071WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335828071WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335828071WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335828071INFO: Invocation ID: bff28257-2ed2-4206-a38f-bd3180b3be40 -_bk;t=1781335828077Bazelisk version: v1.28.1 -_bk;t=1781335828077Build label: 10.0.0-pre.20260601.1 -_bk;t=1781335828077Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer -_bk;t=1781335828077Build time: Thu Jun 11 17:11:25 2026 (1781197885) -_bk;t=1781335828077Build timestamp: 1781197885 -_bk;t=1781335828077Build timestamp as int: 1781197885 -_bk;t=1781335828077 -_bk;t=1781335828077bazel --nosystem_rc --nohome_rc info -_bk;t=1781335828283WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335828283WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335828283WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335828283WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335828283WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335828284WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335828284INFO: Invocation ID: 72ba5ce3-a292-4866-aab1-d70f65671844 -_bk;t=1781335828410WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335829477WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335829477WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335829477WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335829477WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335830077bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335830077bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335830078bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335830078character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 -_bk;t=1781335830078command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log -_bk;t=1781335830078committed-heap-size: 134MB -_bk;t=1781335830079execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main -_bk;t=1781335830080gc-count: 15 -_bk;t=1781335830080gc-time: 50ms -_bk;t=1781335830081install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d -_bk;t=1781335830082java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/580568f13038cd910ee41d5c9f5aba0d/embedded_tools/jdk -_bk;t=1781335830082java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335830082java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335830083local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335830083max-heap-size: 31658MB -_bk;t=1781335830084output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 -_bk;t=1781335830084output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out -_bk;t=1781335830085package_path: %workspace% -_bk;t=1781335830085release: release 10.0.0-pre.20260601.1 -_bk;t=1781335830086repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335830087server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-h6l7.buildkite-agent.log.java.20260613-073026.46 -_bk;t=1781335830087server_pid: 46 -_bk;t=1781335830088used-heap-size: 59MB -_bk;t=1781335830089workspace: /workdir -_bk;t=1781335830107 -_bk;t=1781335830109 -_bk;t=1781335830109--- :information_source: Environment Variables -_bk;t=1781335830109 -_bk;t=1781335830109 -_bk;t=1781335830109BUILDKITE_PULL_REQUEST_LABELS=() -_bk;t=1781335830109BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) -_bk;t=1781335830109LANGUAGE=(C.UTF-8) -_bk;t=1781335830109BUILDKITE_BUILD_CREATOR=(Richard Levasseur) -_bk;t=1781335830109CI=(true) -_bk;t=1781335830109BUILDKITE_TRIGGERED_FROM_BUILD_ID=() -_bk;t=1781335830109BUILDKITE_ARTIFACT_PATHS=() -_bk;t=1781335830109HOSTNAME=(bk-docker-h6l7) -_bk;t=1781335830109BUILDKITE_GITHUB_ACTION=(synchronize) -_bk;t=1781335830109BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) -_bk;t=1781335830109BUILDKITE_AGENT_ID=(019ebfdd-75b2-413d-96a6-e79f53f78090) -_bk;t=1781335830109BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) -_bk;t=1781335830109BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) -_bk;t=1781335830109BUILDKITE_AGENT_META_DATA_QUEUE=(default) -_bk;t=1781335830109HOME=(/var/lib/buildkite-agent) -_bk;t=1781335830109BUILDKITE_STEP_KEY=() -_bk;t=1781335830109BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335830109BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() -_bk;t=1781335830109BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) -_bk;t=1781335830109BUILDKITE=(true) -_bk;t=1781335830109BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) -_bk;t=1781335830109BUILDKITE_COMPUTE_TYPE=(self-hosted) -_bk;t=1781335830109BUILDKITE_BUILD_NUMBER=(15722) -_bk;t=1781335830109BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() -_bk;t=1781335830109BUILDKITE_PIPELINE_PROVIDER=(github) -_bk;t=1781335830109BUILDKITE_TAG=() -_bk;t=1781335830109BUILDKITE_AGENT_META_DATA_OS=(linux) -_bk;t=1781335830109BUILDKITE_JOB_ID=(019ebfe3-639c-45e9-a409-b70bc82f1980) -_bk;t=1781335830109BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) -_bk;t=1781335830109BUILDKITE_PULL_REQUEST=(3812) -_bk;t=1781335830109TERM=(xterm) -_bk;t=1781335830109BUILDKITE_COMMIT_RESOLVED=(true) -_bk;t=1781335830109BUILDKITE_PIPELINE_SLUG=(rules-python-python) -_bk;t=1781335830109BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) -_bk;t=1781335830109PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) -_bk;t=1781335830109PREP_DURATION_S=(0.071) -_bk;t=1781335830109CHECKOUT_DURATION_S=(1.516) -_bk;t=1781335830109BUILDKITE_GITHUB_EVENT=(pull_request) -_bk;t=1781335830109BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) -_bk;t=1781335830109BUILDKITE_SOURCE=(webhook) -_bk;t=1781335830109BUILDKITE_RETRY_COUNT=(0) -_bk;t=1781335830109BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) -_bk;t=1781335830109LANG=(C.UTF-8) -_bk;t=1781335830109BUILDKITE_REBUILT_FROM_BUILD_ID=() -_bk;t=1781335830110BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/ubuntu2204","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) -_bk;t=1781335830110BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980) -_bk;t=1781335830110DEBIAN_FRONTEND=(noninteractive) -_bk;t=1781335830110BUILDKITE_LABEL=(Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS) -_bk;t=1781335830110BUILDKITE_PROJECT_PROVIDER=(github) -_bk;t=1781335830110BUILDKITE_ORGANIZATION_SLUG=(bazel) -_bk;t=1781335830110BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) -_bk;t=1781335830110BUILDKITE_AGENT_META_DATA_KIND=(docker) -_bk;t=1781335830110BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() -_bk;t=1781335830110BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335830110BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335830110python3 bazelci.py runner --task=ubuntu_rolling) -_bk;t=1781335830110BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) -_bk;t=1781335830110BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) -_bk;t=1781335830110BUILDKITE_TIMEOUT=(480) -_bk;t=1781335830110BUILDKITE_STEP_ID=(019ebfe3-6278-4f05-8b7f-898f079a660d) -_bk;t=1781335830110BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335830110python3 bazelci.py runner --task=ubuntu_rolling) -_bk;t=1781335830110BUILDKITE_PIPELINE_NAME=(rules_python :python:) -_bk;t=1781335830110LC_ALL=(C.UTF-8) -_bk;t=1781335830110JAVA_HOME=(/usr/lib/jvm/java-21-openjdk-amd64) -_bk;t=1781335830110PWD=(/workdir) -_bk;t=1781335830110ANDROID_HOME=(/opt/android-sdk-linux) -_bk;t=1781335830110BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) -_bk;t=1781335830110BUILDKITE_AGENT_NAME=(bk-docker-h6l7) -_bk;t=1781335830110BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) -_bk;t=1781335830110BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) -_bk;t=1781335830110ANDROID_NDK_HOME=(/opt/android-ndk-r15c) -_bk;t=1781335830110BAZELCI_TASK=(ubuntu_rolling) -_bk;t=1781335830110BAZELISK_USER_AGENT=(Bazelisk/BazelCI) -_bk;t=1781335830110USE_BAZEL_VERSION=(rolling) -_bk;t=1781335830110OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) -_bk;t=1781335830110 -_bk;t=1781335830110 -_bk;t=1781335830110--- :dart: Calculating targets -_bk;t=1781335830110 -_bk;t=1781335830110 -_bk;t=1781335830111curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmp1cesl66b/bazelci-agent -_bk;t=1781335830111 -_bk;t=1781335830111 -_bk;t=1781335830111--- :bazel: Computing flags for test step -_bk;t=1781335830111 -_bk;t=1781335830112 -_bk;t=1781335830112Adding to platform cache key: b'bazel' -_bk;t=1781335830112Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335830112Adding to platform cache key: b'ubuntu2204' -_bk;t=1781335830112 -_bk;t=1781335830112 -_bk;t=1781335830112+++ :bazel: Test (10.0.0-pre.20260601.1) -_bk;t=1781335830112 -_bk;t=1781335830112 -_bk;t=1781335830112bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp1cesl66b/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --keep_going --test_tag_filters=-integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=USE_BAZEL_VERSION --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- //tests/... -_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335830443(07:30:30) WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335830443(07:30:30) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335830443(07:30:30) WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335830443(07:30:30) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335830443(07:30:30) INFO: Invocation ID: 67eae3b6-d4bb-47df-8e18-c383944c297b -_bk;t=1781335830443(07:30:30) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/67eae3b6-d4bb-47df-8e18-c383944c297b -_bk;t=1781335830444(07:30:30) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks -_bk;t=1781335830444(07:30:30) INFO: Options provided by the client: -_bk;t=1781335830444 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: -_bk;t=1781335830444 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335830444 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335830444 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335830444(07:30:30) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335830444 'test' options: --test_output=errors -_bk;t=1781335830444(07:30:30) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335830478(07:30:30) INFO: Current date is 2026-06-13 -_bk;t=1781335830478(07:30:30) -_bk;t=1781335830479 _bk;t=1781335830479(07:30:30) Computing main repo mapping: -_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335830542(07:30:30) Computing main repo mapping: -_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335830542(07:30:30) Computing main repo mapping: -_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335830542(07:30:30) Computing main repo mapping: -_bk;t=1781335830542 _bk;t=1781335830542(07:30:30) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335830542(07:30:30) Computing main repo mapping: -_bk;t=1781335830680/tmp/tmp1cesl66b/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp1cesl66b/test_bep.json -_bk;t=1781335831113 _bk;t=1781335831113(07:30:31) Loading: -_bk;t=1781335831129 _bk;t=1781335831129(07:30:31) Loading: 1 packages loaded -_bk;t=1781335833710 _bk;t=1781335833710(07:30:33) Analyzing: 590 targets (132 packages loaded, 0 targets configured) -_bk;t=1781335833725 _bk;t=1781335833725(07:30:33) Analyzing: 590 targets (132 packages loaded, 0 targets configured) -_bk;t=1781335833725 currently loading: @@platforms// -_bk;t=1781335833725 -_bk;t=1781335840496 _bk;t=1781335840496 _bk;t=1781335840496 _bk;t=1781335840496(07:30:40) Analyzing: 590 targets (214 packages loaded, 427,393 targets configured) -_bk;t=1781335840499 -_bk;t=1781335845491 _bk;t=1781335845491 _bk;t=1781335845491(07:30:45) Analyzing: 590 targets (249 packages loaded, 495,166 targets configured, 2 aspect applications) -_bk;t=1781335845491 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_10_4_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_13_4_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_14_0_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_13_0_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_12_1_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335845491 Fetching repository @@+python+python_3_12_4_x86_64-unknown-linux-gnu; starting 4s ... (45 fetches) -_bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499 _bk;t=1781335850499(07:30:50) Analyzing: 590 targets (393 packages loaded, 567,617 targets configured, 2 aspect applications) -_bk;t=1781335850499 currently loading: @@+pip+rules_python_publish_deps_311_markdown_it_py_py3_none_any_87327c59// ... (3 packages) -_bk;t=1781335850499 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335850499 Fetching repository @@+python+python_3_14_1_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335850499 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335850499 Fetching repository @@+python+python_3_12_0_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335850499 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335850499 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335850499 Fetching repository @@+python+python_3_10_15_x86_64-unknown-linux-gnu; starting 4s -_bk;t=1781335850499 Fetching repository @@+python+python_3_11_5_x86_64-unknown-linux-gnu; starting 4s ... (37 fetches) -_bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156 _bk;t=1781335852156(07:30:52) DEBUG: /workdir/python/private/repo_utils.bzl:101:16: -_bk;t=1781335852156rules_python:unit-test WARNING: Could not find a whl or an sdist with sha256=deadbeef -_bk;t=1781335852156(07:30:52) Analyzing: 590 targets (447 packages loaded, 625,171 targets configured, 29 aspect applications) -_bk;t=1781335852157[189 / 205] 7 actions, 1 running -_bk;t=1781335852157 Creating source manifest for //tests/repo_utils:test_is_relative_to; 0s local -_bk;t=1781335852157 Testing //tests/python:test_default_from_defaults_file; 0s remote-cache -_bk;t=1781335852157 Testing //tests/pypi/python_tag:test_without_version; 0s remote-cache -_bk;t=1781335852157 Testing //tests/pypi/pep508:test_env_freebsd; 0s remote-cache -_bk;t=1781335852157 Testing //tests/py_runtime:test_must_have_either_inbuild_or_system_interpreter; 0s remote-cache -_bk;t=1781335852157 Testing //tests/py_runtime:test_interpreter_version_info_parses_values_to_struct; 0s remote-cache -_bk;t=1781335852157 [Prepa] action 'SolibSymlink _solib_k8/_U_A_A+python+python_U3_U11_U15_Ux86_U64-unknown-linux-gnu_S_S_Clibpython___Ulib/libpython3.11.so' -_bk;t=1781335852157 Fetching repository @@+python+python_3_10_2_x86_64-unknown-linux-gnu; starting 8s -_bk;t=1781335852157 Fetching repository @@+python+python_3_12_3_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335852157 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 6s -_bk;t=1781335852157 Fetching repository @@+python+python_3_10_15_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335852157 Fetching repository @@+python+python_3_11_5_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335852157 Fetching repository @@+python+python_3_10_6_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335852157 Fetching repository @@+python+python_3_12_8_x86_64-unknown-linux-gnu; starting 5s -_bk;t=1781335852157 Fetching repository @@+python+python_3_10_16_x86_64-unknown-linux-gnu; starting 5s ... (33 fetches) -_bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174 _bk;t=1781335857174(07:30:57) Analyzing: 590 targets (471 packages loaded, 834,716 targets configured, 102 aspect applications) -_bk;t=1781335857174[1,753 / 2,062] 91 / 482 tests; 24 actions, 21 running; last test: //tests/builders:test_bool -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-2b3caf6f0eeb/bin/tests/multi_pypi/pypi_alpha/pypi_alpha_test.runfiles; 3s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-41e89208ab32/bin/tests/build_data/build_data_test.runfiles; 2s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-46fb16502154/bin/tests/toolchains/python_3.12.7_test.runfiles; 2s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_inputs.test.runfiles; 2s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-94a285a69336/bin/tests/toolchains/python_3.13.6_test.runfiles; 2s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 1s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-d321e9b24e85/bin/tests/toolchains/python_3.10.13_test.runfiles; 1s local -_bk;t=1781335857174 Creating runfiles tree bazel-out/k8-fastbuild-ST-0b8c764f65d0/bin/tests/toolchains/python_3.13.0_test.runfiles; 1s local ... -_bk;t=1781335857174 Fetching repository @@+python+python_3_12_12_x86_64-unknown-linux-gnu; starting 11s -_bk;t=1781335857174 Fetching repository @@+python+python_3_12_8_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335857174 Fetching repository @@+python+python_3_10_16_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335857174 Fetching repository @@+python+python_3_12_2_x86_64-unknown-linux-gnu; starting 10s -_bk;t=1781335857174 Fetching repository @@+python+python_3_12_9_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335857174 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335857174 Fetching repository @@+python+python_3_10_18_x86_64-unknown-linux-gnu; starting 9s -_bk;t=1781335857174 Fetching repository @@+python+python_3_10_11_x86_64-unknown-linux-gnu; starting 8s ... (33 fetches) -_bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168 _bk;t=1781335862168(07:31:02) Analyzing: 590 targets (522 packages loaded, 1,058,716 targets configured, 131 aspect applications) -_bk;t=1781335862168[2,439 / 2,766] 161 / 509 tests; 28 actions, 21 running; last test: //tests/python:test_first_occurance_of_the_toolchain_wins -_bk;t=1781335862168 Creating runfiles tree bazel-out/k8-fastbuild-ST-f332e4688dd2/bin/tests/interpreter/python_src_test_3.10.runfiles; 6s local -_bk;t=1781335862168 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_pyproject_toml.test.runfiles; 5s local -_bk;t=1781335862168 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/py_zipapp/venv_zipapp_compressed_test.runfiles; 4s local -_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 3s local -_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-opt-exec/bin/external/rules_pkg+/pkg/private/tar/build_tar.runfiles [for tool]; 3s local -_bk;t=1781335862169 //tests/venv_site_packages_libs:venvs_site_packages_libs_test; 2s local -_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-fastbuild-ST-0e926c7efe9d/bin/tests/repl/repl_without_dep_test.runfiles; 2s local -_bk;t=1781335862169 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/py_zipapp/system_python_zipapp_test.runfiles; 2s local ... -_bk;t=1781335862169 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335862169 Fetching repository @@+python+python_3_10_18_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335862169 Fetching repository @@+python+python_3_9_25_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335862169 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 13s -_bk;t=1781335862169 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 12s -_bk;t=1781335862169 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 12s -_bk;t=1781335862169 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 12s -_bk;t=1781335862169 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 11s ... (49 fetches) -_bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308(07:31:04) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335864308====================================================================== -_bk;t=1781335864308WARNING: Target: @@//tests/bootstrap_impls:_run_binary_bootstrap_script_zip_yes_test_bin -_bk;t=1781335864308 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335864308 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335864308 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335864308 instructions and guide, see: -_bk;t=1781335864308 -_bk;t=1781335864308 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335864308====================================================================== -_bk;t=1781335864308(07:31:04) Analyzing: 590 targets (527 packages loaded, 1,061,221 targets configured, 131 aspect applications) -_bk;t=1781335864308[2,653 / 2,968] 187 / 509 tests; 30 actions, 24 running; last test: //tests/pypi/hub_builder:test_index_url_precedence -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 5s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 4s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 4s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-55bf77600316/bin/tests/toolchains/python_3.12.1_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-b260b98f1953/bin/tests/toolchains/python_3.11.9_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-2c23f58d0980/bin/tests/toolchains/python_3.11.8_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local ... -_bk;t=1781335864308 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335864308 Fetching repository @@+python+python_3_9_25_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335864308 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335864308 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_11_13_x86_64-unknown-linux-gnu; starting 13s ... (48 fetches) -_bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308 _bk;t=1781335864308(07:31:04) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335864308====================================================================== -_bk;t=1781335864308WARNING: Target: @@//tests/bootstrap_impls:_run_binary_zip_yes_test_bin -_bk;t=1781335864308 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335864308 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335864308 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335864308 instructions and guide, see: -_bk;t=1781335864308 -_bk;t=1781335864308 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335864308====================================================================== -_bk;t=1781335864308(07:31:04) Analyzing: 590 targets (527 packages loaded, 1,061,227 targets configured, 131 aspect applications) -_bk;t=1781335864308[2,653 / 2,968] 187 / 509 tests; 30 actions, 24 running; last test: //tests/pypi/hub_builder:test_index_url_precedence -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 5s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_venvs_use_declare_symlink_no_test.runfiles; 4s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-17deb15efc79/bin/tests/multi_pypi/pypi_beta/pypi_beta_test.runfiles; 4s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-55bf77600316/bin/tests/toolchains/python_3.12.1_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-0778798e085e/bin/tests/toolchains/python_3.10.2_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-b260b98f1953/bin/tests/toolchains/python_3.11.9_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild-ST-2c23f58d0980/bin/tests/toolchains/python_3.11.8_test.runfiles; 3s local -_bk;t=1781335864308 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 3s local ... -_bk;t=1781335864308 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335864308 Fetching repository @@+python+python_3_9_25_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335864308 Fetching repository @@+python+python_3_10_19_x86_64-unknown-linux-gnu; starting 15s -_bk;t=1781335864308 Fetching repository @@+python+python_3_11_10_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 14s -_bk;t=1781335864308 Fetching repository @@+python+python_3_11_13_x86_64-unknown-linux-gnu; starting 13s ... (48 fetches) -_bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450 _bk;t=1781335867450(07:31:07) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335867450====================================================================== -_bk;t=1781335867450WARNING: Target: @@//tests/base_rules/py_binary:test_basic_zip_subject -_bk;t=1781335867450 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335867450 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335867450 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335867450 instructions and guide, see: -_bk;t=1781335867450 -_bk;t=1781335867450 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335867450====================================================================== -_bk;t=1781335867450(07:31:07) Analyzing: 590 targets (554 packages loaded, 1,084,781 targets configured, 132 aspect applications) -_bk;t=1781335867450[2,796 / 3,093] 232 / 518 tests; 25 actions, 22 running; last test: //tests/python:test_add_new_version -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild-ST-a809f42f8763/bin/tests/interpreter/python_src_test_3.12.runfiles; 9s local -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_installer/arguments_test.runfiles; 6s local -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/multiple_inputs/multiple_requirements_in.test.runfiles; 6s local -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_bootstrap_script_find_runfiles_test.runfiles; 5s local -_bk;t=1781335867450 //tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test; 5s local -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/transition_py_test.runfiles; 5s local -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/system_python_nodeps_test.runfiles; 4s local -_bk;t=1781335867450 Creating runfiles tree bazel-out/k8-fastbuild-ST-2e9a8fe06305/bin/tests/toolchains/python_3.14.1_test.runfiles; 4s local ... -_bk;t=1781335867450 Fetching repository @@+python+python_3_13_11_x86_64-unknown-linux-gnu; starting 19s -_bk;t=1781335867450 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335867450 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335867450 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335867450 Fetching repository @@+python+python_3_11_13_x86_64-unknown-linux-gnu; starting 17s -_bk;t=1781335867450 Fetching repository @@+python+python_3_11_x86_64-unknown-linux-gnu; starting 16s -_bk;t=1781335867450 Fetching ...python_3_13_13_x86_64-unknown-linux-gnu; Extracting cpython-3.13.13_20260414-x86_64-unknown-linux-gnu-install_only.tar.gz 16s -_bk;t=1781335867450 Fetching ...86_64-unknown-linux-gnu; Extracting cpython-3.14.2_20251209-x86_64-unknown-linux-gnu-install_only.tar.gz 16s ... (47 fetches) -_bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876 _bk;t=1781335871876(07:31:11) DEBUG: /workdir/python/private/py_executable.bzl:385:18: -_bk;t=1781335871876====================================================================== -_bk;t=1781335871876WARNING: Target: @@//tests/base_rules/py_test:test_basic_zip_subject -_bk;t=1781335871876 The `--build_python_zip` flag and implicit zipapp output of `py_binary` -_bk;t=1781335871876 and `py_test` is deprecated and will be removed in a future release. -_bk;t=1781335871876 Switch to `py_zipapp_binary` or `py_zipapp_test`. For migration -_bk;t=1781335871876 instructions and guide, see: -_bk;t=1781335871876 -_bk;t=1781335871876 https://github.com/bazel-contrib/rules_python/issues/3567 -_bk;t=1781335871876====================================================================== -_bk;t=1781335871876(07:31:11) Analyzing: 590 targets (599 packages loaded, 1,135,361 targets configured, 141 aspect applications) -_bk;t=1781335871876[3,289 / 3,618] 282 / 539 tests; 27 actions, 26 running; last test: //tests/base_rules/py_test:test_default_main_cannot_be_ambiguous -_bk;t=1781335871876 //tests/deprecated:versioned_compile_pip_requirements.test; 7s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 5s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/py_zipapp/venv_zipapp_test.runfiles; 4s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild-ST-02349822b801/bin/tests/runfiles/runfiles_min_python_test.runfiles; 4s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild-ST-52b8a7f593db/bin/tests/toolchains/python_3.12.12_test.runfiles; 4s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_py_test.runfiles; 3s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild-ST-2a28657a2db7/bin/tests/interpreter/python_src_test_3.11.runfiles; 3s local -_bk;t=1781335871876 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/inherit_pythonsafepath_env_test.runfiles; 3s local ... -_bk;t=1781335871876 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 22s -_bk;t=1781335871876 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 22s -_bk;t=1781335871876 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 21s -_bk;t=1781335871876 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 17s -_bk;t=1781335871876 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 16s -_bk;t=1781335871876 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 15s -_bk;t=1781335871876 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 13s -_bk;t=1781335871876 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 12s ... (49 fetches) -_bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305 _bk;t=1781335873305(07:31:13) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335873305value of: string -_bk;t=1781335873305expected: /mac/python3.12 -_bk;t=1781335873305actual: /linux/python3.12 -_bk;t=1781335873305 -_bk;t=1781335873305(07:31:13) Analyzing: 590 targets (606 packages loaded, 1,155,789 targets configured, 150 aspect applications) -_bk;t=1781335873305[3,386 / 3,717] 293 / 551 tests; 29 actions, 27 running; last test: //tests/uv/uv:test_manual_url_spec -_bk;t=1781335873305 //tests/deprecated:versioned_compile_pip_requirements.test; 8s local -_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_compile_pip_requirements.test.runfiles; 6s local -_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/deprecated/hub_py_test.runfiles; 5s local -_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-2a28657a2db7/bin/tests/interpreter/python_src_test_3.11.runfiles; 5s local -_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-ddbceeda54c4/bin/tests/toolchains/python_3.12.9_test.runfiles; 4s local -_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-ce751f7648bf/bin/tests/toolchains/python_3.9.25_test.runfiles; 4s local -_bk;t=1781335873305 //tests/venv_site_packages_libs:whl_scripts_runnable_test; 4s local -_bk;t=1781335873305 Creating runfiles tree bazel-out/k8-fastbuild-ST-fe3e0ddff15f/bin/tests/toolchains/python_3.15.0a2_test.runfiles; 4s local ... -_bk;t=1781335873305 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 23s -_bk;t=1781335873305 Fetching repository @@+python+python_3_13_13_x86_64-unknown-linux-gnu; starting 23s -_bk;t=1781335873305 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 23s -_bk;t=1781335873305 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 19s -_bk;t=1781335873305 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 17s -_bk;t=1781335873305 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 16s -_bk;t=1781335873306 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 15s -_bk;t=1781335873306 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 14s ... (46 fetches) -_bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335877325value of: string -_bk;t=1781335877325expected: 3.10.20 -_bk;t=1781335877325actual: 3.11.15 -_bk;t=1781335877325 -_bk;t=1781335877325(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) -_bk;t=1781335877325[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877325 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877325 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877325 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877325 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335877325value of: string -_bk;t=1781335877325expected: 3.12.13 -_bk;t=1781335877325actual: 3.11.15 -_bk;t=1781335877325 -_bk;t=1781335877325(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) -_bk;t=1781335877325[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877325 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877325 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877325 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877325 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325 _bk;t=1781335877325(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335877325value of: string -_bk;t=1781335877325expected: 3.13.13 -_bk;t=1781335877325actual: 3.11.15 -_bk;t=1781335877325 -_bk;t=1781335877325(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) -_bk;t=1781335877325[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877325 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877325 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877325 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877325 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877325 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877325 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877325 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335877326value of: string -_bk;t=1781335877326expected: 3.14.4 -_bk;t=1781335877326actual: 3.11.15 -_bk;t=1781335877326 -_bk;t=1781335877326(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) -_bk;t=1781335877326[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877326 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877326 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877326 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877326 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326 _bk;t=1781335877326(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335877326value of: string -_bk;t=1781335877326expected: 3.15.0a8 -_bk;t=1781335877326actual: 3.11.15 -_bk;t=1781335877326 -_bk;t=1781335877326(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) -_bk;t=1781335877326[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877326 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877326 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877326 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877326 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877326 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877326 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877326 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.9.25 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,160,072 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.10.20 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,092 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.12.13 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,348 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.13.13 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,529 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.14.4 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,783 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.15.0a8 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,954 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333 _bk;t=1781335877333(07:31:17) DEBUG: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/external/rules_testing+/lib/private/analysis_test.bzl:38:10: In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335877333value of: string -_bk;t=1781335877333expected: 3.9.25 -_bk;t=1781335877333actual: 3.11.15 -_bk;t=1781335877333 -_bk;t=1781335877333(07:31:17) Analyzing: 590 targets (612 packages loaded, 1,161,956 targets configured, 167 aspect applications) -_bk;t=1781335877333[3,730 / 4,072] 319 / 554 tests; 30 actions, 26 running; last test: //tests/pypi/hub_builder:test_simple_with_markers -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-026e77be5ab4/bin/tests/toolchains/python_3.11.13_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/runfiles/runfiles_test.runfiles; 5s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecd2f35ab695/bin/tests/toolchains/python_3.13.2_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-716519dc437c/bin/tests/toolchains/python_3.12.13_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-e9bffd8c561b/bin/tests/toolchains/python_3.13.12_test.runfiles; 4s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild-ST-90087d75572b/bin/tests/toolchains/python_3.10.11_test.runfiles; 3s local -_bk;t=1781335877333 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_with_build_files/verify_files_test.runfiles; 3s local -_bk;t=1781335877333 //tests/bootstrap_impls:sys_path_order_bootstrap_script_test; 3s local ... -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_2_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_13_10_x86_64-unknown-linux-gnu; starting 27s -_bk;t=1781335877333 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 23s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335877333 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 20s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a8_x86_64-pc-windows-msvc-freethreaded; starting 19s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 18s -_bk;t=1781335877333 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 18s ... (37 fetches) -_bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342 _bk;t=1781335880342(07:31:20) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log) -_bk;t=1781335880342(07:31:20) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) -_bk;t=1781335880342[3,943 / 4,255] 355 / 562 tests; 26 actions, 17 running; last test: //tests/base_rules/py_binary:test_py_runtime_info_provided -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 5s local -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild-ST-9f25dba8f1a4/bin/tests/toolchains/python_3.11.10_test.runfiles; 5s local -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 5s local -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_zip_yes_test.runfiles; 5s local -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 5s local -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 5s local -_bk;t=1781335880342 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 4s local -_bk;t=1781335880342 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 4s local ... -_bk;t=1781335880342 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 26s -_bk;t=1781335880342 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 24s -_bk;t=1781335880342 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 23s -_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 21s -_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 21s -_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 21s -_bk;t=1781335880342 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 21s ... (34 fetches) -_bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879 _bk;t=1781335880879(07:31:20) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log) -_bk;t=1781335880879(07:31:20) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) -_bk;t=1781335880879[3,971 / 4,280] 361 / 562 tests; 30 actions, 18 running; last test: //tests/base_rules/py_binary:test_debugger -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild-ST-058c7ccef326/bin/tests/toolchains/python_3.12.2_test.runfiles; 6s local -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild-ST-9f25dba8f1a4/bin/tests/toolchains/python_3.11.10_test.runfiles; 6s local -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zipper_test.runfiles; 6s local -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/bootstrap_impls/run_binary_zip_yes_test.runfiles; 6s local -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 5s local -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 5s local -_bk;t=1781335880879 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local -_bk;t=1781335880879 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local ... -_bk;t=1781335880879 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 26s -_bk;t=1781335880879 Fetching repository @@+python+python_3_11_15_x86_64-pc-windows-msvc; starting 25s -_bk;t=1781335880879 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s -_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 21s -_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 21s -_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 21s -_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 21s -_bk;t=1781335880879 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 21s ... (34 fetches) -_bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315(07:31:21) FAIL: //tests/toolchains/transitions:test_minor_versions (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log) -_bk;t=1781335881315(07:31:21) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) -_bk;t=1781335881315[4,073 / 4,378] 374 / 562 tests; 23 actions, 15 running; last test: //tests/toolchains:python_3.12.9_test -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 6s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 6s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local -_bk;t=1781335881315 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 5s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecf3280ec0cb/bin/tests/toolchains/python_3.10.12_test.runfiles; 5s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zip_main_maker_test.runfiles; 5s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local ... -_bk;t=1781335881315 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 27s -_bk;t=1781335881315 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s -_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 22s -_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 22s -_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 22s -_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 22s -_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 22s -_bk;t=1781335881315 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 21s ... (33 fetches) -_bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 _bk;t=1781335881315 -_bk;t=1781335881315FAILED: //tests/toolchains/transitions:test_minor_versions (Summary) -_bk;t=1781335881315 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log -_bk;t=1781335881315 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log -_bk;t=1781335881315 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log -_bk;t=1781335881315(07:31:21) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) -_bk;t=1781335881315[4,073 / 4,378] 375 / 562 tests, 1 failed; 23 actions, 15 running; last test: //tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 6s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 6s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local -_bk;t=1781335881315 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local -_bk;t=1781335881315 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecf3280ec0cb/bin/tests/toolchains/python_3.10.12_test.runfiles; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zip_main_maker_test.runfiles; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local ... -_bk;t=1781335881318 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 27s -_bk;t=1781335881318 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 21s ... (33 fetches) -_bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318 _bk;t=1781335881318(07:31:21) INFO: From Testing //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335881318==================== Test output for //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.10.20 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.12.13 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.13.13 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.14.4 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.15.0a8 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.9.25 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318================================================================================ -_bk;t=1781335881318==================== Test output for //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.10.20 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.12.13 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.13.13 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.14.4 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.15.0a8 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.9.25 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318================================================================================ -_bk;t=1781335881318==================== Test output for //tests/toolchains/transitions:test_minor_versions: -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.10.20 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.12.13 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.13.13 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.14.4 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.15.0a8 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318value of: string -_bk;t=1781335881318expected: 3.9.25 -_bk;t=1781335881318actual: 3.11.15 -_bk;t=1781335881318 -_bk;t=1781335881318 -_bk;t=1781335881318================================================================================ -_bk;t=1781335881318(07:31:21) Analyzing: 590 targets (615 packages loaded, 1,168,428 targets configured, 172 aspect applications) -_bk;t=1781335881318[4,074 / 4,379] 375 / 562 tests, 1 failed; 25 actions, 15 running; last test: //tests/toolchains/transitions:test_minor_versions -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/whl_filegroup/extract_wheel_files_test.runfiles; 6s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-opt-exec-ST-b4008a3559a5/bin/.../bin_calls_bin/inner_bootstrap_script.runfiles [for tool]; 6s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-opt-exec/bin/tools/wheelmaker.runfiles [for tool]; 5s local -_bk;t=1781335881318 //tests/bootstrap_impls/bin_calls_bin:inner_bootstrap_system_python; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/pypi/whl_library/whl_library_extras_test.runfiles; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild-ST-ecf3280ec0cb/bin/tests/toolchains/python_3.10.12_test.runfiles; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/zip_main_maker_test.runfiles; 5s local -_bk;t=1781335881318 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/tools/zipapp/exe_zip_maker_test.runfiles; 5s local ... -_bk;t=1781335881318 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 27s -_bk;t=1781335881318 Fetching repository @@+python+python_3_11_15_s390x-unknown-linux-gnu; starting 24s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 22s -_bk;t=1781335881318 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 21s ... (33 fetches) -_bk;t=1781335881318buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log -_bk;t=17813358813502026-06-13 07:31:21 INFO  Found 1 files that match "tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log" -_bk;t=17813358813532026-06-13 07:31:21 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration -_bk;t=17813358813532026-06-13 07:31:21 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358814682026-06-13 07:31:21 INFO  Uploading 019ebfe4-76d7-4a5b-afc5-191dcd4b2d44 tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log (1.0 KiB) -_bk;t=17813358817232026-06-13 07:31:21 INFO  Artifact uploads completed successfully -_bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109 _bk;t=1781335884109(07:31:24) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log) -_bk;t=1781335884109(07:31:24) Analyzing: 590 targets (620 packages loaded, 1,181,229 targets configured, 181 aspect applications) -_bk;t=1781335884109 currently loading: @@+python+python_3_15_0a2_x86_64-apple-darwin// -_bk;t=1781335884109[4,362 / 4,506] 460 / 571 tests, 1 failed; 30 actions, 6 running; last test: //tests/deprecated:versioned_compile_pip_requirements.test -_bk;t=1781335884109 Creating runfiles tree bazel-out/k8-fastbuild-ST-f4eb966a3244/bin/tests/toolchains/python_3.13.10_test.runfiles; 2s local -_bk;t=1781335884109 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 1s local -_bk;t=1781335884109 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox -_bk;t=1781335884109 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335884109 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 0s linux-sandbox -_bk;t=1781335884109 Testing //tests/toolchains/transitions:test_full_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884109 Testing //tests/no_unsafe_paths:no_unsafe_paths_3.11_test; 0s remote-cache -_bk;t=1781335884109 Testing //tests/deprecated:versioned_compile_pip_requirements.test; 0s remote-cache ... -_bk;t=1781335884109 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 29s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 24s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 24s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 24s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 23s -_bk;t=1781335884109 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 20s ... (25 fetches) -_bk;t=1781335884114buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log -_bk;t=17813358841362026-06-13 07:31:24 INFO  Found 1 files that match "tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log" -_bk;t=17813358841402026-06-13 07:31:24 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration -_bk;t=17813358841402026-06-13 07:31:24 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358842542026-06-13 07:31:24 INFO  Uploading 019ebfe4-81b5-4111-ba78-4c330f8c515c tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log (1.0 KiB) -_bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420 _bk;t=1781335884420(07:31:24) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log) -_bk;t=1781335884420(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335884420[4,457 / 4,557] 485 / 572 tests, 1 failed; 25 actions, 7 running; last test: .../multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin -_bk;t=1781335884420 Creating runfiles tree bazel-out/k8-fastbuild-ST-e404a66095f6/bin/tests/toolchains/python_3.12.3_test.runfiles; 2s local -_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox -_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox -_bk;t=1781335884420 Testing //tests/toolchains/transitions:test_full_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884420 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox -_bk;t=1781335884420 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884420 Testing //tests/python_bzlmod_ext:test_dynamic_manifest_files; Downloading tests/python_bzlmod_ext/test_dynamic_m...; 0s remote-cache ... -_bk;t=1781335884420 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 24s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335884420 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) -_bk;t=17813358844632026-06-13 07:31:24 INFO  Artifact uploads completed successfully -_bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670 _bk;t=1781335884670(07:31:24) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log) -_bk;t=1781335884670(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335884670[4,477 / 4,565] 493 / 572 tests, 1 failed; 27 actions, 9 running; last test: //tests:bzl_libraries_build_test -_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox -_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox -_bk;t=1781335884670 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox -_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox -_bk;t=1781335884670 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884670 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox -_bk;t=1781335884670 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... -_bk;t=1781335884670 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 24s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335884670 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) -_bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975 _bk;t=1781335884975(07:31:24) FAIL: //tests/toolchains/transitions:test_full_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log) -_bk;t=1781335884975(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335884975[4,507 / 4,579] 504 / 572 tests, 1 failed; 26 actions, 9 running; last test: //tests/py_zipapp:venv_zipapp_test -_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox -_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox -_bk;t=1781335884975 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox -_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox -_bk;t=1781335884975 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884975 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox -_bk;t=1781335884975 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... -_bk;t=1781335884975 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335884975 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) -_bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 _bk;t=1781335884977 -_bk;t=1781335884977FAILED: //tests/toolchains/transitions:test_full_version (Summary) -_bk;t=1781335884977 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log -_bk;t=1781335884977 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log -_bk;t=1781335884977 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log -_bk;t=1781335884977(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335884977[4,508 / 4,579] 505 / 572 tests, 2 failed; 28 actions, 9 running; last test: //tests/toolchains/transitions:test_full_version -_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox -_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox -_bk;t=1781335884977 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox -_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox -_bk;t=1781335884977 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884977 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox -_bk;t=1781335884977 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... -_bk;t=1781335884977 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335884977 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) -_bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980 _bk;t=1781335884980(07:31:24) INFO: From Testing //tests/toolchains/transitions:test_full_version: -_bk;t=1781335884980==================== Test output for //tests/toolchains/transitions:test_full_version: -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.10.20 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.12.13 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.13.13 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.14.4 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.15.0a8 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.9.25 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980================================================================================ -_bk;t=1781335884980==================== Test output for //tests/toolchains/transitions:test_full_version: -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.10.20 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.12.13 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.13.13 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.14.4 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.15.0a8 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.9.25 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980================================================================================ -_bk;t=1781335884980==================== Test output for //tests/toolchains/transitions:test_full_version: -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.10.20 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.12.13 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.13.13 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.14.4 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.15.0a8 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980In test test_transition_impl: in test: @@//tests/toolchains/transitions:test_full_version -_bk;t=1781335884980value of: string -_bk;t=1781335884980expected: 3.9.25 -_bk;t=1781335884980actual: 3.11.15 -_bk;t=1781335884980 -_bk;t=1781335884980 -_bk;t=1781335884980================================================================================ -_bk;t=1781335884980(07:31:24) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335884980[4,508 / 4,579] 505 / 572 tests, 2 failed; 28 actions, 9 running; last test: //tests/toolchains/transitions:test_full_version -_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock:requirements_new_file; 1s linux-sandbox -_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox -_bk;t=1781335884980 Testing //tests/toolchains/transitions:test_full_version; 1s remote-cache, linux-sandbox -_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox -_bk;t=1781335884980 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox -_bk;t=1781335884980 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox -_bk;t=1781335884980 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local ... -_bk;t=1781335884980 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335884980 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) -_bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019 _bk;t=1781335885019(07:31:25) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log) -_bk;t=1781335885019(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335885019[4,524 / 4,581] 512 / 572 tests, 2 failed; 27 actions, 7 running; last test: //tests/whl_with_build_files:verify_files_test -_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock/pyproject_toml:requirements; 1s linux-sandbox -_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 0s linux-sandbox -_bk;t=1781335885019 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 0s remote-cache, linux-sandbox -_bk;t=1781335885019 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 0s linux-sandbox -_bk;t=1781335885019 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local -_bk;t=1781335885019 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox -_bk;t=1781335885019 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache ... -_bk;t=1781335885019 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 30s -_bk;t=1781335885019 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335885019 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 25s -_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 25s -_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 24s -_bk;t=1781335885020 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 21s ... (24 fetches) -_bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519(07:31:25) FAIL: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log) -_bk;t=1781335885519(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335885519[4,580 / 4,611] 540 / 572 tests, 2 failed; 27 actions, 6 running; last test: //tests/toolchains:python_3.13.0_test -_bk;t=1781335885519 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335885519 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 1s remote-cache, linux-sandbox -_bk;t=1781335885519 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 1s linux-sandbox -_bk;t=1781335885519 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local -_bk;t=1781335885519 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox -_bk;t=1781335885519 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/base_rules/py_binary/test_cross_compile_to_unix.sh.runfiles; 0s local -_bk;t=1781335885519 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache -_bk;t=1781335885519 Testing //tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test; 0s remote-cache ... -_bk;t=1781335885519 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 31s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 26s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 26s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 26s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 26s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335885519 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 22s ... (24 fetches) -_bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 _bk;t=1781335885519 -_bk;t=1781335885519FAILED: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Summary) -_bk;t=1781335885519 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log -_bk;t=1781335885519 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log -_bk;t=1781335885521 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log -_bk;t=1781335885521(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335885521[4,581 / 4,611] 541 / 572 tests, 3 failed; 27 actions, 5 running; last test: ...ec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335885521 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335885521 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 1s remote-cache, linux-sandbox -_bk;t=1781335885521 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 1s linux-sandbox -_bk;t=1781335885521 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local -_bk;t=1781335885521 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox -_bk;t=1781335885521 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache -_bk;t=1781335885521 Testing //tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test; 0s remote-cache -_bk;t=1781335885521 Testing //tests/pypi/whl_library:whl_library_extras_test; 0s remote-cache ... -_bk;t=1781335885521 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 31s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 26s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 26s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 26s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 26s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335885521 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 22s ... (24 fetches) -_bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527 _bk;t=1781335885527(07:31:25) INFO: From Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335885528==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335885528In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335885528value of: string -_bk;t=1781335885528expected: /mac/python3.12 -_bk;t=1781335885528actual: /linux/python3.12 -_bk;t=1781335885528 -_bk;t=1781335885528 -_bk;t=1781335885528================================================================================ -_bk;t=1781335885528==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335885528In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335885528value of: string -_bk;t=1781335885528expected: /mac/python3.12 -_bk;t=1781335885528actual: /linux/python3.12 -_bk;t=1781335885528 -_bk;t=1781335885528 -_bk;t=1781335885528================================================================================ -_bk;t=1781335885528==================== Test output for //tests/exec_toolchain_matching:test_exec_matches_target_python_version: -_bk;t=1781335885528In test test_exec_matches_target_python_version_impl: in test: @@//tests/exec_toolchain_matching:test_exec_matches_target_python_version -_bk;t=1781335885528value of: string -_bk;t=1781335885528expected: /mac/python3.12 -_bk;t=1781335885528actual: /linux/python3.12 -_bk;t=1781335885528 -_bk;t=1781335885528 -_bk;t=1781335885528================================================================================ -_bk;t=1781335885528(07:31:25) Analyzing: 590 targets (621 packages loaded, 1,183,167 targets configured, 182 aspect applications) -_bk;t=1781335885528[4,586 / 4,612] 545 / 572 tests, 3 failed; 23 actions, 5 running; last test: //tests/base_rules/py_test:test_default_outputs -_bk;t=1781335885528 Creating a requirements.txt with uv: //tests/uv/lock:requirements; 1s linux-sandbox -_bk;t=1781335885528 Testing //tests/exec_toolchain_matching:test_exec_matches_target_python_version; 1s remote-cache, linux-sandbox -_bk;t=1781335885528 Creating a requirements.txt with uv: //tests/uv/lock/workspaces:requirements; 1s linux-sandbox -_bk;t=1781335885528 Creating runfiles tree bazel-out/k8-fastbuild-ST-4f03bf2ab650/bin/tests/toolchains/python_3.10.16_test.runfiles; 0s local -_bk;t=1781335885528 Testing //tests/build_data:build_data_test; 0s remote-cache, linux-sandbox -_bk;t=1781335885528 Testing //tests/toolchains:python_3.11.13_test; 0s remote-cache -_bk;t=1781335885528 Testing //tests/pypi/whl_library:whl_library_extras_test; 0s remote-cache -_bk;t=1781335885528 Testing //tests/bootstrap_impls/bin_calls_bin:bootstrap_script_python_test; 0s remote-cache ... -_bk;t=1781335885528 Fetching repository @@+python+python_3_14_4_x86_64-unknown-linux-gnu-freethreaded; starting 31s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_aarch64-pc-windows-msvc-freethreaded; starting 26s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_x86_64-apple-darwin-freethreaded; starting 26s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_x86_64-pc-windows-msvc-freethreaded; starting 26s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a8_x86_64-unknown-linux-musl; starting 26s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_x86_64-unknown-linux-gnu-freethreaded; starting 25s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a2_aarch64-apple-darwin-freethreaded; starting 25s -_bk;t=1781335885528 Fetching repository @@+python+python_3_15_0a8_aarch64-pc-windows-msvc-freethreaded; starting 22s ... (24 fetches) -_bk;t=1781335885664buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log -_bk;t=17813358856862026-06-13 07:31:25 INFO  Found 1 files that match "tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log" -_bk;t=17813358856882026-06-13 07:31:25 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration -_bk;t=17813358856882026-06-13 07:31:25 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358858032026-06-13 07:31:25 INFO  Uploading 019ebfe4-87c9-4679-ba6e-2111596b83c8 tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log (423 B) -_bk;t=17813358860122026-06-13 07:31:26 INFO  Artifact uploads completed successfully -_bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636 _bk;t=1781335890636(07:31:30) Analyzing: 590 targets (640 packages loaded, 1,230,280 targets configured, 198 aspect applications) -_bk;t=1781335890636[5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: //tests/docs:docs_build_test -_bk;t=1781335895237 _bk;t=1781335895237 _bk;t=1781335895237(07:31:35) INFO: Analyzed 590 targets (640 packages loaded, 1,230,281 targets configured, 198 aspect applications). -_bk;t=1781335895237(07:31:35) [5,813 / 5,813] 584 / 589 tests, 3 failed; no actions running; last test: //tests/docs:docs_build_test -_bk;t=1781335895310 _bk;t=1781335895310(07:31:35) INFO: Found 590 test targets... -_bk;t=1781335895310(07:31:35) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization -_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: Elapsed time: 65.045s, Critical Path: 10.77s -_bk;t=1781335895361(07:31:35) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization -_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: 5819 processes: 1921 remote cache hit, 4473 internal, 22 linux-sandbox. -_bk;t=1781335895361(07:31:35) [5,819 / 5,819] 585 / 590 tests, 3 failed; no actions running; last test: //tests/version:test_normalization -_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: Build completed, 3 tests FAILED, 5819 total actions -_bk;t=1781335895361(07:31:35) INFO: -_bk;t=1781335895361 _bk;t=1781335895361(07:31:35) INFO: -_bk;t=1781335895369 _bk;t=1781335895369//tests:bzl_libraries_build_test (cached) PASSED in 0.6s -_bk;t=1781335895369(07:31:35) INFO: -_bk;t=1781335895369 _bk;t=1781335895369//tests/api/py_common:test_merge_py_infos (cached) PASSED in 0.2s -_bk;t=1781335895369(07:31:35) INFO: -_bk;t=1781335895369 _bk;t=1781335895369//tests/base_rules/precompile:test_precompile_attr_inherit_pyc_collection_disabled_precompile_flag_enabled (cached) PASSED in 0.7s -_bk;t=1781335895369(07:31:35) INFO: -_bk;t=1781335895369 _bk;t=1781335895369//tests/base_rules/precompile:test_precompile_enabled_py_binary (cached) PASSED in 0.8s -_bk;t=1781335895369(07:31:35) INFO: -_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_disabled (cached) PASSED in 0.9s -_bk;t=1781335895370(07:31:35) INFO: -_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_enabled_py_library_add_to_runfiles_enabled (cached) PASSED in 0.4s -_bk;t=1781335895370(07:31:35) INFO: -_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_enabled_py_test (cached) PASSED in 0.5s -_bk;t=1781335895370(07:31:35) INFO: -_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_disabled (cached) PASSED in 0.2s -_bk;t=1781335895370(07:31:35) INFO: -_bk;t=1781335895370 _bk;t=1781335895370//tests/base_rules/precompile:test_precompile_flag_disabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.8s -_bk;t=1781335895370(07:31:35) INFO: -_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_disabled (cached) PASSED in 0.7s -_bk;t=1781335895371(07:31:35) INFO: -_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_precompile_flag_enabled_pyc_collection_attr_include_pyc (cached) PASSED in 0.4s -_bk;t=1781335895371(07:31:35) INFO: -_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_precompiler_action (cached) PASSED in 0.3s -_bk;t=1781335895371(07:31:35) INFO: -_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_pyc_collection_disabled_library_omit_source (cached) PASSED in 0.4s -_bk;t=1781335895371(07:31:35) INFO: -_bk;t=1781335895371 _bk;t=1781335895371//tests/base_rules/precompile:test_pyc_collection_include_dep_omit_source (cached) PASSED in 0.6s -_bk;t=1781335895371(07:31:35) INFO: -_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/precompile:test_pyc_only (cached) PASSED in 0.5s -_bk;t=1781335895372(07:31:35) INFO: -_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_basic_windows (cached) PASSED in 0.6s -_bk;t=1781335895372(07:31:35) INFO: -_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_basic_zip (cached) PASSED in 0.3s -_bk;t=1781335895372(07:31:35) INFO: -_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_config_settings_extra_toolchains (cached) PASSED in 0.4s -_bk;t=1781335895372(07:31:35) INFO: -_bk;t=1781335895372 _bk;t=1781335895372//tests/base_rules/py_binary:test_cross_compile_to_unix (cached) PASSED in 0.3s -_bk;t=1781335895372(07:31:35) INFO: -_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_data_sets_uses_shared_library (cached) PASSED in 0.3s -_bk;t=1781335895373(07:31:35) INFO: -_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_debugger (cached) PASSED in 0.7s -_bk;t=1781335895373(07:31:35) INFO: -_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_default_main_can_be_generated (cached) PASSED in 0.5s -_bk;t=1781335895373(07:31:35) INFO: -_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s -_bk;t=1781335895373(07:31:35) INFO: -_bk;t=1781335895373 _bk;t=1781335895373//tests/base_rules/py_binary:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.7s -_bk;t=1781335895373(07:31:35) INFO: -_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_default_main_must_be_in_srcs (cached) PASSED in 0.4s -_bk;t=1781335895374(07:31:35) INFO: -_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_default_outputs (cached) PASSED in 0.3s -_bk;t=1781335895374(07:31:35) INFO: -_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_executable_in_runfiles (cached) PASSED in 0.1s -_bk;t=1781335895374(07:31:35) INFO: -_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_explicit_main (cached) PASSED in 0.2s -_bk;t=1781335895374(07:31:35) INFO: -_bk;t=1781335895374 _bk;t=1781335895374//tests/base_rules/py_binary:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.1s -_bk;t=1781335895374(07:31:35) INFO: -_bk;t=1781335895374 _bk;t=1781335895375//tests/base_rules/py_binary:test_main_module_bootstrap_script (cached) PASSED in 0.4s -_bk;t=1781335895375(07:31:35) INFO: -_bk;t=1781335895375 _bk;t=1781335895375//tests/base_rules/py_binary:test_main_module_bootstrap_system_python (cached) PASSED in 0.8s -_bk;t=1781335895375(07:31:35) INFO: -_bk;t=1781335895375 _bk;t=1781335895375//tests/base_rules/py_binary:test_name_cannot_end_in_py (cached) PASSED in 0.5s -_bk;t=1781335895375(07:31:35) INFO: -_bk;t=1781335895375 _bk;t=1781335895375//tests/base_rules/py_binary:test_py_info_populated (cached) PASSED in 0.2s -_bk;t=1781335895375(07:31:35) INFO: -_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_py_info_propagation (cached) PASSED in 0.2s -_bk;t=1781335895376(07:31:35) INFO: -_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_py_runtime_info_provided (cached) PASSED in 0.2s -_bk;t=1781335895376(07:31:35) INFO: -_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_requires_provider (cached) PASSED in 0.3s -_bk;t=1781335895376(07:31:35) INFO: -_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_tags_can_be_tuple (cached) PASSED in 0.3s -_bk;t=1781335895376(07:31:35) INFO: -_bk;t=1781335895376 _bk;t=1781335895376//tests/base_rules/py_binary:test_windows_target_with_path_separators (cached) PASSED in 0.4s -_bk;t=1781335895376(07:31:35) INFO: -_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_info:test_py_info_builder (cached) PASSED in 0.3s -_bk;t=1781335895377(07:31:35) INFO: -_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_info:test_py_info_create (cached) PASSED in 0.5s -_bk;t=1781335895377(07:31:35) INFO: -_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_data_sets_uses_shared_library (cached) PASSED in 0.4s -_bk;t=1781335895377(07:31:35) INFO: -_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_default_outputs (cached) PASSED in 0.1s -_bk;t=1781335895377(07:31:35) INFO: -_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_files_to_compile (cached) PASSED in 0.4s -_bk;t=1781335895377(07:31:35) INFO: -_bk;t=1781335895377 _bk;t=1781335895377//tests/base_rules/py_library:test_py_info_populated (cached) PASSED in 0.4s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_py_info_propagation (cached) PASSED in 0.3s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_py_runtime_info_not_present (cached) PASSED in 0.2s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_requires_provider (cached) PASSED in 0.7s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_srcs_can_contain_rule_generating_py_and_nonpy_files (cached) PASSED in 0.1s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_srcs_generating_no_py_files_is_error (cached) PASSED in 0.3s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_library:test_tags_can_be_tuple (cached) PASSED in 0.1s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895378 _bk;t=1781335895378//tests/base_rules/py_test:test_basic_windows (cached) PASSED in 0.3s -_bk;t=1781335895378(07:31:35) INFO: -_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_basic_zip (cached) PASSED in 0.5s -_bk;t=1781335895379(07:31:35) INFO: -_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_config_settings_extra_toolchains (cached) PASSED in 0.6s -_bk;t=1781335895379(07:31:35) INFO: -_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_cross_compile_to_unix (cached) PASSED in 0.7s -_bk;t=1781335895379(07:31:35) INFO: -_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_data_sets_uses_shared_library (cached) PASSED in 0.6s -_bk;t=1781335895379(07:31:35) INFO: -_bk;t=1781335895379 _bk;t=1781335895379//tests/base_rules/py_test:test_debugger (cached) PASSED in 0.4s -_bk;t=1781335895379(07:31:35) INFO: -_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_can_be_generated (cached) PASSED in 0.4s -_bk;t=1781335895380(07:31:35) INFO: -_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_can_have_multiple_path_segments (cached) PASSED in 0.3s -_bk;t=1781335895380(07:31:35) INFO: -_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_cannot_be_ambiguous (cached) PASSED in 0.5s -_bk;t=1781335895380(07:31:35) INFO: -_bk;t=1781335895380 _bk;t=1781335895380//tests/base_rules/py_test:test_default_main_must_be_in_srcs (cached) PASSED in 0.6s -_bk;t=1781335895381(07:31:35) INFO: -_bk;t=1781335895381 _bk;t=1781335895381//tests/base_rules/py_test:test_default_outputs (cached) PASSED in 0.3s -_bk;t=1781335895381(07:31:35) INFO: -_bk;t=1781335895381 _bk;t=1781335895381//tests/base_rules/py_test:test_executable_in_runfiles (cached) PASSED in 0.2s -_bk;t=1781335895381(07:31:35) INFO: -_bk;t=1781335895381 _bk;t=1781335895381//tests/base_rules/py_test:test_explicit_main (cached) PASSED in 0.3s -_bk;t=1781335895381(07:31:35) INFO: -_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_explicit_main_cannot_be_ambiguous (cached) PASSED in 0.5s -_bk;t=1781335895382(07:31:35) INFO: -_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_mac_requires_darwin_for_execution (cached) PASSED in 0.3s -_bk;t=1781335895382(07:31:35) INFO: -_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_main_module_bootstrap_script (cached) PASSED in 0.3s -_bk;t=1781335895382(07:31:35) INFO: -_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_main_module_bootstrap_system_python (cached) PASSED in 0.1s -_bk;t=1781335895382(07:31:35) INFO: -_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_name_cannot_end_in_py (cached) PASSED in 0.3s -_bk;t=1781335895382(07:31:35) INFO: -_bk;t=1781335895382 _bk;t=1781335895382//tests/base_rules/py_test:test_non_mac_doesnt_require_darwin_for_execution (cached) PASSED in 0.2s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_py_info_populated (cached) PASSED in 0.6s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_py_info_propagation (cached) PASSED in 0.5s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_py_runtime_info_provided (cached) PASSED in 0.3s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_requires_provider (cached) PASSED in 0.2s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_tags_can_be_tuple (cached) PASSED in 0.3s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895383 _bk;t=1781335895383//tests/base_rules/py_test:test_windows_target_with_path_separators (cached) PASSED in 0.6s -_bk;t=1781335895383(07:31:35) INFO: -_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:bazel_tools_importable_system_python_test (cached) PASSED in 0.9s -_bk;t=1781335895384(07:31:35) INFO: -_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:bootstrap_script_zipapp_test (cached) PASSED in 2.2s -_bk;t=1781335895384(07:31:35) INFO: -_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:external_binary_test (cached) PASSED in 3.2s -_bk;t=1781335895384(07:31:35) INFO: -_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:inherit_pythonsafepath_env_test (cached) PASSED in 1.3s -_bk;t=1781335895384(07:31:35) INFO: -_bk;t=1781335895384 _bk;t=1781335895384//tests/bootstrap_impls:interpreter_args_test (cached) PASSED in 0.8s -_bk;t=1781335895384(07:31:35) INFO: -_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:main_module_test (cached) PASSED in 1.2s -_bk;t=1781335895385(07:31:35) INFO: -_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:relative_path_test (cached) PASSED in 0.5s -_bk;t=1781335895385(07:31:35) INFO: -_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:run_binary_bootstrap_script_find_runfiles_test (cached) PASSED in 1.4s -_bk;t=1781335895385(07:31:35) INFO: -_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:run_binary_bootstrap_script_zip_no_test (cached) PASSED in 1.2s -_bk;t=1781335895385(07:31:35) INFO: -_bk;t=1781335895385 _bk;t=1781335895385//tests/bootstrap_impls:run_binary_bootstrap_script_zip_yes_test (cached) PASSED in 1.9s -_bk;t=1781335895385(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_find_runfiles_test (cached) PASSED in 1.1s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_venvs_use_declare_symlink_no_test (cached) PASSED in 0.9s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_zip_no_test (cached) PASSED in 1.1s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:run_binary_zip_yes_test (cached) PASSED in 2.2s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:sys_executable_inherits_sys_path (cached) PASSED in 0.6s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:sys_path_order_bootstrap_script_test (cached) PASSED in 1.1s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:sys_path_order_bootstrap_system_python_test (cached) PASSED in 0.9s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895386 _bk;t=1781335895386//tests/bootstrap_impls:system_python_nodeps_test (cached) PASSED in 1.2s -_bk;t=1781335895386(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/bootstrap_impls/a/b/c:nested_dir_test (cached) PASSED in 1.2s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/bootstrap_impls/bin_calls_bin:bootstrap_script_python_test (cached) PASSED in 0.8s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/bootstrap_impls/bin_calls_bin:bootstrap_system_python_test (cached) PASSED in 0.6s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_bool (cached) PASSED in 0.7s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_cfg_arg (cached) PASSED in 0.4s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_depset_builder (cached) PASSED in 0.2s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_exec_group (cached) PASSED in 0.3s -_bk;t=1781335895387(07:31:35) INFO: -_bk;t=1781335895387 _bk;t=1781335895387//tests/builders:test_fruit_rule (cached) PASSED in 0.2s -_bk;t=1781335895388(07:31:35) INFO: -_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_int (cached) PASSED in 0.4s -_bk;t=1781335895388(07:31:35) INFO: -_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_int_list (cached) PASSED in 0.2s -_bk;t=1781335895388(07:31:35) INFO: -_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_label (cached) PASSED in 0.2s -_bk;t=1781335895388(07:31:35) INFO: -_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_label_keyed_string_dict (cached) PASSED in 0.8s -_bk;t=1781335895388(07:31:35) INFO: -_bk;t=1781335895388 _bk;t=1781335895388//tests/builders:test_label_list (cached) PASSED in 0.2s -_bk;t=1781335895388(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_output (cached) PASSED in 0.3s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_output_list (cached) PASSED in 0.4s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_rule_api (cached) PASSED in 0.4s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_rule_with_immutable_attrs (cached) PASSED in 0.4s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_rule_with_toolchains (cached) PASSED in 0.4s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_runfiles_builder (cached) PASSED in 0.2s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895389 _bk;t=1781335895389//tests/builders:test_string (cached) PASSED in 0.2s -_bk;t=1781335895389(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_dict (cached) PASSED in 0.3s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_keyed_label_dict (cached) PASSED in 0.2s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_list (cached) PASSED in 0.8s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_string_list_dict (cached) PASSED in 0.2s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/builders:test_toolchain_type (cached) PASSED in 0.7s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/cc/current_py_cc_headers:test_current_toolchain_headers (cached) PASSED in 0.3s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895390 _bk;t=1781335895390//tests/cc/current_py_cc_headers:test_current_toolchain_headers_abi3 (cached) PASSED in 0.4s -_bk;t=1781335895390(07:31:35) INFO: -_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_headers:test_toolchain_is_registered_by_default (cached) PASSED in 0.3s -_bk;t=1781335895391(07:31:35) INFO: -_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:python_abi3_libs_linking_test (cached) PASSED in 0.5s -_bk;t=1781335895391(07:31:35) INFO: -_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:python_libs_linking_test (cached) PASSED in 0.4s -_bk;t=1781335895391(07:31:35) INFO: -_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:test_current_toolchain_libs (cached) PASSED in 0.4s -_bk;t=1781335895391(07:31:35) INFO: -_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/current_py_cc_libs:test_toolchain_is_registered_by_default (cached) PASSED in 0.6s -_bk;t=1781335895391(07:31:35) INFO: -_bk;t=1781335895391 _bk;t=1781335895391//tests/cc/py_cc_toolchain:test_libs_optional (cached) PASSED in 0.4s -_bk;t=1781335895391(07:31:35) INFO: -_bk;t=1781335895392 _bk;t=1781335895392//tests/cc/py_cc_toolchain:test_py_cc_toolchain (cached) PASSED in 0.9s -_bk;t=1781335895392(07:31:35) INFO: -_bk;t=1781335895392 _bk;t=1781335895392//tests/config_settings:test_latest_micro_version_matching (cached) PASSED in 0.3s -_bk;t=1781335895392(07:31:35) INFO: -_bk;t=1781335895392 _bk;t=1781335895392//tests/config_settings:test_minor_version_matching (cached) PASSED in 0.9s -_bk;t=1781335895392(07:31:35) INFO: -_bk;t=1781335895392 _bk;t=1781335895392//tests/config_settings/transition:test_kwargs_get_consumed (cached) PASSED in 0.0s -_bk;t=1781335895392(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_args_default (cached) PASSED in 0.9s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_binary_windows_build_python_zip_false (cached) PASSED in 0.9s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_binary_with_transition (cached) PASSED in 0.1s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/config_settings/transition:test_py_test_with_transition (cached) PASSED in 0.3s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/coverage_deps:test_unsupported_python_version_warns (cached) PASSED in 0.8s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/coverage_deps:test_windows_platform_is_silent (cached) PASSED in 0.0s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895393 _bk;t=1781335895393//tests/deprecated:build_test (cached) PASSED in 0.4s -_bk;t=1781335895393(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:hub_compile_pip_requirements.test (cached) PASSED in 10.5s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:hub_py_test (cached) PASSED in 0.9s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:transition_py_test (cached) PASSED in 0.8s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:versioned_compile_pip_requirements.test (cached) PASSED in 22.6s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/deprecated:versioned_py_test (cached) PASSED in 0.6s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/docs:docs_build_test (cached) PASSED in 0.0s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/entry_points:build_entry_point (cached) PASSED in 0.7s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895394 _bk;t=1781335895394//tests/entry_points:py_console_script_gen_test (cached) PASSED in 1.0s -_bk;t=1781335895394(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_braceless (cached) PASSED in 0.5s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_braces_with_default (cached) PASSED in 0.3s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_braces_without_default (cached) PASSED in 0.4s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_both_vars (cached) PASSED in 0.2s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_braces_inner_var (cached) PASSED in 0.3s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_no_vars (cached) PASSED in 0.2s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/envsubst:test_envsubst_nested_outer_var (cached) PASSED in 0.2s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895395 _bk;t=1781335895395//tests/get_release_info:test_astral_mirror (cached) PASSED in 0.7s -_bk;t=1781335895395(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/get_release_info:test_astral_mirror_legacy (cached) PASSED in 0.4s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/get_release_info:test_file_url (cached) PASSED in 0.3s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/implicit_namespace_packages:namespace_packages_test (cached) PASSED in 0.8s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:interpreter_version_test_3.10 (cached) PASSED in 1.4s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:interpreter_version_test_3.11 (cached) PASSED in 1.3s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:interpreter_version_test_3.12 (cached) PASSED in 1.5s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:python_src_test_3.10 (cached) PASSED in 1.6s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895396 _bk;t=1781335895396//tests/interpreter:python_src_test_3.11 (cached) PASSED in 1.2s -_bk;t=1781335895396(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/interpreter:python_src_test_3.12 (cached) PASSED in 1.2s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/multi_pypi/pypi_alpha:pypi_alpha_test (cached) PASSED in 1.4s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/multi_pypi/pypi_beta:pypi_beta_test (cached) PASSED in 1.1s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/multiple_inputs:multiple_inputs.test (cached) PASSED in 6.9s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/multiple_inputs:multiple_pyproject_toml.test (cached) PASSED in 10.5s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/multiple_inputs:multiple_requirements_in.test (cached) PASSED in 24.5s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895397 _bk;t=1781335895397//tests/no_unsafe_paths:no_unsafe_paths_3.10_test (cached) PASSED in 1.1s -_bk;t=1781335895397(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/no_unsafe_paths:no_unsafe_paths_3.11_test (cached) PASSED in 1.4s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/normalize_name:test_name_normalization (cached) PASSED in 0.1s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/packaging:bin (cached) PASSED in 1.0s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/packaging:bzl_libraries_build_test (cached) PASSED in 0.4s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/py_exec_tools_toolchain:test_disable_exec_interpreter (cached) PASSED in 0.4s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/py_runtime:test_bootstrap_template (cached) PASSED in 0.2s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895398 _bk;t=1781335895398//tests/py_runtime:test_cannot_have_both_inbuild_and_system_interpreter (cached) PASSED in 0.0s -_bk;t=1781335895398(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_cannot_specify_files_for_system_interpreter (cached) PASSED in 0.1s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_coverage_tool_executable (cached) PASSED in 0.3s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_coverage_tool_plain_files (cached) PASSED in 0.2s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_in_build_interpreter (cached) PASSED in 0.2s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_binary_with_multiple_outputs (cached) PASSED in 0.4s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_binary_with_single_output_and_runfiles (cached) PASSED in 0.2s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_major (cached) PASSED in 0.2s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_version_info_must_define_major_and_minor_only_minor (cached) PASSED in 0.3s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895399 _bk;t=1781335895399//tests/py_runtime:test_interpreter_version_info_no_extraneous_keys (cached) PASSED in 0.3s -_bk;t=1781335895399(07:31:35) INFO: -_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_interpreter_version_info_parses_values_to_struct (cached) PASSED in 0.4s -_bk;t=1781335895400(07:31:35) INFO: -_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_interpreter_version_info_sets_values_to_none_if_not_given (cached) PASSED in 0.3s -_bk;t=1781335895400(07:31:35) INFO: -_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_must_have_either_inbuild_or_system_interpreter (cached) PASSED in 0.3s -_bk;t=1781335895400(07:31:35) INFO: -_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_system_interpreter (cached) PASSED in 0.3s -_bk;t=1781335895400(07:31:35) INFO: -_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_system_interpreter_must_be_absolute (cached) PASSED in 0.4s -_bk;t=1781335895400(07:31:35) INFO: -_bk;t=1781335895400 _bk;t=1781335895400//tests/py_runtime:test_version_info_from_flag (cached) PASSED in 0.5s -_bk;t=1781335895400(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_runtime_info:test_can_create_py_runtime_info_without_interpreter_version_info (cached) PASSED in 0.2s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_runtime_pair:test_basic (cached) PASSED in 0.2s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_runtime_pair:test_py_runtime_pair_and_binary (cached) PASSED in 0.6s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_config_settings (cached) PASSED in 0.6s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_content_type_from_attr (cached) PASSED in 0.6s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_content_type_from_description (cached) PASSED in 0.3s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_data (cached) PASSED in 0.3s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895401 _bk;t=1781335895401//tests/py_wheel:test_data_bad_path (cached) PASSED in 0.4s -_bk;t=1781335895401(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_wheel:test_data_bad_path_but_right_prefix (cached) PASSED in 0.2s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_wheel:test_metadata (cached) PASSED in 0.3s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_wheel/py_wheel:test_too_long_project_url_label (cached) PASSED in 0.2s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:system_python_zipapp_external_bootstrap_test (cached) PASSED in 4.8s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:system_python_zipapp_test (cached) PASSED in 2.2s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:venv_zipapp_compressed_test (cached) PASSED in 3.3s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895402 _bk;t=1781335895402//tests/py_zipapp:venv_zipapp_test (cached) PASSED in 1.9s -_bk;t=1781335895402(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/argparse:test_extra_index_url (cached) PASSED in 0.5s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/argparse:test_index_url (cached) PASSED in 0.2s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/argparse:test_platform (cached) PASSED in 0.4s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/config_settings:test_legacy_default (cached) PASSED in 0.3s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/config_settings:test_legacy_with_constraint_values (cached) PASSED in 0.1s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/env_marker_setting:test_custom_env_markers (cached) PASSED in 0.6s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/env_marker_setting:test_expr_python_full_version_lt_negative (cached) PASSED in 0.4s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/env_marker_setting:test_expr_python_version_gte (cached) PASSED in 0.3s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895403 _bk;t=1781335895403//tests/pypi/extension:test_build_pipstar_platform (cached) PASSED in 0.7s -_bk;t=1781335895403(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/extension:test_simple (cached) PASSED in 0.3s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/extension:test_simple_isolated (cached) PASSED in 0.2s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_group_library_build_bazel:test_in_hub (cached) PASSED in 0.3s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_group_library_build_bazel:test_simple (cached) PASSED in 0.5s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all (cached) PASSED in 0.4s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all_legacy (cached) PASSED in 0.3s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all_with_loads (cached) PASSED in 0.2s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/generate_whl_library_build_bazel:test_all_workspace (cached) PASSED in 0.9s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895404 _bk;t=1781335895404//tests/pypi/hub_builder:test_download_only_multiple (cached) PASSED in 0.4s -_bk;t=1781335895404(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_err_duplicate_repos (cached) PASSED in 0.2s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_index_url_precedence (cached) PASSED in 0.5s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_optimum_sys_platform_extra (cached) PASSED in 0.2s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_pipstar_platforms (cached) PASSED in 0.3s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_pipstar_platforms_limit (cached) PASSED in 0.1s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple (cached) PASSED in 0.5s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple_extras_vs_no_extras (cached) PASSED in 0.3s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple_extras_vs_no_extras_simpleapi (cached) PASSED in 0.5s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895405 _bk;t=1781335895405//tests/pypi/hub_builder:test_simple_get_index (cached) PASSED in 0.3s -_bk;t=1781335895405(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_simple_multiple_python_versions (cached) PASSED in 0.4s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_simple_multiple_requirements (cached) PASSED in 0.6s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_simple_with_markers (cached) PASSED in 0.6s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/hub_builder:test_torch_experimental_index_url (cached) PASSED in 0.1s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/index_sources:test_no_simple_api_sources (cached) PASSED in 0.2s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/index_sources:test_simple_api_sources (cached) PASSED in 0.1s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895406 _bk;t=1781335895406//tests/pypi/integration:all_requirements_build_test (cached) PASSED in 0.9s -_bk;t=1781335895406(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_create_inits (cached) PASSED in 0.1s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_empty_case (cached) PASSED in 0.0s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_find_correct_namespace_packages (cached) PASSED in 0.2s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_ignores_empty_directories (cached) PASSED in 0.2s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_ignores_non_module_files_in_directories (cached) PASSED in 0.5s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_in_current_dir (cached) PASSED in 0.7s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_nested_standard_pkgs (cached) PASSED in 0.2s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_and_standard_pkgs (cached) PASSED in 0.3s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_parent_child_relationship_of_namespace_pkgs (cached) PASSED in 0.5s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895407 _bk;t=1781335895407//tests/pypi/namespace_pkgs:test_recognized_all_nonstandard_module_types (cached) PASSED in 0.4s -_bk;t=1781335895407(07:31:35) INFO: -_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/namespace_pkgs:test_skips_ignored_directories (cached) PASSED in 0.5s -_bk;t=1781335895408(07:31:35) INFO: -_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_different_package_extras (cached) PASSED in 0.5s -_bk;t=1781335895408(07:31:35) INFO: -_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_different_package_version (cached) PASSED in 0.1s -_bk;t=1781335895408(07:31:35) INFO: -_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_direct_urls_integration (cached) PASSED in 0.0s -_bk;t=1781335895408(07:31:35) INFO: -_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_direct_urls_no_extract (cached) PASSED in 0.3s -_bk;t=1781335895408(07:31:35) INFO: -_bk;t=1781335895408 _bk;t=1781335895408//tests/pypi/parse_requirements:test_dupe_requirements (cached) PASSED in 0.4s -_bk;t=1781335895408(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_env_marker_resolution (cached) PASSED in 0.2s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_extra_pip_args (cached) PASSED in 0.4s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_all_versions (cached) PASSED in 0.4s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_cross_platform (cached) PASSED in 0.6s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_different_versions (cached) PASSED in 0.3s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_get_index_urls_single_py_version (cached) PASSED in 0.7s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_git_sources (cached) PASSED in 0.0s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_multi_os (cached) PASSED in 0.0s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895409 _bk;t=1781335895409//tests/pypi/parse_requirements:test_multi_os_legacy (cached) PASSED in 0.3s -_bk;t=1781335895409(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_optional_hash (cached) PASSED in 0.3s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_overlapping_shas_with_index_results (cached) PASSED in 0.4s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_select_requirement_none_platform (cached) PASSED in 0.9s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements:test_simple (cached) PASSED in 0.1s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_0 (cached) PASSED in 0.3s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_requirements_txt:parse_requirements_txt_tests_test_1 (cached) PASSED in 0.2s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_simpleapi_html:test_index (cached) PASSED in 0.1s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_simpleapi_html:test_sdist (cached) PASSED in 0.3s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_simpleapi_html:test_whls (cached) PASSED in 0.1s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_whl_name:test_multiple_platforms (cached) PASSED in 0.0s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895410 _bk;t=1781335895410//tests/pypi/parse_whl_name:test_real_numpy_wheel (cached) PASSED in 0.4s -_bk;t=1781335895410(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/parse_whl_name:test_simple (cached) PASSED in 0.7s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/parse_whl_name:test_with_build_tag (cached) PASSED in 0.3s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/patch_whl:test_simple (cached) PASSED in 0.2s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/patch_whl:test_simple_local_version (cached) PASSED in 0.5s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_non_version_env_tests (cached) PASSED in 0.5s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_partial_only_extra (cached) PASSED in 0.2s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_platform_version_is_special (cached) PASSED in 0.3s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_version_env_tests (cached) PASSED in 0.5s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:evaluate_with_aliases (cached) PASSED in 0.1s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895411 _bk;t=1781335895411//tests/pypi/pep508:logical_expression_tests (cached) PASSED in 0.2s -_bk;t=1781335895411(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:misc_expressions (cached) PASSED in 0.9s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_all_markers_are_added (cached) PASSED in 0.3s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_can_add_os_specific_deps (cached) PASSED in 0.1s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_can_get_deps_based_on_specific_python_version (cached) PASSED in 0.3s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_deps_are_added_to_more_specialized_platforms (cached) PASSED in 0.5s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_env_defaults (cached) PASSED in 0.2s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_env_freebsd (cached) PASSED in 0.4s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_env_macos (cached) PASSED in 0.2s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_extra_with_conditional_and_unconditional_markers (cached) PASSED in 0.2s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_extras_with_hyphens_are_normalized (cached) PASSED in 0.4s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895412 _bk;t=1781335895412//tests/pypi/pep508:test_include_only_particular_deps (cached) PASSED in 0.1s -_bk;t=1781335895412(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_requirement_line_parsing (cached) PASSED in 0.3s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_self_dependencies_can_come_in_any_order (cached) PASSED in 0.0s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_self_include_deps_from_previously_visited (cached) PASSED in 0.2s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_self_is_ignored (cached) PASSED in 0.2s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_simple_deps (cached) PASSED in 0.1s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:test_span_all_python_versions (cached) PASSED in 0.1s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pep508:tokenize_tests (cached) PASSED in 0.0s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_config_setting_aliases (cached) PASSED in 0.6s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_config_setting_aliases_many (cached) PASSED in 0.2s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_config_settings_exist_legacy (cached) PASSED in 0.2s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_group_aliases (cached) PASSED in 0.0s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895413 _bk;t=1781335895413//tests/pypi/pkg_aliases:test_legacy_aliases (cached) PASSED in 0.3s -_bk;t=1781335895413(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases (cached) PASSED in 0.2s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_empty (cached) PASSED in 0.2s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename (cached) PASSED in 0.2s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pkg_aliases:test_multiplatform_whl_aliases_nofilename_target_platforms (cached) PASSED in 0.1s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_memory_cache_hit (cached) PASSED in 0.5s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_memory_cache_index_urls (cached) PASSED in 0.2s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts (cached) PASSED in 0.2s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_pypi_cache_reads_from_facts_drops_unaccessed_dists (cached) PASSED in 0.3s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895414 _bk;t=1781335895414//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts (cached) PASSED in 0.3s -_bk;t=1781335895414(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_drops_unaccessed (cached) PASSED in 0.3s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_reads_index_urls_from_facts_incomplete (cached) PASSED in 1.0s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_writes_index_urls_to_facts (cached) PASSED in 0.4s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/pypi_cache:test_pypi_cache_writes_to_facts (cached) PASSED in 0.9s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/python_tag:test_with_version (cached) PASSED in 0.2s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/python_tag:test_without_version (cached) PASSED in 0.1s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_aliases_are_created_for_all_wheels (cached) PASSED in 0.4s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_aliases_with_groups (cached) PASSED in 0.4s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_bzlmod_aliases (cached) PASSED in 0.3s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_empty (cached) PASSED in 0.2s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895415 _bk;t=1781335895415//tests/pypi/render_pkg_aliases:test_empty_flag_versions (cached) PASSED in 0.3s -_bk;t=1781335895415(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_get_flag_versions_from_alias_target_platforms (cached) PASSED in 0.2s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_get_python_versions (cached) PASSED in 0.3s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_get_python_versions_with_target_platforms (cached) PASSED in 0.3s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/render_pkg_aliases:test_legacy_aliases (cached) PASSED in 0.1s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/repack_whl:repack_whl_test (cached) PASSED in 1.8s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_fail_download_only_bad_attr (cached) PASSED in 0.2s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_fail_duplicate_platforms (cached) PASSED in 0.2s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_fail_no_requirements (cached) PASSED in 0.2s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_host_only_lockfile (cached) PASSED in 0.3s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_host_only_multiple_os (cached) PASSED in 0.3s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895416 _bk;t=1781335895416//tests/pypi/requirements_files_by_platform:test_host_only_os_with_fallback (cached) PASSED in 0.2s -_bk;t=1781335895416(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_multi_os (cached) PASSED in 0.3s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_multi_os_download_only_platform (cached) PASSED in 0.3s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_os_arch_requirements_with_default (cached) PASSED in 0.2s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_simple (cached) PASSED in 0.4s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_simple_limited (cached) PASSED in 0.4s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/requirements_files_by_platform:test_simple_with_python_version (cached) PASSED in 0.1s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_android (cached) PASSED in 0.3s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_freethreaded_wheels (cached) PASSED in 0.3s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_ignore_unsupported (cached) PASSED in 0.2s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_legacy_manylinux (cached) PASSED in 0.2s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_manylinx_musllinux_pref (cached) PASSED in 0.2s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_match_abi_and_not_py_version (cached) PASSED in 0.3s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_musllinux (cached) PASSED in 0.3s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_musllinux_exact_params (cached) PASSED in 0.5s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_mvs_match (cached) PASSED in 0.2s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895417 _bk;t=1781335895417//tests/pypi/select_whl:test_multiple_mvs_match_override_less_specific (cached) PASSED in 0.4s -_bk;t=1781335895417(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_multiple_mvs_match_override_more_specific (cached) PASSED in 0.5s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_not_select_abi3 (cached) PASSED in 0.2s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_not_select_py2 (cached) PASSED in 0.2s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_pytags_all_possible (cached) PASSED in 0.3s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_by_supported_cp_version (cached) PASSED in 0.4s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_by_supported_py_version (cached) PASSED in 0.2s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_cp312 (cached) PASSED in 0.5s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_select_filename_with_many_tags (cached) PASSED in 0.3s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_simplest (cached) PASSED in 0.3s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/select_whl:test_supported_cp_version_manylinux (cached) PASSED in 0.4s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895418 _bk;t=1781335895418//tests/pypi/simpleapi_download:test_download_envsubst_url (cached) PASSED in 0.2s -_bk;t=1781335895418(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_download_url (cached) PASSED in 0.6s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_download_url_parallel (cached) PASSED in 0.3s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_download_url_parallel_with_overrides (cached) PASSED in 0.4s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_index_overrides (cached) PASSED in 0.5s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/simpleapi_download:test_simple (cached) PASSED in 0.2s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/urllib:test_absolute_url (cached) PASSED in 0.1s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/urllib:test_strip_empty_path_segments (cached) PASSED in 0.4s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/version_from_filename:test_sdist_version_extraction (cached) PASSED in 0.3s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/version_from_filename:test_sdist_version_extraction_fail (cached) PASSED in 0.6s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/version_from_filename:test_wheel_version_extraction (cached) PASSED in 0.4s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895419 _bk;t=1781335895419//tests/pypi/whl_installer:arguments_test (cached) PASSED in 1.2s -_bk;t=1781335895419(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library:whl_library_extras_test (cached) PASSED in 1.0s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_copy (cached) PASSED in 0.2s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_filegroups (cached) PASSED in 0.2s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_group (cached) PASSED in 0.2s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_platforms (cached) PASSED in 0.3s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_sdist_excludes_record (cached) PASSED in 0.4s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_whl_and_library_deps (cached) PASSED in 0.1s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_library_targets:test_whl_and_library_deps_from_requires (cached) PASSED in 0.9s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_contains_dist_info_but_no_metadata (cached) PASSED in 0.3s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_contains_metadata (cached) PASSED in 0.4s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_empty (cached) PASSED in 0.7s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_parse_entry_points (cached) PASSED in 0.7s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895420 _bk;t=1781335895420//tests/pypi/whl_metadata:test_parse_entry_points_deduplicate (cached) PASSED in 0.4s -_bk;t=1781335895420(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_all (cached) PASSED in 0.4s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_basic (cached) PASSED in 0.3s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_invalid (cached) PASSED in 0.2s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_metadata:test_parse_metadata_multiline_license (cached) PASSED in 0.2s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_name_with_percent (cached) PASSED in 0.3s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_name_with_plus (cached) PASSED in 0.4s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_platform_whl (cached) PASSED in 0.7s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_sdist (cached) PASSED in 0.2s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_sdist_no_sha (cached) PASSED in 0.5s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_simple (cached) PASSED in 0.3s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_repo_name:test_simple_no_sha (cached) PASSED in 0.2s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_target_platforms:can_parse_existing_tags (cached) PASSED in 0.2s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895421 _bk;t=1781335895421//tests/pypi/whl_target_platforms:test_simple (cached) PASSED in 0.2s -_bk;t=1781335895421(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/pypi/whl_target_platforms:test_with_abi (cached) PASSED in 0.5s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_add_new_version (cached) PASSED in 0.2s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_add_patches (cached) PASSED in 0.2s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_add_target_settings (cached) PASSED in 0.2s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_auth_overrides (cached) PASSED in 0.3s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_defaults (cached) PASSED in 0.3s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_defaults_env (cached) PASSED in 0.1s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_defaults_file (cached) PASSED in 0.4s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_rules_python_when_rules_python_is_not_root (cached) PASSED in 0.2s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_rules_python_when_rules_python_is_root (cached) PASSED in 0.6s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_from_single_toolchain (cached) PASSED in 0.4s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895422 _bk;t=1781335895422//tests/python:test_default_with_patch_version (cached) PASSED in 0.0s -_bk;t=1781335895422(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_defaults_overrides_single_toolchain (cached) PASSED in 0.6s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_defaults_overrides_toolchains_setting_is_default (cached) PASSED in 0.2s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_fail_two_overrides (cached) PASSED in 0.1s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_first_occurance_of_the_toolchain_wins (cached) PASSED in 0.1s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_ignore_unsupported_versions (cached) PASSED in 0.3s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_register_all_versions (cached) PASSED in 0.7s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_single_version_override_errors (cached) PASSED in 0.4s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_single_version_platform_override_errors (cached) PASSED in 0.3s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python:test_toolchain_ordering (cached) PASSED in 0.6s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python_bzlmod_ext:test_dynamic_manifest_files (cached) PASSED in 0.2s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895423 _bk;t=1781335895423//tests/python_bzlmod_ext:test_dynamic_manifest_toolchains (cached) PASSED in 0.2s -_bk;t=1781335895423(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/python_bzlmod_ext:test_parse_filename_baseline (cached) PASSED in 0.2s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/python_bzlmod_ext:test_parse_sha_manifest (cached) PASSED in 0.1s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/repl:repl_with_dep_test (cached) PASSED in 3.8s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/repl:repl_without_dep_test (cached) PASSED in 4.1s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/repo_utils:test_get_platforms_os_name (cached) PASSED in 0.2s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/repo_utils:test_is_relative_to (cached) PASSED in 0.1s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/repo_utils:test_relative_to (cached) PASSED in 0.1s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:pathlib_min_python_test (cached) PASSED in 1.6s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:pathlib_test (cached) PASSED in 2.1s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:publishing (cached) PASSED in 0.3s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:runfiles_min_python_test (cached) PASSED in 2.5s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895424 _bk;t=1781335895424//tests/runfiles:runfiles_test (cached) PASSED in 1.2s -_bk;t=1781335895424(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/runtime_env_toolchain:bootstrap_script_test (cached) PASSED in 1.6s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/runtime_env_toolchain:test_runtime_env_toolchain_matches (cached) PASSED in 0.3s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/runtime_env_toolchain:toolchain_runs_test (cached) PASSED in 1.0s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_file (cached) PASSED in 0.5s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_glob (cached) PASSED in 0.6s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_mctx (cached) PASSED in 0.5s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_module_and_tags (cached) PASSED in 0.6s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_path (cached) PASSED in 0.6s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895425 _bk;t=1781335895425//tests/support/mocks:test_rctx (cached) PASSED in 0.3s -_bk;t=1781335895425(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/support/mocks:test_select (cached) PASSED in 0.6s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/text_util:test_render_alias (cached) PASSED in 0.7s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/text_util:test_render_tuple_dict (cached) PASSED in 0.3s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:build_test (cached) PASSED in 0.1s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:custom_platform_toolchain_test (cached) PASSED in 0.9s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.11_test (cached) PASSED in 1.2s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.12_test (cached) PASSED in 1.4s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.13_test (cached) PASSED in 0.8s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.14_test (cached) PASSED in 1.7s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.15_test (cached) PASSED in 1.4s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.16_test (cached) PASSED in 1.4s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895426 _bk;t=1781335895426//tests/toolchains:python_3.10.18_test (cached) PASSED in 1.4s -_bk;t=1781335895426(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.19_test (cached) PASSED in 1.6s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.20_test (cached) PASSED in 1.6s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.2_test (cached) PASSED in 0.8s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.4_test (cached) PASSED in 0.8s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.6_test (cached) PASSED in 0.8s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.8_test (cached) PASSED in 1.5s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.10.9_test (cached) PASSED in 1.2s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.10_test (cached) PASSED in 1.2s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.13_test (cached) PASSED in 1.0s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.14_test (cached) PASSED in 1.6s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.15_test (cached) PASSED in 1.4s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.1_test (cached) PASSED in 1.2s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895427 _bk;t=1781335895427//tests/toolchains:python_3.11.3_test (cached) PASSED in 1.5s -_bk;t=1781335895427(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.4_test (cached) PASSED in 1.5s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.5_test (cached) PASSED in 0.9s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.6_test (cached) PASSED in 0.9s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.7_test (cached) PASSED in 1.3s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.8_test (cached) PASSED in 1.6s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.11.9_test (cached) PASSED in 1.4s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.0_test (cached) PASSED in 1.8s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.11_test (cached) PASSED in 1.0s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.12_test (cached) PASSED in 1.2s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.13_test (cached) PASSED in 1.7s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.1_test (cached) PASSED in 1.1s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.2_test (cached) PASSED in 2.1s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.3_test (cached) PASSED in 1.0s -_bk;t=1781335895428(07:31:35) INFO: -_bk;t=1781335895428 _bk;t=1781335895428//tests/toolchains:python_3.12.4_test (cached) PASSED in 1.7s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.12.7_test (cached) PASSED in 1.5s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.12.8_test (cached) PASSED in 1.6s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.12.9_test (cached) PASSED in 0.8s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.0_test (cached) PASSED in 1.5s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.10_test (cached) PASSED in 1.4s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.11_test (cached) PASSED in 1.1s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.12_test (cached) PASSED in 1.1s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.13_test (cached) PASSED in 1.0s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.1_test (cached) PASSED in 1.6s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.2_test (cached) PASSED in 1.0s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.4_test (cached) PASSED in 1.2s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895429 _bk;t=1781335895429//tests/toolchains:python_3.13.6_test (cached) PASSED in 1.0s -_bk;t=1781335895429(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.13.9_test (cached) PASSED in 1.0s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.0_test (cached) PASSED in 0.8s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.1_test (cached) PASSED in 1.6s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.2_test (cached) PASSED in 1.3s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.3_test (cached) PASSED in 1.2s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.14.4_test (cached) PASSED in 1.5s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.15.0a1_test (cached) PASSED in 1.4s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.15.0a2_test (cached) PASSED in 1.1s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.15.0a8_test (cached) PASSED in 1.1s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains:python_3.9.25_test (cached) PASSED in 1.1s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin (cached) PASSED in 0.3s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc (cached) PASSED in 0.1s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895430 _bk;t=1781335895430//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335895430(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu (cached) PASSED in 0.0s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.0s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin (cached) PASSED in 0.9s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.6s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc (cached) PASSED in 0.8s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a2_x86_64_unknown_linux_musl (cached) PASSED in 0.7s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin (cached) PASSED in 0.5s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_apple_darwin_freethreaded (cached) PASSED in 0.6s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc (cached) PASSED in 0.6s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_pc_windows_msvc_freethreaded (cached) PASSED in 0.2s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895431 _bk;t=1781335895431//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu (cached) PASSED in 0.2s -_bk;t=1781335895431(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_aarch64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.8s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin (cached) PASSED in 0.5s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_apple_darwin_freethreaded (cached) PASSED in 0.3s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc (cached) PASSED in 0.4s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_pc_windows_msvc_freethreaded (cached) PASSED in 0.5s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu (cached) PASSED in 0.3s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_gnu_freethreaded (cached) PASSED in 0.7s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/multi_platform_resolution:test_3_15_0a8_x86_64_unknown_linux_musl (cached) PASSED in 0.0s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/toolchains/transitions:test_default (cached) PASSED in 0.8s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/tools:wheelmaker_test (cached) PASSED in 2.3s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/private/release:release_test (cached) PASSED in 1.5s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/zipapp:exe_zip_maker_test (cached) PASSED in 1.9s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/zipapp:zip_main_maker_test (cached) PASSED in 1.3s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895432 _bk;t=1781335895432//tests/tools/zipapp:zipper_test (cached) PASSED in 1.6s -_bk;t=1781335895432(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock:requirements_run_tests (cached) PASSED in 3.2s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock:requirements_test (cached) PASSED in 0.6s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock/pyproject_toml:requirements_test (cached) PASSED in 0.3s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/lock/workspaces:requirements_test (cached) PASSED in 0.5s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/toolchain:uv_help_test (cached) PASSED in 1.1s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_complex_configuring (cached) PASSED in 0.5s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_default_building (cached) PASSED in 0.6s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_defaults (cached) PASSED in 0.3s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_manual_url_spec (cached) PASSED in 0.2s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_non_rules_python_non_root_is_ignored (cached) PASSED in 0.2s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_only_defaults (cached) PASSED in 0.2s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895433 _bk;t=1781335895433//tests/uv/uv:test_rules_python_does_not_take_precedence (cached) PASSED in 0.2s -_bk;t=1781335895433(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/uv/uv:test_toolchain_precedence (cached) PASSED in 1.0s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:importlib_metadata_test (cached) PASSED in 1.3s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:py_binary_other_module_test (cached) PASSED in 0.8s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:shared_lib_loading_test (cached) PASSED in 3.8s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:venvs_site_packages_libs_test (cached) PASSED in 1.4s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs:whl_scripts_runnable_test (cached) PASSED in 1.7s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_complex_namespace_packages (cached) PASSED in 0.1s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_conflict_merging (cached) PASSED in 0.2s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_empty_and_trivial_inputs (cached) PASSED in 0.1s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_malformed_entry (cached) PASSED in 0.3s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_multiple_venv_symlink_kinds (cached) PASSED in 0.3s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_complex (cached) PASSED in 0.2s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_implicit_namespace_packages (cached) PASSED in 0.2s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895434 _bk;t=1781335895434//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_namespace_packages (cached) PASSED in 0.2s -_bk;t=1781335895434(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_pkgutil_whls (cached) PASSED in 0.5s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_optimized_grouping_single_toplevel (cached) PASSED in 0.1s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_package_version_filtering (cached) PASSED in 0.3s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/venv_site_packages_libs/app_files_building:test_shared_library_symlinking (cached) PASSED in 0.2s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version:test_normalization (cached) PASSED in 0.3s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version:test_normalize_local (cached) PASSED in 0.7s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version:test_ordering (cached) PASSED in 0.2s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_complex_version (cached) PASSED in 0.3s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_major_minor_patch_version (cached) PASSED in 0.1s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_major_minor_version (cached) PASSED in 0.4s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/version_label:test_version_label_from_major_minor_version_custom_sep (cached) PASSED in 0.3s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/whl_filegroup:extract_wheel_files_test (cached) PASSED in 0.8s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/whl_filegroup:test_runfiles (cached) PASSED in 0.4s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895435 _bk;t=1781335895435//tests/whl_filegroup:whl_headers_test (cached) PASSED in 0.4s -_bk;t=1781335895435(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/whl_with_build_files:verify_files_test (cached) PASSED in 0.9s -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/base_rules/py_binary:test_py_info_propagation_builtin SKIPPED -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/base_rules/py_library:test_py_info_propagation_builtin SKIPPED -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/base_rules/py_test:test_py_info_propagation_builtin SKIPPED -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/cc/current_py_cc_headers:abi3_headers_linkage_test_py SKIPPED -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/py_runtime_pair:test_builtin_py_info_accepted SKIPPED -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/build_data:build_data_test PASSED in 0.6s -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436//tests/exec_toolchain_matching:test_exec_matches_target_python_version FAILED in 3 out of 3 in 0.3s -_bk;t=1781335895436 Stats over 3 runs: max = 0.3s, min = 0.0s, avg = 0.1s, dev = 0.1s -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895436 _bk;t=1781335895436 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test.log -_bk;t=1781335895436(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_1.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/exec_toolchain_matching/test_exec_matches_target_python_version/test_attempts/attempt_2.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437//tests/toolchains/transitions:test_full_version FAILED in 3 out of 3 in 0.3s -_bk;t=1781335895437 Stats over 3 runs: max = 0.3s, min = 0.2s, avg = 0.3s, dev = 0.0s -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_1.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_full_version/test_attempts/attempt_2.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437//tests/toolchains/transitions:test_minor_versions FAILED in 3 out of 3 in 0.4s -_bk;t=1781335895437 Stats over 3 runs: max = 0.4s, min = 0.2s, avg = 0.3s, dev = 0.1s -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_1.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895437 _bk;t=1781335895437 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/toolchains/transitions/test_minor_versions/test_attempts/attempt_2.log -_bk;t=1781335895437(07:31:35) INFO: -_bk;t=1781335895438 _bk;t=1781335895438 -_bk;t=1781335895438(07:31:35) INFO: -_bk;t=1781335895438 _bk;t=1781335895438Executed 4 out of 590 tests: 582 tests pass, 3 fail locally, and 5 were skipped. -_bk;t=1781335895438(07:31:35) INFO: -_bk;t=1781335895688 _bk;t=1781335895689(07:31:35) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/67eae3b6-d4bb-47df-8e18-c383944c297b -_bk;t=1781335895689bazel info output_base -_bk;t=1781335895994WARNING: Option 'incompatible_disallow_struct_provider_syntax' is deprecated -_bk;t=1781335895994WARNING: Option 'incompatible_use_plus_in_repo_names' is deprecated -_bk;t=1781335895994WARNING: Option 'enable_bzlmod' is deprecated -_bk;t=1781335895994WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335895994WARNING: Option 'incompatible_python_disallow_native_rules' is deprecated -_bk;t=1781335895994WARNING: Option 'incompatible_default_to_explicit_init_py' is deprecated -_bk;t=1781335895994INFO: Invocation ID: 1090e986-5dab-404f-b4ea-4e86952b5625 -_bk;t=1781335896051 -_bk;t=1781335896051 -_bk;t=1781335896051--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=1781335896051 -_bk;t=1781335896051 -_bk;t=1781335896051buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=17813358960662026-06-13 07:31:36 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" -_bk;t=17813358960672026-06-13 07:31:36 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration -_bk;t=17813358960672026-06-13 07:31:36 INFO  Creating (0-1)/1 artifacts -_bk;t=1781335896135buildkite-agent artifact upload /tmp/tmp1cesl66b/test_bep.json -_bk;t=17813358961592026-06-13 07:31:36 INFO  Found 1 files that match "/tmp/tmp1cesl66b/test_bep.json" -_bk;t=17813358961602026-06-13 07:31:36 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-639c-45e9-a409-b70bc82f1980"), using your agent configuration -_bk;t=17813358961602026-06-13 07:31:36 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358961802026-06-13 07:31:36 INFO  Uploading 019ebfe4-b04d-4e05-ae6f-9d90cfc26009 var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (177 KiB) -_bk;t=17813358962632026-06-13 07:31:36 INFO  Uploading 019ebfe4-b0a3-432e-bdde-730495b0f5e1 tmp/tmp1cesl66b/test_bep.json (2.9 MiB) -_bk;t=17813358963922026-06-13 07:31:36 INFO  Artifact uploads completed successfully -_bk;t=17813358964982026-06-13 07:31:36 INFO  Artifact uploads completed successfully -_bk;t=1781335896500bazel test failed with exit code 3 -_bk;t=1781335918351^^^ +++ -_bk;t=1781335918351🚨 Error: The command exited with status 3 -_bk;t=1781335918351^^^ +++ -_bk;t=1781335918351user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 -_bk;t=1781335918351~~~ Running plugin docker-buildkite-plugin pre-exit hook -_bk;t=1781335918352$ /etc/buildkite-agent/plugins/bk-docker-h6l7/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log deleted file mode 100644 index 8c46501d28..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log +++ /dev/null @@ -1,742 +0,0 @@ -_bk;t=1781335819946~~~ Running agent environment hook -_bk;t=1781335819946$ /etc/buildkite-agent/hooks/environment -_bk;t=1781335819979# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8" -_bk;t=1781335819979~~~ Preparing plugins -_bk;t=1781335819979# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" -_bk;t=1781335819979$ mktemp -dp /etc/buildkite-agent/plugins -_bk;t=1781335819979# Switching to the temporary plugin directory -_bk;t=1781335819979$ cd /etc/buildkite-agent/plugins/2021881580 -_bk;t=1781335819979$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . -_bk;t=1781335819982Cloning into '.'... -_bk;t=1781335820214POST git-upload-pack (175 bytes) -_bk;t=1781335820253POST git-upload-pack (gzip 3102 to 1570 bytes) -_bk;t=1781335820296remote: Enumerating objects: 2225, done._bk;t=1781335820296 -_bk;t=1781335820296remote: Counting objects: 0% (1/321)_bk;t=1781335820296 remote: Counting objects: 1% (4/321)_bk;t=1781335820296 remote: Counting objects: 2% (7/321)_bk;t=1781335820296 remote: Counting objects: 3% (10/321)_bk;t=1781335820296 remote: Counting objects: 4% (13/321)_bk;t=1781335820296 remote: Counting objects: 5% (17/321)_bk;t=1781335820296 remote: Counting objects: 6% (20/321)_bk;t=1781335820296 remote: Counting objects: 7% (23/321)_bk;t=1781335820296 remote: Counting objects: 8% (26/321)_bk;t=1781335820296 remote: Counting objects: 9% (29/321)_bk;t=1781335820296 remote: Counting objects: 10% (33/321)_bk;t=1781335820296 remote: Counting objects: 11% (36/321)_bk;t=1781335820296 remote: Counting objects: 12% (39/321)_bk;t=1781335820296 remote: Counting objects: 13% (42/321)_bk;t=1781335820296 remote: Counting objects: 14% (45/321)_bk;t=1781335820296 remote: Counting objects: 15% (49/321)_bk;t=1781335820296 remote: Counting objects: 16% (52/321)_bk;t=1781335820296 remote: Counting objects: 17% (55/321)_bk;t=1781335820296 remote: Counting objects: 18% (58/321)_bk;t=1781335820296 remote: Counting objects: 19% (61/321)_bk;t=1781335820296 remote: Counting objects: 20% (65/321)_bk;t=1781335820296 remote: Counting objects: 21% (68/321)_bk;t=1781335820296 remote: Counting objects: 22% (71/321)_bk;t=1781335820296 remote: Counting objects: 23% (74/321)_bk;t=1781335820296 remote: Counting objects: 24% (78/321)_bk;t=1781335820296 remote: Counting objects: 25% (81/321)_bk;t=1781335820296 remote: Counting objects: 26% (84/321)_bk;t=1781335820296 remote: Counting objects: 27% (87/321)_bk;t=1781335820296 remote: Counting objects: 28% (90/321)_bk;t=1781335820296 remote: Counting objects: 29% (94/321)_bk;t=1781335820296 remote: Counting objects: 30% (97/321)_bk;t=1781335820296 remote: Counting objects: 31% (100/321)_bk;t=1781335820296 remote: Counting objects: 32% (103/321)_bk;t=1781335820296 remote: Counting objects: 33% (106/321)_bk;t=1781335820296 remote: Counting objects: 34% (110/321)_bk;t=1781335820296 remote: Counting objects: 35% (113/321)_bk;t=1781335820296 remote: Counting objects: 36% (116/321)_bk;t=1781335820296 remote: Counting objects: 37% (119/321)_bk;t=1781335820296 remote: Counting objects: 38% (122/321)_bk;t=1781335820296 remote: Counting objects: 39% (126/321)_bk;t=1781335820296 remote: Counting objects: 40% (129/321)_bk;t=1781335820296 remote: Counting objects: 41% (132/321)_bk;t=1781335820296 remote: Counting objects: 42% (135/321)_bk;t=1781335820296 remote: Counting objects: 43% (139/321)_bk;t=1781335820296 remote: Counting objects: 44% (142/321)_bk;t=1781335820296 remote: Counting objects: 45% (145/321)_bk;t=1781335820296 remote: Counting objects: 46% (148/321)_bk;t=1781335820296 remote: Counting objects: 47% (151/321)_bk;t=1781335820296 remote: Counting objects: 48% (155/321)_bk;t=1781335820296 remote: Counting objects: 49% (158/321)_bk;t=1781335820296 remote: Counting objects: 50% (161/321)_bk;t=1781335820296 remote: Counting objects: 51% (164/321)_bk;t=1781335820296 remote: Counting objects: 52% (167/321)_bk;t=1781335820296 remote: Counting objects: 53% (171/321)_bk;t=1781335820296 remote: Counting objects: 54% (174/321)_bk;t=1781335820296 remote: Counting objects: 55% (177/321)_bk;t=1781335820296 remote: Counting objects: 56% (180/321)_bk;t=1781335820296 remote: Counting objects: 57% (183/321)_bk;t=1781335820296 remote: Counting objects: 58% (187/321)_bk;t=1781335820296 remote: Counting objects: 59% (190/321)_bk;t=1781335820296 remote: Counting objects: 60% (193/321)_bk;t=1781335820296 remote: Counting objects: 61% (196/321)_bk;t=1781335820296 remote: Counting objects: 62% (200/321)_bk;t=1781335820296 remote: Counting objects: 63% (203/321)_bk;t=1781335820296 remote: Counting objects: 64% (206/321)_bk;t=1781335820296 remote: Counting objects: 65% (209/321)_bk;t=1781335820296 remote: Counting objects: 66% (212/321)_bk;t=1781335820296 remote: Counting objects: 67% (216/321)_bk;t=1781335820296 remote: Counting objects: 68% (219/321)_bk;t=1781335820296 remote: Counting objects: 69% (222/321)_bk;t=1781335820296 remote: Counting objects: 70% (225/321)_bk;t=1781335820296 remote: Counting objects: 71% (228/321)_bk;t=1781335820296 remote: Counting objects: 72% (232/321)_bk;t=1781335820296 remote: Counting objects: 73% (235/321)_bk;t=1781335820296 remote: Counting objects: 74% (238/321)_bk;t=1781335820296 remote: Counting objects: 75% (241/321)_bk;t=1781335820296 remote: Counting objects: 76% (244/321)_bk;t=1781335820296 remote: Counting objects: 77% (248/321)_bk;t=1781335820296 remote: Counting objects: 78% (251/321)_bk;t=1781335820296 remote: Counting objects: 79% (254/321)_bk;t=1781335820296 remote: Counting objects: 80% (257/321)_bk;t=1781335820296 remote: Counting objects: 81% (261/321)_bk;t=1781335820296 remote: Counting objects: 82% (264/321)_bk;t=1781335820296 remote: Counting objects: 83% (267/321)_bk;t=1781335820296 remote: Counting objects: 84% (270/321)_bk;t=1781335820296 remote: Counting objects: 85% (273/321)_bk;t=1781335820296 remote: Counting objects: 86% (277/321)_bk;t=1781335820296 remote: Counting objects: 87% (280/321)_bk;t=1781335820296 remote: Counting objects: 88% (283/321)_bk;t=1781335820296 remote: Counting objects: 89% (286/321)_bk;t=1781335820296 remote: Counting objects: 90% (289/321)_bk;t=1781335820296 remote: Counting objects: 91% (293/321)_bk;t=1781335820296 remote: Counting objects: 92% (296/321)_bk;t=1781335820296 remote: Counting objects: 93% (299/321)_bk;t=1781335820296 remote: Counting objects: 94% (302/321)_bk;t=1781335820296 remote: Counting objects: 95% (305/321)_bk;t=1781335820296 remote: Counting objects: 96% (309/321)_bk;t=1781335820296 remote: Counting objects: 97% (312/321)_bk;t=1781335820296 remote: Counting objects: 98% (315/321)_bk;t=1781335820296 remote: Counting objects: 99% (318/321)_bk;t=1781335820296 remote: Counting objects: 100% (321/321)_bk;t=1781335820296 remote: Counting objects: 100% (321/321), done._bk;t=1781335820296 -_bk;t=1781335820296remote: Compressing objects: 0% (1/150)_bk;t=1781335820296 remote: Compressing objects: 1% (2/150)_bk;t=1781335820296 remote: Compressing objects: 2% (3/150)_bk;t=1781335820296 remote: Compressing objects: 3% (5/150)_bk;t=1781335820297 remote: Compressing objects: 4% (6/150)_bk;t=1781335820297 remote: Compressing objects: 5% (8/150)_bk;t=1781335820313 remote: Compressing objects: 6% (9/150)_bk;t=1781335820313 remote: Compressing objects: 7% (11/150)_bk;t=1781335820313 remote: Compressing objects: 8% (12/150)_bk;t=1781335820313 remote: Compressing objects: 9% (14/150)_bk;t=1781335820313 remote: Compressing objects: 10% (15/150)_bk;t=1781335820313 remote: Compressing objects: 11% (17/150)_bk;t=1781335820313 remote: Compressing objects: 12% (18/150)_bk;t=1781335820313 remote: Compressing objects: 13% (20/150)_bk;t=1781335820313 remote: Compressing objects: 14% (21/150)_bk;t=1781335820313 remote: Compressing objects: 15% (23/150)_bk;t=1781335820313 remote: Compressing objects: 16% (24/150)_bk;t=1781335820313 remote: Compressing objects: 17% (26/150)_bk;t=1781335820313 remote: Compressing objects: 18% (27/150)_bk;t=1781335820313 remote: Compressing objects: 19% (29/150)_bk;t=1781335820313 remote: Compressing objects: 20% (30/150)_bk;t=1781335820313 remote: Compressing objects: 21% (32/150)_bk;t=1781335820313 remote: Compressing objects: 22% (33/150)_bk;t=1781335820313 remote: Compressing objects: 23% (35/150)_bk;t=1781335820313 remote: Compressing objects: 24% (36/150)_bk;t=1781335820313 remote: Compressing objects: 25% (38/150)_bk;t=1781335820313 remote: Compressing objects: 26% (39/150)_bk;t=1781335820313 remote: Compressing objects: 27% (41/150)_bk;t=1781335820313 remote: Compressing objects: 28% (42/150)_bk;t=1781335820313 remote: Compressing objects: 29% (44/150)_bk;t=1781335820313 remote: Compressing objects: 30% (45/150)_bk;t=1781335820313 remote: Compressing objects: 31% (47/150)_bk;t=1781335820313 remote: Compressing objects: 32% (48/150)_bk;t=1781335820313 remote: Compressing objects: 33% (50/150)_bk;t=1781335820313 remote: Compressing objects: 34% (51/150)_bk;t=1781335820313 remote: Compressing objects: 35% (53/150)_bk;t=1781335820313 remote: Compressing objects: 36% (54/150)_bk;t=1781335820313 remote: Compressing objects: 37% (56/150)_bk;t=1781335820313 remote: Compressing objects: 38% (57/150)_bk;t=1781335820313 remote: Compressing objects: 39% (59/150)_bk;t=1781335820313 remote: Compressing objects: 40% (60/150)_bk;t=1781335820313 remote: Compressing objects: 41% (62/150)_bk;t=1781335820313 remote: Compressing objects: 42% (63/150)_bk;t=1781335820313 remote: Compressing objects: 43% (65/150)_bk;t=1781335820313 remote: Compressing objects: 44% (66/150)_bk;t=1781335820313 remote: Compressing objects: 45% (68/150)_bk;t=1781335820313 remote: Compressing objects: 46% (69/150)_bk;t=1781335820313 remote: Compressing objects: 47% (71/150)_bk;t=1781335820313 remote: Compressing objects: 48% (72/150)_bk;t=1781335820313 remote: Compressing objects: 49% (74/150)_bk;t=1781335820313 remote: Compressing objects: 50% (75/150)_bk;t=1781335820313 remote: Compressing objects: 51% (77/150)_bk;t=1781335820313 remote: Compressing objects: 52% (78/150)_bk;t=1781335820313 remote: Compressing objects: 53% (80/150)_bk;t=1781335820313 remote: Compressing objects: 54% (81/150)_bk;t=1781335820313 remote: Compressing objects: 55% (83/150)_bk;t=1781335820313 remote: Compressing objects: 56% (84/150)_bk;t=1781335820313 remote: Compressing objects: 57% (86/150)_bk;t=1781335820313 remote: Compressing objects: 58% (87/150)_bk;t=1781335820313 remote: Compressing objects: 59% (89/150)_bk;t=1781335820313 remote: Compressing objects: 60% (90/150)_bk;t=1781335820313 remote: Compressing objects: 61% (92/150)_bk;t=1781335820313 remote: Compressing objects: 62% (93/150)_bk;t=1781335820313 remote: Compressing objects: 63% (95/150)_bk;t=1781335820313 remote: Compressing objects: 64% (96/150)_bk;t=1781335820313 remote: Compressing objects: 65% (98/150)_bk;t=1781335820313 remote: Compressing objects: 66% (99/150)_bk;t=1781335820313 remote: Compressing objects: 67% (101/150)_bk;t=1781335820313 remote: Compressing objects: 68% (102/150)_bk;t=1781335820313 remote: Compressing objects: 69% (104/150)_bk;t=1781335820313 remote: Compressing objects: 70% (105/150)_bk;t=1781335820313 remote: Compressing objects: 71% (107/150)_bk;t=1781335820313 remote: Compressing objects: 72% (108/150)_bk;t=1781335820313 remote: Compressing objects: 73% (110/150)_bk;t=1781335820313 remote: Compressing objects: 74% (111/150)_bk;t=1781335820313 remote: Compressing objects: 75% (113/150)_bk;t=1781335820313 remote: Compressing objects: 76% (114/150)_bk;t=1781335820313 remote: Compressing objects: 77% (116/150)_bk;t=1781335820313 remote: Compressing objects: 78% (117/150)_bk;t=1781335820313 remote: Compressing objects: 79% (119/150)_bk;t=1781335820313 remote: Compressing objects: 80% (120/150)_bk;t=1781335820313 remote: Compressing objects: 81% (122/150)_bk;t=1781335820313 remote: Compressing objects: 82% (123/150)_bk;t=1781335820313 remote: Compressing objects: 83% (125/150)_bk;t=1781335820313 remote: Compressing objects: 84% (126/150)_bk;t=1781335820313 remote: Compressing objects: 85% (128/150)_bk;t=1781335820313 remote: Compressing objects: 86% (129/150)_bk;t=1781335820313 remote: Compressing objects: 87% (131/150)_bk;t=1781335820313 remote: Compressing objects: 88% (132/150)_bk;t=1781335820313 remote: Compressing objects: 89% (134/150)_bk;t=1781335820313 remote: Compressing objects: 90% (135/150)_bk;t=1781335820313 remote: Compressing objects: 91% (137/150)_bk;t=1781335820313 remote: Compressing objects: 92% (138/150)_bk;t=1781335820313 remote: Compressing objects: 93% (140/150)_bk;t=1781335820313 remote: Compressing objects: 94% (141/150)_bk;t=1781335820313 remote: Compressing objects: 95% (143/150)_bk;t=1781335820313 remote: Compressing objects: 96% (144/150)_bk;t=1781335820313 remote: Compressing objects: 97% (146/150)_bk;t=1781335820313 remote: Compressing objects: 98% (147/150)_bk;t=1781335820313 remote: Compressing objects: 99% (149/150)_bk;t=1781335820313 remote: Compressing objects: 100% (150/150)_bk;t=1781335820313 remote: Compressing objects: 100% (150/150), done._bk;t=1781335820313 -_bk;t=1781335820322Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) remote: Total 2225 (delta 206), reused 171 (delta 170), pack-reused 1904 (from 3)_bk;t=1781335820417 -_bk;t=1781335820417Receiving objects: 96% (2136/2225) Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.77 KiB | 5.68 MiB/s, done. -_bk;t=1781335820418Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (89/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (112/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (167/1109) Resolving deltas: 16% (178/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (213/1109) Resolving deltas: 20% (222/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (245/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (307/1109) Resolving deltas: 28% (311/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (356/1109) Resolving deltas: 33% (366/1109) Resolving deltas: 34% (378/1109) Resolving deltas: 35% (389/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (411/1109) Resolving deltas: 38% (422/1109) Resolving deltas: 39% (433/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (468/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (500/1109) Resolving deltas: 46% (511/1109) Resolving deltas: 47% (522/1109) Resolving deltas: 48% (535/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (555/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (600/1109) Resolving deltas: 55% (610/1109) Resolving deltas: 56% (623/1109) Resolving deltas: 57% (633/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (666/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (755/1109) Resolving deltas: 69% (766/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (789/1109) Resolving deltas: 72% (799/1109) Resolving deltas: 73% (810/1109) Resolving deltas: 74% (821/1109) Resolving deltas: 75% (832/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (866/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (921/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (999/1109) Resolving deltas: 91% (1010/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1098/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. -_bk;t=1781335820462# Checking out `v3.8.0` -_bk;t=1781335820462$ git checkout -f v3.8.0 -_bk;t=1781335820467Note: switching to 'v3.8.0'. -_bk;t=1781335820467 -_bk;t=1781335820467You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335820467changes and commit them, and you can discard any commits you make in this -_bk;t=1781335820467state without impacting any branches by switching back to a branch. -_bk;t=1781335820467 -_bk;t=1781335820467If you want to create a new branch to retain commits you create, you may -_bk;t=1781335820467do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335820467 -_bk;t=1781335820467 git switch -c -_bk;t=1781335820467 -_bk;t=1781335820467Or undo this operation with: -_bk;t=1781335820467 -_bk;t=1781335820467 git switch - -_bk;t=1781335820467 -_bk;t=1781335820467Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335820467 -_bk;t=1781335820467HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master -_bk;t=1781335820468# Moving temporary plugin directory to final location -_bk;t=1781335820468$ mv /etc/buildkite-agent/plugins/2021881580 /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 -_bk;t=1781335820468$ cd /var/lib/buildkite-agent/builds -_bk;t=1781335820468~~~ Running agent pre-checkout hook -_bk;t=1781335820468$ /etc/buildkite-agent/hooks/pre-checkout -_bk;t=1781335820484JOB_START_TIME: 1781335820484 -_bk;t=1781335820496Added: -_bk;t=1781335820496+ JOB_START_TIME -_bk;t=1781335820511~~~ Preparing working directory -_bk;t=1781335820511# Creating "/var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python" -_bk;t=1781335820511$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python -_bk;t=1781335820511$ cd /var/lib/gitmirrors -_bk;t=1781335820521# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335820522# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously -_bk;t=1781335820522$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head -_bk;t=1781335820762remote: Enumerating objects: 2513, done._bk;t=1781335820762 -_bk;t=1781335820762remote: Counting objects: 0% (1/1602)_bk;t=1781335820762 remote: Counting objects: 1% (17/1602)_bk;t=1781335820762 remote: Counting objects: 2% (33/1602)_bk;t=1781335820762 remote: Counting objects: 3% (49/1602)_bk;t=1781335820762 remote: Counting objects: 4% (65/1602)_bk;t=1781335820762 remote: Counting objects: 5% (81/1602)_bk;t=1781335820762 remote: Counting objects: 6% (97/1602)_bk;t=1781335820762 remote: Counting objects: 7% (113/1602)_bk;t=1781335820762 remote: Counting objects: 8% (129/1602)_bk;t=1781335820762 remote: Counting objects: 9% (145/1602)_bk;t=1781335820762 remote: Counting objects: 10% (161/1602)_bk;t=1781335820762 remote: Counting objects: 11% (177/1602)_bk;t=1781335820762 remote: Counting objects: 12% (193/1602)_bk;t=1781335820762 remote: Counting objects: 13% (209/1602)_bk;t=1781335820762 remote: Counting objects: 14% (225/1602)_bk;t=1781335820762 remote: Counting objects: 15% (241/1602)_bk;t=1781335820762 remote: Counting objects: 16% (257/1602)_bk;t=1781335820762 remote: Counting objects: 17% (273/1602)_bk;t=1781335820762 remote: Counting objects: 18% (289/1602)_bk;t=1781335820762 remote: Counting objects: 19% (305/1602)_bk;t=1781335820762 remote: Counting objects: 20% (321/1602)_bk;t=1781335820762 remote: Counting objects: 21% (337/1602)_bk;t=1781335820762 remote: Counting objects: 22% (353/1602)_bk;t=1781335820762 remote: Counting objects: 23% (369/1602)_bk;t=1781335820762 remote: Counting objects: 24% (385/1602)_bk;t=1781335820762 remote: Counting objects: 25% (401/1602)_bk;t=1781335820762 remote: Counting objects: 26% (417/1602)_bk;t=1781335820762 remote: Counting objects: 27% (433/1602)_bk;t=1781335820762 remote: Counting objects: 28% (449/1602)_bk;t=1781335820762 remote: Counting objects: 29% (465/1602)_bk;t=1781335820762 remote: Counting objects: 30% (481/1602)_bk;t=1781335820762 remote: Counting objects: 31% (497/1602)_bk;t=1781335820762 remote: Counting objects: 32% (513/1602)_bk;t=1781335820762 remote: Counting objects: 33% (529/1602)_bk;t=1781335820762 remote: Counting objects: 34% (545/1602)_bk;t=1781335820762 remote: Counting objects: 35% (561/1602)_bk;t=1781335820762 remote: Counting objects: 36% (577/1602)_bk;t=1781335820762 remote: Counting objects: 37% (593/1602)_bk;t=1781335820762 remote: Counting objects: 38% (609/1602)_bk;t=1781335820762 remote: Counting objects: 39% (625/1602)_bk;t=1781335820762 remote: Counting objects: 40% (641/1602)_bk;t=1781335820762 remote: Counting objects: 41% (657/1602)_bk;t=1781335820762 remote: Counting objects: 42% (673/1602)_bk;t=1781335820762 remote: Counting objects: 43% (689/1602)_bk;t=1781335820762 remote: Counting objects: 44% (705/1602)_bk;t=1781335820762 remote: Counting objects: 45% (721/1602)_bk;t=1781335820762 remote: Counting objects: 46% (737/1602)_bk;t=1781335820762 remote: Counting objects: 47% (753/1602)_bk;t=1781335820762 remote: Counting objects: 48% (769/1602)_bk;t=1781335820762 remote: Counting objects: 49% (785/1602)_bk;t=1781335820763 remote: Counting objects: 50% (801/1602)_bk;t=1781335820763 remote: Counting objects: 51% (818/1602)_bk;t=1781335820763 remote: Counting objects: 52% (834/1602)_bk;t=1781335820763 remote: Counting objects: 53% (850/1602)_bk;t=1781335820763 remote: Counting objects: 54% (866/1602)_bk;t=1781335820763 remote: Counting objects: 55% (882/1602)_bk;t=1781335820763 remote: Counting objects: 56% (898/1602)_bk;t=1781335820763 remote: Counting objects: 57% (914/1602)_bk;t=1781335820763 remote: Counting objects: 58% (930/1602)_bk;t=1781335820763 remote: Counting objects: 59% (946/1602)_bk;t=1781335820763 remote: Counting objects: 60% (962/1602)_bk;t=1781335820763 remote: Counting objects: 61% (978/1602)_bk;t=1781335820763 remote: Counting objects: 62% (994/1602)_bk;t=1781335820763 remote: Counting objects: 63% (1010/1602)_bk;t=1781335820763 remote: Counting objects: 64% (1026/1602)_bk;t=1781335820763 remote: Counting objects: 65% (1042/1602)_bk;t=1781335820763 remote: Counting objects: 66% (1058/1602)_bk;t=1781335820763 remote: Counting objects: 67% (1074/1602)_bk;t=1781335820763 remote: Counting objects: 68% (1090/1602)_bk;t=1781335820763 remote: Counting objects: 69% (1106/1602)_bk;t=1781335820763 remote: Counting objects: 70% (1122/1602)_bk;t=1781335820763 remote: Counting objects: 71% (1138/1602)_bk;t=1781335820763 remote: Counting objects: 72% (1154/1602)_bk;t=1781335820763 remote: Counting objects: 73% (1170/1602)_bk;t=1781335820763 remote: Counting objects: 74% (1186/1602)_bk;t=1781335820763 remote: Counting objects: 75% (1202/1602)_bk;t=1781335820763 remote: Counting objects: 76% (1218/1602)_bk;t=1781335820763 remote: Counting objects: 77% (1234/1602)_bk;t=1781335820763 remote: Counting objects: 78% (1250/1602)_bk;t=1781335820763 remote: Counting objects: 79% (1266/1602)_bk;t=1781335820763 remote: Counting objects: 80% (1282/1602)_bk;t=1781335820763 remote: Counting objects: 81% (1298/1602)_bk;t=1781335820763 remote: Counting objects: 82% (1314/1602)_bk;t=1781335820763 remote: Counting objects: 83% (1330/1602)_bk;t=1781335820763 remote: Counting objects: 84% (1346/1602)_bk;t=1781335820763 remote: Counting objects: 85% (1362/1602)_bk;t=1781335820763 remote: Counting objects: 86% (1378/1602)_bk;t=1781335820763 remote: Counting objects: 87% (1394/1602)_bk;t=1781335820763 remote: Counting objects: 88% (1410/1602)_bk;t=1781335820763 remote: Counting objects: 89% (1426/1602)_bk;t=1781335820763 remote: Counting objects: 90% (1442/1602)_bk;t=1781335820763 remote: Counting objects: 91% (1458/1602)_bk;t=1781335820763 remote: Counting objects: 92% (1474/1602)_bk;t=1781335820763 remote: Counting objects: 93% (1490/1602)_bk;t=1781335820763 remote: Counting objects: 94% (1506/1602)_bk;t=1781335820763 remote: Counting objects: 95% (1522/1602)_bk;t=1781335820763 remote: Counting objects: 96% (1538/1602)_bk;t=1781335820763 remote: Counting objects: 97% (1554/1602)_bk;t=1781335820763 remote: Counting objects: 98% (1570/1602)_bk;t=1781335820763 remote: Counting objects: 99% (1586/1602)_bk;t=1781335820763 remote: Counting objects: 100% (1602/1602)_bk;t=1781335820763 remote: Counting objects: 100% (1602/1602), done._bk;t=1781335820763 -_bk;t=1781335820763remote: Compressing objects: 0% (1/449)_bk;t=1781335820763 remote: Compressing objects: 1% (5/449)_bk;t=1781335820763 remote: Compressing objects: 2% (9/449)_bk;t=1781335820763 remote: Compressing objects: 3% (14/449)_bk;t=1781335820763 remote: Compressing objects: 4% (18/449)_bk;t=1781335820763 remote: Compressing objects: 5% (23/449)_bk;t=1781335820763 remote: Compressing objects: 6% (27/449)_bk;t=1781335820763 remote: Compressing objects: 7% (32/449)_bk;t=1781335820763 remote: Compressing objects: 8% (36/449)_bk;t=1781335820763 remote: Compressing objects: 9% (41/449)_bk;t=1781335820763 remote: Compressing objects: 10% (45/449)_bk;t=1781335820763 remote: Compressing objects: 11% (50/449)_bk;t=1781335820763 remote: Compressing objects: 12% (54/449)_bk;t=1781335820763 remote: Compressing objects: 13% (59/449)_bk;t=1781335820763 remote: Compressing objects: 14% (63/449)_bk;t=1781335820763 remote: Compressing objects: 15% (68/449)_bk;t=1781335820772 remote: Compressing objects: 16% (72/449)_bk;t=1781335820772 remote: Compressing objects: 17% (77/449)_bk;t=1781335820772 remote: Compressing objects: 18% (81/449)_bk;t=1781335820772 remote: Compressing objects: 19% (86/449)_bk;t=1781335820772 remote: Compressing objects: 20% (90/449)_bk;t=1781335820772 remote: Compressing objects: 21% (95/449)_bk;t=1781335820772 remote: Compressing objects: 22% (99/449)_bk;t=1781335820772 remote: Compressing objects: 23% (104/449)_bk;t=1781335820772 remote: Compressing objects: 24% (108/449)_bk;t=1781335820772 remote: Compressing objects: 25% (113/449)_bk;t=1781335820772 remote: Compressing objects: 26% (117/449)_bk;t=1781335820772 remote: Compressing objects: 27% (122/449)_bk;t=1781335820772 remote: Compressing objects: 28% (126/449)_bk;t=1781335820772 remote: Compressing objects: 29% (131/449)_bk;t=1781335820772 remote: Compressing objects: 30% (135/449)_bk;t=1781335820772 remote: Compressing objects: 31% (140/449)_bk;t=1781335820772 remote: Compressing objects: 32% (144/449)_bk;t=1781335820772 remote: Compressing objects: 33% (149/449)_bk;t=1781335820772 remote: Compressing objects: 34% (153/449)_bk;t=1781335820772 remote: Compressing objects: 35% (158/449)_bk;t=1781335820772 remote: Compressing objects: 36% (162/449)_bk;t=1781335820772 remote: Compressing objects: 37% (167/449)_bk;t=1781335820772 remote: Compressing objects: 38% (171/449)_bk;t=1781335820772 remote: Compressing objects: 39% (176/449)_bk;t=1781335820772 remote: Compressing objects: 40% (180/449)_bk;t=1781335820772 remote: Compressing objects: 41% (185/449)_bk;t=1781335820772 remote: Compressing objects: 42% (189/449)_bk;t=1781335820772 remote: Compressing objects: 43% (194/449)_bk;t=1781335820772 remote: Compressing objects: 44% (198/449)_bk;t=1781335820772 remote: Compressing objects: 45% (203/449)_bk;t=1781335820772 remote: Compressing objects: 46% (207/449)_bk;t=1781335820772 remote: Compressing objects: 47% (212/449)_bk;t=1781335820772 remote: Compressing objects: 48% (216/449)_bk;t=1781335820772 remote: Compressing objects: 49% (221/449)_bk;t=1781335820772 remote: Compressing objects: 50% (225/449)_bk;t=1781335820772 remote: Compressing objects: 51% (229/449)_bk;t=1781335820772 remote: Compressing objects: 52% (234/449)_bk;t=1781335820772 remote: Compressing objects: 53% (238/449)_bk;t=1781335820772 remote: Compressing objects: 54% (243/449)_bk;t=1781335820772 remote: Compressing objects: 55% (247/449)_bk;t=1781335820772 remote: Compressing objects: 56% (252/449)_bk;t=1781335820772 remote: Compressing objects: 57% (256/449)_bk;t=1781335820772 remote: Compressing objects: 58% (261/449)_bk;t=1781335820772 remote: Compressing objects: 59% (265/449)_bk;t=1781335820772 remote: Compressing objects: 60% (270/449)_bk;t=1781335820772 remote: Compressing objects: 61% (274/449)_bk;t=1781335820772 remote: Compressing objects: 62% (279/449)_bk;t=1781335820772 remote: Compressing objects: 63% (283/449)_bk;t=1781335820772 remote: Compressing objects: 64% (288/449)_bk;t=1781335820772 remote: Compressing objects: 65% (292/449)_bk;t=1781335820772 remote: Compressing objects: 66% (297/449)_bk;t=1781335820772 remote: Compressing objects: 67% (301/449)_bk;t=1781335820772 remote: Compressing objects: 68% (306/449)_bk;t=1781335820772 remote: Compressing objects: 69% (310/449)_bk;t=1781335820772 remote: Compressing objects: 70% (315/449)_bk;t=1781335820772 remote: Compressing objects: 71% (319/449)_bk;t=1781335820772 remote: Compressing objects: 72% (324/449)_bk;t=1781335820772 remote: Compressing objects: 73% (328/449)_bk;t=1781335820772 remote: Compressing objects: 74% (333/449)_bk;t=1781335820772 remote: Compressing objects: 75% (337/449)_bk;t=1781335820772 remote: Compressing objects: 76% (342/449)_bk;t=1781335820772 remote: Compressing objects: 77% (346/449)_bk;t=1781335820772 remote: Compressing objects: 78% (351/449)_bk;t=1781335820772 remote: Compressing objects: 79% (355/449)_bk;t=1781335820772 remote: Compressing objects: 80% (360/449)_bk;t=1781335820772 remote: Compressing objects: 81% (364/449)_bk;t=1781335820772 remote: Compressing objects: 82% (369/449)_bk;t=1781335820772 remote: Compressing objects: 83% (373/449)_bk;t=1781335820772 remote: Compressing objects: 84% (378/449)_bk;t=1781335820772 remote: Compressing objects: 85% (382/449)_bk;t=1781335820772 remote: Compressing objects: 86% (387/449)_bk;t=1781335820772 remote: Compressing objects: 87% (391/449)_bk;t=1781335820772 remote: Compressing objects: 88% (396/449)_bk;t=1781335820772 remote: Compressing objects: 89% (400/449)_bk;t=1781335820772 remote: Compressing objects: 90% (405/449)_bk;t=1781335820772 remote: Compressing objects: 91% (409/449)_bk;t=1781335820772 remote: Compressing objects: 92% (414/449)_bk;t=1781335820772 remote: Compressing objects: 93% (418/449)_bk;t=1781335820772 remote: Compressing objects: 94% (423/449)_bk;t=1781335820772 remote: Compressing objects: 95% (427/449)_bk;t=1781335820772 remote: Compressing objects: 96% (432/449)_bk;t=1781335820772 remote: Compressing objects: 97% (436/449)_bk;t=1781335820772 remote: Compressing objects: 98% (441/449)_bk;t=1781335820772 remote: Compressing objects: 99% (445/449)_bk;t=1781335820772 remote: Compressing objects: 100% (449/449)_bk;t=1781335820772 remote: Compressing objects: 100% (449/449), done._bk;t=1781335820772 -_bk;t=1781335820790Receiving objects: 0% (1/2513) Receiving objects: 1% (26/2513) Receiving objects: 2% (51/2513) Receiving objects: 3% (76/2513) Receiving objects: 4% (101/2513) Receiving objects: 5% (126/2513) Receiving objects: 6% (151/2513) Receiving objects: 7% (176/2513) Receiving objects: 8% (202/2513) Receiving objects: 9% (227/2513) Receiving objects: 10% (252/2513) Receiving objects: 11% (277/2513) Receiving objects: 12% (302/2513) Receiving objects: 13% (327/2513) Receiving objects: 14% (352/2513) Receiving objects: 15% (377/2513) Receiving objects: 16% (403/2513) Receiving objects: 17% (428/2513) Receiving objects: 18% (453/2513) Receiving objects: 19% (478/2513) Receiving objects: 20% (503/2513) Receiving objects: 21% (528/2513) Receiving objects: 22% (553/2513) Receiving objects: 23% (578/2513) Receiving objects: 24% (604/2513) Receiving objects: 25% (629/2513) Receiving objects: 26% (654/2513) Receiving objects: 27% (679/2513) Receiving objects: 28% (704/2513) Receiving objects: 29% (729/2513) Receiving objects: 30% (754/2513) Receiving objects: 31% (780/2513) Receiving objects: 32% (805/2513) Receiving objects: 33% (830/2513) Receiving objects: 34% (855/2513) Receiving objects: 35% (880/2513) Receiving objects: 36% (905/2513) Receiving objects: 37% (930/2513) Receiving objects: 38% (955/2513) Receiving objects: 39% (981/2513) Receiving objects: 40% (1006/2513) Receiving objects: 41% (1031/2513) Receiving objects: 42% (1056/2513) Receiving objects: 43% (1081/2513) Receiving objects: 44% (1106/2513) Receiving objects: 45% (1131/2513) Receiving objects: 46% (1156/2513) Receiving objects: 47% (1182/2513) Receiving objects: 48% (1207/2513) Receiving objects: 49% (1232/2513) Receiving objects: 50% (1257/2513) Receiving objects: 51% (1282/2513) Receiving objects: 52% (1307/2513) Receiving objects: 53% (1332/2513) Receiving objects: 54% (1358/2513) Receiving objects: 55% (1383/2513) Receiving objects: 56% (1408/2513) Receiving objects: 57% (1433/2513) Receiving objects: 58% (1458/2513) Receiving objects: 59% (1483/2513) Receiving objects: 60% (1508/2513) Receiving objects: 61% (1533/2513) Receiving objects: 62% (1559/2513) Receiving objects: 63% (1584/2513) Receiving objects: 64% (1609/2513) Receiving objects: 65% (1634/2513) Receiving objects: 66% (1659/2513) Receiving objects: 67% (1684/2513) Receiving objects: 68% (1709/2513) Receiving objects: 69% (1734/2513) Receiving objects: 70% (1760/2513) Receiving objects: 71% (1785/2513) Receiving objects: 72% (1810/2513) Receiving objects: 73% (1835/2513) Receiving objects: 74% (1860/2513) Receiving objects: 75% (1885/2513) Receiving objects: 76% (1910/2513) Receiving objects: 77% (1936/2513) Receiving objects: 78% (1961/2513) Receiving objects: 79% (1986/2513) Receiving objects: 80% (2011/2513) Receiving objects: 81% (2036/2513) Receiving objects: 82% (2061/2513) Receiving objects: 83% (2086/2513) Receiving objects: 84% (2111/2513) Receiving objects: 85% (2137/2513) Receiving objects: 86% (2162/2513) Receiving objects: 87% (2187/2513) Receiving objects: 88% (2212/2513) Receiving objects: 89% (2237/2513) Receiving objects: 90% (2262/2513) Receiving objects: 91% (2287/2513) Receiving objects: 92% (2312/2513) Receiving objects: 93% (2338/2513) Receiving objects: 94% (2363/2513) Receiving objects: 95% (2388/2513) Receiving objects: 96% (2413/2513) remote: Total 2513 (delta 1370), reused 1217 (delta 1146), pack-reused 911 (from 3)_bk;t=1781335820909 -_bk;t=1781335820911Receiving objects: 97% (2438/2513) Receiving objects: 98% (2463/2513) Receiving objects: 99% (2488/2513) Receiving objects: 100% (2513/2513) Receiving objects: 100% (2513/2513), 1.58 MiB | 13.03 MiB/s, done. -_bk;t=1781335820912Resolving deltas: 0% (0/1537) Resolving deltas: 1% (16/1537) Resolving deltas: 2% (31/1537) Resolving deltas: 3% (47/1537) Resolving deltas: 4% (62/1537) Resolving deltas: 5% (77/1537) Resolving deltas: 6% (93/1537) Resolving deltas: 7% (108/1537) Resolving deltas: 8% (123/1537) Resolving deltas: 9% (139/1537) Resolving deltas: 10% (154/1537) Resolving deltas: 11% (170/1537) Resolving deltas: 12% (186/1537) Resolving deltas: 13% (200/1537) Resolving deltas: 14% (216/1537) Resolving deltas: 15% (232/1537) Resolving deltas: 16% (247/1537) Resolving deltas: 17% (262/1537) Resolving deltas: 18% (277/1537) Resolving deltas: 19% (293/1537) Resolving deltas: 20% (308/1537) Resolving deltas: 21% (324/1537) Resolving deltas: 22% (339/1537) Resolving deltas: 23% (354/1537) Resolving deltas: 24% (369/1537) Resolving deltas: 25% (385/1537) Resolving deltas: 26% (400/1537) Resolving deltas: 27% (415/1537) Resolving deltas: 28% (431/1537) Resolving deltas: 29% (446/1537) Resolving deltas: 30% (462/1537) Resolving deltas: 31% (477/1537) Resolving deltas: 32% (492/1537) Resolving deltas: 33% (508/1537) Resolving deltas: 34% (523/1537) Resolving deltas: 35% (538/1537) Resolving deltas: 36% (554/1537) Resolving deltas: 37% (569/1537) Resolving deltas: 38% (585/1537) Resolving deltas: 39% (600/1537) Resolving deltas: 40% (615/1537) Resolving deltas: 41% (631/1537) Resolving deltas: 42% (646/1537) Resolving deltas: 43% (661/1537) Resolving deltas: 44% (677/1537) Resolving deltas: 45% (692/1537) Resolving deltas: 46% (708/1537) Resolving deltas: 47% (723/1537) Resolving deltas: 48% (738/1537) Resolving deltas: 49% (754/1537) Resolving deltas: 50% (769/1537) Resolving deltas: 51% (784/1537) Resolving deltas: 52% (800/1537) Resolving deltas: 53% (815/1537) Resolving deltas: 54% (830/1537) Resolving deltas: 55% (846/1537) Resolving deltas: 56% (861/1537) Resolving deltas: 57% (877/1537) Resolving deltas: 58% (892/1537) Resolving deltas: 59% (907/1537) Resolving deltas: 60% (923/1537) Resolving deltas: 61% (938/1537) Resolving deltas: 62% (953/1537) Resolving deltas: 63% (969/1537) Resolving deltas: 64% (984/1537) Resolving deltas: 65% (1000/1537) Resolving deltas: 66% (1015/1537) Resolving deltas: 67% (1030/1537) Resolving deltas: 68% (1046/1537) Resolving deltas: 69% (1061/1537) Resolving deltas: 70% (1076/1537) Resolving deltas: 71% (1092/1537) Resolving deltas: 72% (1107/1537) Resolving deltas: 73% (1123/1537) Resolving deltas: 74% (1138/1537) Resolving deltas: 75% (1153/1537) Resolving deltas: 76% (1169/1537) Resolving deltas: 77% (1184/1537) Resolving deltas: 78% (1199/1537) Resolving deltas: 79% (1215/1537) Resolving deltas: 80% (1230/1537) Resolving deltas: 81% (1245/1537) Resolving deltas: 82% (1261/1537) Resolving deltas: 83% (1276/1537) Resolving deltas: 84% (1292/1537) Resolving deltas: 85% (1307/1537) Resolving deltas: 86% (1322/1537) Resolving deltas: 87% (1338/1537) Resolving deltas: 88% (1353/1537) Resolving deltas: 89% (1368/1537) Resolving deltas: 90% (1384/1537) Resolving deltas: 91% (1399/1537) Resolving deltas: 92% (1415/1537) Resolving deltas: 93% (1430/1537) Resolving deltas: 94% (1445/1537) Resolving deltas: 95% (1461/1537) Resolving deltas: 96% (1476/1537) Resolving deltas: 97% (1491/1537) Resolving deltas: 98% (1507/1537) Resolving deltas: 99% (1522/1537) Resolving deltas: 100% (1537/1537) Resolving deltas: 100% (1537/1537), completed with 253 local objects. -_bk;t=1781335821061From https://github.com/bazel-contrib/rules_python -_bk;t=1781335821061 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335821063$ cd /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python -_bk;t=1781335821063$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335821065Cloning into '.'... -_bk;t=1781335821195POST git-upload-pack (175 bytes) -_bk;t=1781335821266POST git-upload-pack (gzip 2193 to 1014 bytes) -_bk;t=1781335821318remote: Enumerating objects: 2527, done._bk;t=1781335821318 -_bk;t=1781335821318remote: Counting objects: 0% (1/1589)_bk;t=1781335821318 remote: Counting objects: 1% (16/1589)_bk;t=1781335821318 remote: Counting objects: 2% (32/1589)_bk;t=1781335821318 remote: Counting objects: 3% (48/1589)_bk;t=1781335821318 remote: Counting objects: 4% (64/1589)_bk;t=1781335821318 remote: Counting objects: 5% (80/1589)_bk;t=1781335821318 remote: Counting objects: 6% (96/1589)_bk;t=1781335821318 remote: Counting objects: 7% (112/1589)_bk;t=1781335821318 remote: Counting objects: 8% (128/1589)_bk;t=1781335821318 remote: Counting objects: 9% (144/1589)_bk;t=1781335821318 remote: Counting objects: 10% (159/1589)_bk;t=1781335821318 remote: Counting objects: 11% (175/1589)_bk;t=1781335821318 remote: Counting objects: 12% (191/1589)_bk;t=1781335821318 remote: Counting objects: 13% (207/1589)_bk;t=1781335821318 remote: Counting objects: 14% (223/1589)_bk;t=1781335821318 remote: Counting objects: 15% (239/1589)_bk;t=1781335821318 remote: Counting objects: 16% (255/1589)_bk;t=1781335821318 remote: Counting objects: 17% (271/1589)_bk;t=1781335821318 remote: Counting objects: 18% (287/1589)_bk;t=1781335821318 remote: Counting objects: 19% (302/1589)_bk;t=1781335821318 remote: Counting objects: 20% (318/1589)_bk;t=1781335821318 remote: Counting objects: 21% (334/1589)_bk;t=1781335821318 remote: Counting objects: 22% (350/1589)_bk;t=1781335821318 remote: Counting objects: 23% (366/1589)_bk;t=1781335821318 remote: Counting objects: 24% (382/1589)_bk;t=1781335821318 remote: Counting objects: 25% (398/1589)_bk;t=1781335821318 remote: Counting objects: 26% (414/1589)_bk;t=1781335821318 remote: Counting objects: 27% (430/1589)_bk;t=1781335821318 remote: Counting objects: 28% (445/1589)_bk;t=1781335821318 remote: Counting objects: 29% (461/1589)_bk;t=1781335821318 remote: Counting objects: 30% (477/1589)_bk;t=1781335821318 remote: Counting objects: 31% (493/1589)_bk;t=1781335821318 remote: Counting objects: 32% (509/1589)_bk;t=1781335821318 remote: Counting objects: 33% (525/1589)_bk;t=1781335821318 remote: Counting objects: 34% (541/1589)_bk;t=1781335821318 remote: Counting objects: 35% (557/1589)_bk;t=1781335821318 remote: Counting objects: 36% (573/1589)_bk;t=1781335821318 remote: Counting objects: 37% (588/1589)_bk;t=1781335821318 remote: Counting objects: 38% (604/1589)_bk;t=1781335821318 remote: Counting objects: 39% (620/1589)_bk;t=1781335821318 remote: Counting objects: 40% (636/1589)_bk;t=1781335821318 remote: Counting objects: 41% (652/1589)_bk;t=1781335821318 remote: Counting objects: 42% (668/1589)_bk;t=1781335821318 remote: Counting objects: 43% (684/1589)_bk;t=1781335821318 remote: Counting objects: 44% (700/1589)_bk;t=1781335821318 remote: Counting objects: 45% (716/1589)_bk;t=1781335821318 remote: Counting objects: 46% (731/1589)_bk;t=1781335821318 remote: Counting objects: 47% (747/1589)_bk;t=1781335821318 remote: Counting objects: 48% (763/1589)_bk;t=1781335821318 remote: Counting objects: 49% (779/1589)_bk;t=1781335821318 remote: Counting objects: 50% (795/1589)_bk;t=1781335821318 remote: Counting objects: 51% (811/1589)_bk;t=1781335821318 remote: Counting objects: 52% (827/1589)_bk;t=1781335821318 remote: Counting objects: 53% (843/1589)_bk;t=1781335821318 remote: Counting objects: 54% (859/1589)_bk;t=1781335821318 remote: Counting objects: 55% (874/1589)_bk;t=1781335821318 remote: Counting objects: 56% (890/1589)_bk;t=1781335821318 remote: Counting objects: 57% (906/1589)_bk;t=1781335821318 remote: Counting objects: 58% (922/1589)_bk;t=1781335821318 remote: Counting objects: 59% (938/1589)_bk;t=1781335821318 remote: Counting objects: 60% (954/1589)_bk;t=1781335821318 remote: Counting objects: 61% (970/1589)_bk;t=1781335821318 remote: Counting objects: 62% (986/1589)_bk;t=1781335821318 remote: Counting objects: 63% (1002/1589)_bk;t=1781335821318 remote: Counting objects: 64% (1017/1589)_bk;t=1781335821318 remote: Counting objects: 65% (1033/1589)_bk;t=1781335821318 remote: Counting objects: 66% (1049/1589)_bk;t=1781335821318 remote: Counting objects: 67% (1065/1589)_bk;t=1781335821318 remote: Counting objects: 68% (1081/1589)_bk;t=1781335821318 remote: Counting objects: 69% (1097/1589)_bk;t=1781335821318 remote: Counting objects: 70% (1113/1589)_bk;t=1781335821318 remote: Counting objects: 71% (1129/1589)_bk;t=1781335821318 remote: Counting objects: 72% (1145/1589)_bk;t=1781335821318 remote: Counting objects: 73% (1160/1589)_bk;t=1781335821318 remote: Counting objects: 74% (1176/1589)_bk;t=1781335821319 remote: Counting objects: 75% (1192/1589)_bk;t=1781335821319 remote: Counting objects: 76% (1208/1589)_bk;t=1781335821319 remote: Counting objects: 77% (1224/1589)_bk;t=1781335821319 remote: Counting objects: 78% (1240/1589)_bk;t=1781335821319 remote: Counting objects: 79% (1256/1589)_bk;t=1781335821319 remote: Counting objects: 80% (1272/1589)_bk;t=1781335821319 remote: Counting objects: 81% (1288/1589)_bk;t=1781335821319 remote: Counting objects: 82% (1303/1589)_bk;t=1781335821319 remote: Counting objects: 83% (1319/1589)_bk;t=1781335821319 remote: Counting objects: 84% (1335/1589)_bk;t=1781335821319 remote: Counting objects: 85% (1351/1589)_bk;t=1781335821319 remote: Counting objects: 86% (1367/1589)_bk;t=1781335821319 remote: Counting objects: 87% (1383/1589)_bk;t=1781335821319 remote: Counting objects: 88% (1399/1589)_bk;t=1781335821319 remote: Counting objects: 89% (1415/1589)_bk;t=1781335821319 remote: Counting objects: 90% (1431/1589)_bk;t=1781335821319 remote: Counting objects: 91% (1446/1589)_bk;t=1781335821319 remote: Counting objects: 92% (1462/1589)_bk;t=1781335821319 remote: Counting objects: 93% (1478/1589)_bk;t=1781335821319 remote: Counting objects: 94% (1494/1589)_bk;t=1781335821319 remote: Counting objects: 95% (1510/1589)_bk;t=1781335821319 remote: Counting objects: 96% (1526/1589)_bk;t=1781335821319 remote: Counting objects: 97% (1542/1589)_bk;t=1781335821319 remote: Counting objects: 98% (1558/1589)_bk;t=1781335821319 remote: Counting objects: 99% (1574/1589)_bk;t=1781335821319 remote: Counting objects: 100% (1589/1589)_bk;t=1781335821319 remote: Counting objects: 100% (1589/1589), done._bk;t=1781335821319 -_bk;t=1781335821319remote: Compressing objects: 0% (1/375)_bk;t=1781335821319 remote: Compressing objects: 1% (4/375)_bk;t=1781335821319 remote: Compressing objects: 2% (8/375)_bk;t=1781335821319 remote: Compressing objects: 3% (12/375)_bk;t=1781335821319 remote: Compressing objects: 4% (15/375)_bk;t=1781335821319 remote: Compressing objects: 5% (19/375)_bk;t=1781335821319 remote: Compressing objects: 6% (23/375)_bk;t=1781335821319 remote: Compressing objects: 7% (27/375)_bk;t=1781335821319 remote: Compressing objects: 8% (30/375)_bk;t=1781335821319 remote: Compressing objects: 9% (34/375)_bk;t=1781335821319 remote: Compressing objects: 10% (38/375)_bk;t=1781335821319 remote: Compressing objects: 11% (42/375)_bk;t=1781335821319 remote: Compressing objects: 12% (45/375)_bk;t=1781335821319 remote: Compressing objects: 13% (49/375)_bk;t=1781335821319 remote: Compressing objects: 14% (53/375)_bk;t=1781335821319 remote: Compressing objects: 15% (57/375)_bk;t=1781335821319 remote: Compressing objects: 16% (60/375)_bk;t=1781335821319 remote: Compressing objects: 17% (64/375)_bk;t=1781335821319 remote: Compressing objects: 18% (68/375)_bk;t=1781335821319 remote: Compressing objects: 19% (72/375)_bk;t=1781335821319 remote: Compressing objects: 20% (75/375)_bk;t=1781335821319 remote: Compressing objects: 21% (79/375)_bk;t=1781335821319 remote: Compressing objects: 22% (83/375)_bk;t=1781335821319 remote: Compressing objects: 23% (87/375)_bk;t=1781335821319 remote: Compressing objects: 24% (90/375)_bk;t=1781335821319 remote: Compressing objects: 25% (94/375)_bk;t=1781335821319 remote: Compressing objects: 26% (98/375)_bk;t=1781335821319 remote: Compressing objects: 27% (102/375)_bk;t=1781335821319 remote: Compressing objects: 28% (105/375)_bk;t=1781335821319 remote: Compressing objects: 29% (109/375)_bk;t=1781335821319 remote: Compressing objects: 30% (113/375)_bk;t=1781335821319 remote: Compressing objects: 31% (117/375)_bk;t=1781335821319 remote: Compressing objects: 32% (120/375)_bk;t=1781335821319 remote: Compressing objects: 33% (124/375)_bk;t=1781335821319 remote: Compressing objects: 34% (128/375)_bk;t=1781335821319 remote: Compressing objects: 35% (132/375)_bk;t=1781335821319 remote: Compressing objects: 36% (135/375)_bk;t=1781335821319 remote: Compressing objects: 37% (139/375)_bk;t=1781335821319 remote: Compressing objects: 38% (143/375)_bk;t=1781335821319 remote: Compressing objects: 39% (147/375)_bk;t=1781335821319 remote: Compressing objects: 40% (150/375)_bk;t=1781335821319 remote: Compressing objects: 41% (154/375)_bk;t=1781335821319 remote: Compressing objects: 42% (158/375)_bk;t=1781335821319 remote: Compressing objects: 43% (162/375)_bk;t=1781335821319 remote: Compressing objects: 44% (165/375)_bk;t=1781335821319 remote: Compressing objects: 45% (169/375)_bk;t=1781335821319 remote: Compressing objects: 46% (173/375)_bk;t=1781335821319 remote: Compressing objects: 47% (177/375)_bk;t=1781335821319 remote: Compressing objects: 48% (180/375)_bk;t=1781335821319 remote: Compressing objects: 49% (184/375)_bk;t=1781335821319 remote: Compressing objects: 50% (188/375)_bk;t=1781335821319 remote: Compressing objects: 51% (192/375)_bk;t=1781335821319 remote: Compressing objects: 52% (195/375)_bk;t=1781335821319 remote: Compressing objects: 53% (199/375)_bk;t=1781335821319 remote: Compressing objects: 54% (203/375)_bk;t=1781335821319 remote: Compressing objects: 55% (207/375)_bk;t=1781335821319 remote: Compressing objects: 56% (210/375)_bk;t=1781335821319 remote: Compressing objects: 57% (214/375)_bk;t=1781335821319 remote: Compressing objects: 58% (218/375)_bk;t=1781335821319 remote: Compressing objects: 59% (222/375)_bk;t=1781335821319 remote: Compressing objects: 60% (225/375)_bk;t=1781335821319 remote: Compressing objects: 61% (229/375)_bk;t=1781335821319 remote: Compressing objects: 62% (233/375)_bk;t=1781335821319 remote: Compressing objects: 63% (237/375)_bk;t=1781335821319 remote: Compressing objects: 64% (240/375)_bk;t=1781335821319 remote: Compressing objects: 65% (244/375)_bk;t=1781335821319 remote: Compressing objects: 66% (248/375)_bk;t=1781335821319 remote: Compressing objects: 67% (252/375)_bk;t=1781335821319 remote: Compressing objects: 68% (255/375)_bk;t=1781335821319 remote: Compressing objects: 69% (259/375)_bk;t=1781335821319 remote: Compressing objects: 70% (263/375)_bk;t=1781335821319 remote: Compressing objects: 71% (267/375)_bk;t=1781335821319 remote: Compressing objects: 72% (270/375)_bk;t=1781335821319 remote: Compressing objects: 73% (274/375)_bk;t=1781335821319 remote: Compressing objects: 74% (278/375)_bk;t=1781335821319 remote: Compressing objects: 75% (282/375)_bk;t=1781335821319 remote: Compressing objects: 76% (285/375)_bk;t=1781335821319 remote: Compressing objects: 77% (289/375)_bk;t=1781335821319 remote: Compressing objects: 78% (293/375)_bk;t=1781335821319 remote: Compressing objects: 79% (297/375)_bk;t=1781335821319 remote: Compressing objects: 80% (300/375)_bk;t=1781335821319 remote: Compressing objects: 81% (304/375)_bk;t=1781335821319 remote: Compressing objects: 82% (308/375)_bk;t=1781335821319 remote: Compressing objects: 83% (312/375)_bk;t=1781335821319 remote: Compressing objects: 84% (315/375)_bk;t=1781335821319 remote: Compressing objects: 85% (319/375)_bk;t=1781335821319 remote: Compressing objects: 86% (323/375)_bk;t=1781335821319 remote: Compressing objects: 87% (327/375)_bk;t=1781335821319 remote: Compressing objects: 88% (330/375)_bk;t=1781335821319 remote: Compressing objects: 89% (334/375)_bk;t=1781335821319 remote: Compressing objects: 90% (338/375)_bk;t=1781335821319 remote: Compressing objects: 91% (342/375)_bk;t=1781335821319 remote: Compressing objects: 92% (345/375)_bk;t=1781335821319 remote: Compressing objects: 93% (349/375)_bk;t=1781335821319 remote: Compressing objects: 94% (353/375)_bk;t=1781335821319 remote: Compressing objects: 95% (357/375)_bk;t=1781335821319 remote: Compressing objects: 96% (360/375)_bk;t=1781335821319 remote: Compressing objects: 97% (364/375)_bk;t=1781335821319 remote: Compressing objects: 98% (368/375)_bk;t=1781335821319 remote: Compressing objects: 99% (372/375)_bk;t=1781335821319 remote: Compressing objects: 100% (375/375)_bk;t=1781335821320 remote: Compressing objects: 100% (375/375), done._bk;t=1781335821320 -_bk;t=1781335821320Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1413), reused 1218 (delta 1214), pack-reused 938 (from 3)_bk;t=1781335821458 -_bk;t=1781335821458Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.58 MiB | 11.32 MiB/s, done. -_bk;t=1781335821460Resolving deltas: 0% (0/1586) Resolving deltas: 1% (16/1586) Resolving deltas: 2% (32/1586) Resolving deltas: 3% (48/1586) Resolving deltas: 4% (64/1586) Resolving deltas: 5% (80/1586) Resolving deltas: 6% (96/1586) Resolving deltas: 7% (112/1586) Resolving deltas: 8% (127/1586) Resolving deltas: 9% (143/1586) Resolving deltas: 10% (159/1586) Resolving deltas: 11% (175/1586) Resolving deltas: 12% (191/1586) Resolving deltas: 13% (207/1586) Resolving deltas: 14% (223/1586) Resolving deltas: 15% (238/1586) Resolving deltas: 16% (254/1586) Resolving deltas: 17% (270/1586) Resolving deltas: 18% (286/1586) Resolving deltas: 19% (302/1586) Resolving deltas: 20% (318/1586) Resolving deltas: 21% (334/1586) Resolving deltas: 22% (349/1586) Resolving deltas: 23% (365/1586) Resolving deltas: 24% (381/1586) Resolving deltas: 25% (397/1586) Resolving deltas: 26% (413/1586) Resolving deltas: 27% (429/1586) Resolving deltas: 28% (445/1586) Resolving deltas: 29% (460/1586) Resolving deltas: 30% (476/1586) Resolving deltas: 31% (492/1586) Resolving deltas: 32% (508/1586) Resolving deltas: 33% (524/1586) Resolving deltas: 34% (540/1586) Resolving deltas: 35% (556/1586) Resolving deltas: 36% (571/1586) Resolving deltas: 37% (587/1586) Resolving deltas: 38% (603/1586) Resolving deltas: 39% (619/1586) Resolving deltas: 40% (635/1586) Resolving deltas: 41% (651/1586) Resolving deltas: 42% (667/1586) Resolving deltas: 43% (682/1586) Resolving deltas: 44% (698/1586) Resolving deltas: 45% (714/1586) Resolving deltas: 46% (730/1586) Resolving deltas: 47% (746/1586) Resolving deltas: 48% (762/1586) Resolving deltas: 49% (778/1586) Resolving deltas: 50% (793/1586) Resolving deltas: 51% (809/1586) Resolving deltas: 52% (825/1586) Resolving deltas: 53% (841/1586) Resolving deltas: 54% (857/1586) Resolving deltas: 55% (873/1586) Resolving deltas: 56% (889/1586) Resolving deltas: 57% (905/1586) Resolving deltas: 58% (920/1586) Resolving deltas: 59% (936/1586) Resolving deltas: 60% (952/1586) Resolving deltas: 61% (968/1586) Resolving deltas: 62% (984/1586) Resolving deltas: 63% (1000/1586) Resolving deltas: 64% (1016/1586) Resolving deltas: 65% (1031/1586) Resolving deltas: 66% (1047/1586) Resolving deltas: 67% (1063/1586) Resolving deltas: 68% (1079/1586) Resolving deltas: 69% (1095/1586) Resolving deltas: 70% (1111/1586) Resolving deltas: 71% (1127/1586) Resolving deltas: 72% (1142/1586) Resolving deltas: 73% (1158/1586) Resolving deltas: 74% (1174/1586) Resolving deltas: 75% (1190/1586) Resolving deltas: 76% (1206/1586) Resolving deltas: 77% (1222/1586) Resolving deltas: 78% (1238/1586) Resolving deltas: 79% (1253/1586) Resolving deltas: 80% (1269/1586) Resolving deltas: 81% (1285/1586) Resolving deltas: 82% (1301/1586) Resolving deltas: 83% (1317/1586) Resolving deltas: 84% (1333/1586) Resolving deltas: 85% (1349/1586) Resolving deltas: 86% (1364/1586) Resolving deltas: 87% (1380/1586) Resolving deltas: 88% (1396/1586) Resolving deltas: 89% (1412/1586) Resolving deltas: 90% (1428/1586) Resolving deltas: 91% (1444/1586) Resolving deltas: 92% (1460/1586) Resolving deltas: 93% (1475/1586) Resolving deltas: 94% (1491/1586) Resolving deltas: 95% (1507/1586) Resolving deltas: 96% (1523/1586) Resolving deltas: 97% (1539/1586) Resolving deltas: 98% (1555/1586) Resolving deltas: 99% (1571/1586) Resolving deltas: 100% (1586/1586) Resolving deltas: 100% (1586/1586), completed with 268 local objects. -_bk;t=1781335821733$ git clean -ffxdq -_bk;t=1781335821740# Fetch and checkout pull request head from GitHub -_bk;t=1781335821740$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335821867POST git-upload-pack (395 bytes) -_bk;t=1781335821920From https://github.com/bazel-contrib/rules_python -_bk;t=1781335821920 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335821920 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD -_bk;t=1781335821926# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` -_bk;t=1781335821926$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335821989Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. -_bk;t=1781335821989 -_bk;t=1781335821989You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335821989changes and commit them, and you can discard any commits you make in this -_bk;t=1781335821989state without impacting any branches by switching back to a branch. -_bk;t=1781335821989 -_bk;t=1781335821989If you want to create a new branch to retain commits you create, you may -_bk;t=1781335821989do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335821989 -_bk;t=1781335821989 git switch -c -_bk;t=1781335821989 -_bk;t=1781335821989Or undo this operation with: -_bk;t=1781335821989 -_bk;t=1781335821989 git switch - -_bk;t=1781335821989 -_bk;t=1781335821989Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335821989 -_bk;t=1781335821989HEAD is now at d6eeb759 feat(skills): Include Buildkite Build ID in monitor_remote_ci summary -_bk;t=1781335821989# Cleaning again to catch any post-checkout changes -_bk;t=1781335821989$ git clean -ffxdq -_bk;t=1781335821996# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335821996# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335821996~~~ Running agent post-checkout hook -_bk;t=1781335821997$ /etc/buildkite-agent/hooks/post-checkout -_bk;t=1781335822027CHECKOUT_END_TIME: 1781335822012 -_bk;t=1781335822027CHECKOUT_DURATION_S: 1.528 -_bk;t=1781335822040Added: -_bk;t=1781335822040+ CHECKOUT_END_TIME -_bk;t=1781335822052Added: -_bk;t=1781335822052+ CHECKOUT_DURATION_S -_bk;t=1781335822067~~~ Running agent pre-command hook -_bk;t=1781335822067$ /etc/buildkite-agent/hooks/pre-command -_bk;t=1781335822095PREP_DURATION_S: 0.070 -_bk;t=1781335822108Added: -_bk;t=1781335822108+ PREP_DURATION_S -_bk;t=1781335822122~~~ Running plugin docker-buildkite-plugin command hook -_bk;t=1781335822122$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command -_bk;t=1781335822175--- :docker: Pulling gcr.io/bazel-public/debian11-java17 -_bk;t=1781335822186Using default tag: latest -_bk;t=1781335823662latest: Pulling from bazel-public/debian11-java17 -_bk;t=1781335823717Digest: sha256:149b61974337fc32d75af1f062b900bfb867d654146977f8472b4eec67129967 -_bk;t=1781335823717Status: Image is up to date for gcr.io/bazel-public/debian11-java17:latest -_bk;t=1781335823718gcr.io/bazel-public/debian11-java17:latest -_bk;t=1781335823734docker network host already exists -_bk;t=1781335823734--- :docker: Running command in gcr.io/bazel-public/debian11-java17 -_bk;t=1781335823734$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-p2kk/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_MESSAGE --env BUILDKITE_AGENT_NAME --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_JOB_ID --env BUILDKITE --env BUILDKITE_SOURCE --env BUILDKITE_TAG --env BUILDKITE_STEP_KEY --env BUILDKITE_TIMEOUT --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_LABEL --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_BUILD_URL --env BUILDKITE_COMMIT --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_REPO --env BUILDKITE_AGENT_ID --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_BRANCH --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_RETRY_COUNT --env BUILDKITE_REBUILT_FROM_BUILD_ID --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_PLUGINS --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE_BUILD_ID --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_PIPELINE_NAME --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_PIPELINE_ID --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_COMPUTE_TYPE --env BUILDKITE_COMMAND --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_ORGANIZATION_SLUG --env CI --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_PULL_REQUEST --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_STEP_ID --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --network host --label com.buildkite.job-id=019ebfe3-63af-485c-806c-39bfc8991bf8 gcr.io/bazel-public/debian11-java17 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py\npython3.9 bazelci.py runner --task=integration_test_bazelinbazel_debian' -_bk;t=1781335825632 -_bk;t=1781335825632 -_bk;t=1781335825632--- :bazel: Using latest Bazel release -_bk;t=1781335825632 -_bk;t=1781335825632 -_bk;t=1781335825632bazel --version -_bk;t=17813358258802026/06/13 07:30:25 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-linux-x86_64... -_bk;t=1781335825894 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 5 MB out of 62 MB (7%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 21 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (77%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) -_bk;t=1781335826525bazel 9.1.1 -_bk;t=1781335826527bazel info output_base -_bk;t=1781335826680Extracting Bazel installation... -_bk;t=1781335828089Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335829443WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335829443INFO: Invocation ID: 4110b9a7-f247-474b-8b75-5abe9e8a29d6 -_bk;t=1781335829490 -_bk;t=1781335829490 -_bk;t=1781335829490--- :information_source: Bazel Info -_bk;t=1781335829490 -_bk;t=1781335829490 -_bk;t=1781335829490bazel --nosystem_rc --nohome_rc version -_bk;t=1781335829680WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335829680INFO: Invocation ID: 3bd3ec0c-1ad7-4404-8f2d-989c436e2457 -_bk;t=1781335829685Bazelisk version: v1.28.1 -_bk;t=1781335829685Build label: 9.1.1 -_bk;t=1781335829685Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer -_bk;t=1781335829685Build time: Wed Jun 03 15:41:13 2026 (1780501273) -_bk;t=1781335829685Build timestamp: 1780501273 -_bk;t=1781335829685Build timestamp as int: 1780501273 -_bk;t=1781335829685 -_bk;t=1781335829685bazel --nosystem_rc --nohome_rc info -_bk;t=1781335829903WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335829903INFO: Invocation ID: af6fd327-ad5a-41c6-8d23-7011f33a02c0 -_bk;t=1781335830028WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335831042WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335831042WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335831042WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335831042WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335831684bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335831684bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335831684bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335831685character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335831685command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log -_bk;t=1781335831685committed-heap-size: 117MB -_bk;t=1781335831686execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main -_bk;t=1781335831687gc-count: 15 -_bk;t=1781335831687gc-time: 53ms -_bk;t=1781335831688install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124 -_bk;t=1781335831688java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124/embedded_tools/jdk -_bk;t=1781335831688java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335831689java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335831689local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335831689max-heap-size: 31658MB -_bk;t=1781335831690output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 -_bk;t=1781335831690output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out -_bk;t=1781335831691package_path: %workspace% -_bk;t=1781335831691release: release 9.1.1 -_bk;t=1781335831691repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335831693server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073028.41 -_bk;t=1781335831693server_pid: 41 -_bk;t=1781335831694used-heap-size: 59MB -_bk;t=1781335831694workspace: /workdir -_bk;t=1781335831710 -_bk;t=1781335831713 -_bk;t=1781335831713--- :information_source: Environment Variables -_bk;t=1781335831713 -_bk;t=1781335831713 -_bk;t=1781335831713BUILDKITE_PULL_REQUEST_LABELS=() -_bk;t=1781335831713BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) -_bk;t=1781335831713LANGUAGE=(C.UTF-8) -_bk;t=1781335831713CI=(true) -_bk;t=1781335831713BUILDKITE_TRIGGERED_FROM_BUILD_ID=() -_bk;t=1781335831713BUILDKITE_BUILD_CREATOR=(Richard Levasseur) -_bk;t=1781335831713BUILDKITE_ARTIFACT_PATHS=() -_bk;t=1781335831713HOSTNAME=(bk-docker-p2kk) -_bk;t=1781335831713BUILDKITE_GITHUB_ACTION=(synchronize) -_bk;t=1781335831713BUILDKITE_AGENT_ID=(019ebfdf-c34c-4e55-a668-7238cfb7cb60) -_bk;t=1781335831713BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) -_bk;t=1781335831713BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) -_bk;t=1781335831713BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) -_bk;t=1781335831713BUILDKITE_AGENT_META_DATA_QUEUE=(default) -_bk;t=1781335831713HOME=(/var/lib/buildkite-agent) -_bk;t=1781335831713BUILDKITE_STEP_KEY=() -_bk;t=1781335831713BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() -_bk;t=1781335831713BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335831713BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) -_bk;t=1781335831713BUILDKITE=(true) -_bk;t=1781335831713BUILDKITE_COMPUTE_TYPE=(self-hosted) -_bk;t=1781335831713BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) -_bk;t=1781335831713BUILDKITE_BUILD_NUMBER=(15722) -_bk;t=1781335831713BUILDKITE_PIPELINE_PROVIDER=(github) -_bk;t=1781335831713BUILDKITE_TAG=() -_bk;t=1781335831713BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() -_bk;t=1781335831713BUILDKITE_AGENT_META_DATA_OS=(linux) -_bk;t=1781335831713BUILDKITE_JOB_ID=(019ebfe3-63af-485c-806c-39bfc8991bf8) -_bk;t=1781335831713BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) -_bk;t=1781335831713BUILDKITE_PULL_REQUEST=(3812) -_bk;t=1781335831713TERM=(xterm) -_bk;t=1781335831713BUILDKITE_COMMIT_RESOLVED=(true) -_bk;t=1781335831713BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) -_bk;t=1781335831713BUILDKITE_PIPELINE_SLUG=(rules-python-python) -_bk;t=1781335831713PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) -_bk;t=1781335831713PREP_DURATION_S=(0.070) -_bk;t=1781335831713BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) -_bk;t=1781335831713BUILDKITE_GITHUB_EVENT=(pull_request) -_bk;t=1781335831713CHECKOUT_DURATION_S=(1.528) -_bk;t=1781335831713BUILDKITE_SOURCE=(webhook) -_bk;t=1781335831713BUILDKITE_RETRY_COUNT=(0) -_bk;t=1781335831713BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) -_bk;t=1781335831713LANG=(C.UTF-8) -_bk;t=1781335831713BUILDKITE_REBUILT_FROM_BUILD_ID=() -_bk;t=1781335831713BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8) -_bk;t=1781335831713BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/debian11-java17","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) -_bk;t=1781335831713DEBIAN_FRONTEND=(noninteractive) -_bk;t=1781335831713BUILDKITE_ORGANIZATION_SLUG=(bazel) -_bk;t=1781335831713BUILDKITE_PROJECT_PROVIDER=(github) -_bk;t=1781335831713BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) -_bk;t=1781335831713BUILDKITE_LABEL=(tests/integration bazel-in-bazel: Debian on :debian: Debian 11 Bullseye (OpenJDK 17, gcc 10.2.1)) -_bk;t=1781335831713BUILDKITE_AGENT_META_DATA_KIND=(docker) -_bk;t=1781335831713BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335831713BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() -_bk;t=1781335831713BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) -_bk;t=1781335831713BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335831713python3.9 bazelci.py runner --task=integration_test_bazelinbazel_debian) -_bk;t=1781335831713BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) -_bk;t=1781335831713BUILDKITE_TIMEOUT=(480) -_bk;t=1781335831713BUILDKITE_STEP_ID=(019ebfe3-628e-4c79-8336-917074b3a387) -_bk;t=1781335831713BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335831713python3.9 bazelci.py runner --task=integration_test_bazelinbazel_debian) -_bk;t=1781335831713BUILDKITE_PIPELINE_NAME=(rules_python :python:) -_bk;t=1781335831714LC_ALL=(C.UTF-8) -_bk;t=1781335831714JAVA_HOME=(/usr/lib/jvm/java-17-openjdk-amd64) -_bk;t=1781335831714PWD=(/workdir) -_bk;t=1781335831714ANDROID_HOME=(/opt/android-sdk-linux) -_bk;t=1781335831714BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) -_bk;t=1781335831714BUILDKITE_AGENT_NAME=(bk-docker-p2kk) -_bk;t=1781335831714BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) -_bk;t=1781335831714BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) -_bk;t=1781335831714ANDROID_NDK_HOME=(/opt/android-ndk-r15c) -_bk;t=1781335831714BAZELCI_TASK=(integration_test_bazelinbazel_debian) -_bk;t=1781335831714BAZELISK_USER_AGENT=(Bazelisk/BazelCI) -_bk;t=1781335831714OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) -_bk;t=1781335831714 -_bk;t=1781335831714 -_bk;t=1781335831714--- :dart: Calculating targets -_bk;t=1781335831714 -_bk;t=1781335831714 -_bk;t=1781335831714 -_bk;t=1781335831714 -_bk;t=1781335831714--- :bazel: Computing flags for build step -_bk;t=1781335831714 -_bk;t=1781335831714 -_bk;t=1781335831715Adding to platform cache key: b'bazel' -_bk;t=1781335831715Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335831715Adding to platform cache key: b'debian11' -_bk;t=1781335831715 -_bk;t=1781335831715 -_bk;t=1781335831715+++ :bazel: Build (9.1.1) -_bk;t=1781335831715 -_bk;t=1781335831715 -_bk;t=1781335831715bazel build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp48yzaz_j/build_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=ed451beeb379d5a82169f78651e193081e3f23a97cfb4e9423574573a05a6999 --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT -- ... -_bk;t=1781335832026(07:30:32) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335832026(07:30:32) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335832027(07:30:32) INFO: Invocation ID: 2b72ca79-167c-4269-969e-c5041801b90a -_bk;t=1781335832027(07:30:32) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/2b72ca79-167c-4269-969e-c5041801b90a -_bk;t=1781335832027(07:30:32) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks -_bk;t=1781335832027(07:30:32) INFO: Options provided by the client: -_bk;t=1781335832027 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335832027(07:30:32) INFO: Reading rc options for 'build' from /workdir/.bazelrc.deleted_packages: -_bk;t=1781335832027 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335832027(07:30:32) INFO: Reading rc options for 'build' from /workdir/.bazelrc: -_bk;t=1781335832027 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335832027(07:30:32) INFO: Reading rc options for 'build' from /workdir/.bazelrc: -_bk;t=1781335832027 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335832027(07:30:32) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335832064(07:30:32) INFO: Current date is 2026-06-13 -_bk;t=1781335832064(07:30:32) -_bk;t=1781335832064 _bk;t=1781335832064(07:30:32) Computing main repo mapping: -_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335832134(07:30:32) Computing main repo mapping: -_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335832134(07:30:32) Computing main repo mapping: -_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335832134(07:30:32) Computing main repo mapping: -_bk;t=1781335832134 _bk;t=1781335832134(07:30:32) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335832134(07:30:32) Computing main repo mapping: -_bk;t=1781335832684 _bk;t=1781335832684(07:30:32) Loading: -_bk;t=1781335832700 _bk;t=1781335832700(07:30:32) Loading: 1 packages loaded -_bk;t=1781335835310 _bk;t=1781335835310(07:30:35) Analyzing: 53 targets (176 packages loaded, 0 targets configured) -_bk;t=1781335835334 _bk;t=1781335835334(07:30:35) Analyzing: 53 targets (176 packages loaded, 0 targets configured) -_bk;t=1781335835334 currently loading: @@bazel_tools//tools/test -_bk;t=1781335835334 -_bk;t=1781335839588 _bk;t=1781335839588 _bk;t=1781335839588 _bk;t=1781335839588(07:30:39) INFO: Analyzed 53 targets (276 packages loaded, 15942 targets configured). -_bk;t=1781335839588(07:30:39) [320 / 347] 14 actions, 10 running -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_8.5.1.runfiles; 0s local -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_self.runfiles; 0s local -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_7.7.0.runfiles; 0s local -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_8.5.1.runfiles; 0s local -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_9.1.0.runfiles; 0s local -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_9.1.0.runfiles; 0s local -_bk;t=1781335839588 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_7.7.0.runfiles; 0s local -_bk;t=1781335839588 Creating source manifest for //tests/integration:uv_lock_test_bazel_8.5.1; 0s local ... -_bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941 _bk;t=1781335839941(07:30:39) INFO: Found 53 targets... -_bk;t=1781335839941(07:30:39) [359 / 359] no actions running -_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: Elapsed time: 8.078s, Critical Path: 0.53s -_bk;t=1781335839968(07:30:39) [359 / 359] no actions running -_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: 359 processes: 12 remote cache hit, 347 internal. -_bk;t=1781335839968(07:30:39) [359 / 359] no actions running -_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: Build completed successfully, 359 total actions -_bk;t=1781335839968(07:30:39) INFO: -_bk;t=1781335839968 _bk;t=1781335839968(07:30:39) INFO: -_bk;t=1781335840276 (07:30:40) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/2b72ca79-167c-4269-969e-c5041801b90a -_bk;t=1781335840277curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmp48yzaz_j/bazelci-agent -_bk;t=1781335840282 -_bk;t=1781335840282 -_bk;t=1781335840282--- :bazel: Computing flags for test step -_bk;t=1781335840282 -_bk;t=1781335840283 -_bk;t=1781335840283Adding to platform cache key: b'bazel' -_bk;t=1781335840283Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335840283Adding to platform cache key: b'debian11' -_bk;t=1781335840283 -_bk;t=1781335840283 -_bk;t=1781335840283+++ :bazel: Test (9.1.1) -_bk;t=1781335840283 -_bk;t=1781335840283 -_bk;t=1781335840283bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp48yzaz_j/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=ed451beeb379d5a82169f78651e193081e3f23a97cfb4e9423574573a05a6999 --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- ... -_bk;t=1781335840497(07:30:40) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335840497(07:30:40) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335840497(07:30:40) INFO: Invocation ID: a570592b-22f7-4334-a87f-f392db6d25a0 -_bk;t=1781335840497(07:30:40) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/a570592b-22f7-4334-a87f-f392db6d25a0 -_bk;t=1781335840497(07:30:40) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks -_bk;t=1781335840497(07:30:40) INFO: Options provided by the client: -_bk;t=1781335840497 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: -_bk;t=1781335840497 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335840497 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335840497 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335840497(07:30:40) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335840497 'test' options: --test_output=errors -_bk;t=1781335840497(07:30:40) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335840505/tmp/tmp48yzaz_j/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp48yzaz_j/test_bep.json -_bk;t=1781335840612(07:30:40) INFO: Current date is 2026-06-13 -_bk;t=1781335840612(07:30:40) -_bk;t=1781335840612 _bk;t=1781335840612(07:30:40) Computing main repo mapping: -_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335840739(07:30:40) Computing main repo mapping: -_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335840739(07:30:40) Computing main repo mapping: -_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335840739(07:30:40) Computing main repo mapping: -_bk;t=1781335840739 _bk;t=1781335840739(07:30:40) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335840739(07:30:40) Computing main repo mapping: -_bk;t=1781335840815 _bk;t=1781335840815(07:30:40) Loading: -_bk;t=1781335840818 _bk;t=1781335840818(07:30:40) Loading: 0 packages loaded -_bk;t=1781335840931 _bk;t=1781335840931(07:30:40) Analyzing: 53 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335840936 _bk;t=1781335840936(07:30:40) Analyzing: 53 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335840936 -_bk;t=1781335841054 _bk;t=1781335841054 _bk;t=1781335841054(07:30:41) INFO: Analyzed 53 targets (0 packages loaded, 0 targets configured). -_bk;t=1781335841054(07:30:41) [286 / 289] checking cached actions -_bk;t=1781335847804 _bk;t=1781335847804(07:30:47) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335847804 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache -_bk;t=1781335847946 _bk;t=1781335847946 _bk;t=1781335847946(07:30:47) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) -_bk;t=1781335847946(07:30:47) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335847946 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache -_bk;t=1781335848515buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=17813358485312026-06-13 07:30:48 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" -_bk;t=17813358485332026-06-13 07:30:48 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration -_bk;t=17813358485332026-06-13 07:30:48 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358486462026-06-13 07:30:48 INFO  Uploading 019ebfe3-f69f-4f2d-b11c-c67d48f19c42 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) -_bk;t=17813358488902026-06-13 07:30:48 INFO  Artifact uploads completed successfully -_bk;t=1781335853623 _bk;t=1781335853623 _bk;t=1781335853623(07:30:53) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335853623 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache -_bk;t=1781335853772 _bk;t=1781335853772 _bk;t=1781335853772(07:30:53) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) -_bk;t=1781335853772(07:30:53) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335853772 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache -_bk;t=1781335854515buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=17813358545292026-06-13 07:30:54 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" -_bk;t=17813358545302026-06-13 07:30:54 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration -_bk;t=17813358545302026-06-13 07:30:54 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358546272026-06-13 07:30:54 INFO  Uploading 019ebfe4-0e01-4074-a210-42ca07076a71 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) -_bk;t=17813358548332026-06-13 07:30:54 INFO  Artifact uploads completed successfully -_bk;t=1781335859507 _bk;t=1781335859507 _bk;t=1781335859507(07:30:59) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335859507 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335859546 _bk;t=1781335859546 _bk;t=1781335859546(07:30:59) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) -_bk;t=1781335859546(07:30:59) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335859546 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335859547 _bk;t=1781335859547 _bk;t=1781335859547 -_bk;t=1781335859547FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335859547 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335859547 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335859547 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335859547(07:30:59) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335859547 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335859549 _bk;t=1781335859549 _bk;t=1781335859549(07:30:59) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335859549==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=17813358595492026/06/13 07:30:41 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-linux-x86_64... -_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335859549Extracting Bazel installation... -_bk;t=1781335859549Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335859549bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335859549bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335859549bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335859549character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335859549command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log -_bk;t=1781335859549committed-heap-size: 117MB -_bk;t=1781335859549execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main -_bk;t=1781335859549gc-count: 14 -_bk;t=1781335859549gc-time: 47ms -_bk;t=1781335859549install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 -_bk;t=1781335859549java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk -_bk;t=1781335859549java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335859549java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335859549local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335859549max-heap-size: 31658MB -_bk;t=1781335859549output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 -_bk;t=1781335859549output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out -_bk;t=1781335859549package_path: %workspace% -_bk;t=1781335859549release: release 9.1.0 -_bk;t=1781335859549repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335859549server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073043.2887 -_bk;t=1781335859549server_pid: 2887 -_bk;t=1781335859549used-heap-size: 42MB -_bk;t=1781335859549workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335859549Computing main repo mapping: -_bk;t=1781335859549Loading: -_bk;t=1781335859549Loading: 0 packages loaded -_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335859549 -_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335859549INFO: Elapsed time: 0.817s, Critical Path: 0.03s -_bk;t=1781335859549INFO: 1 process: 1 internal. -_bk;t=1781335859549ERROR: Build did NOT complete successfully -_bk;t=1781335859549FAILED: -_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested -_bk;t=1781335859549================================================================================ -_bk;t=1781335859549==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335859549Extracting Bazel installation... -_bk;t=1781335859549Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335859549bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335859549bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335859549bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335859549character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335859549command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log -_bk;t=1781335859549committed-heap-size: 117MB -_bk;t=1781335859549execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main -_bk;t=1781335859549gc-count: 14 -_bk;t=1781335859549gc-time: 48ms -_bk;t=1781335859549install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 -_bk;t=1781335859549java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk -_bk;t=1781335859549java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335859549java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335859549local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335859549max-heap-size: 31658MB -_bk;t=1781335859549output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 -_bk;t=1781335859549output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out -_bk;t=1781335859549package_path: %workspace% -_bk;t=1781335859549release: release 9.1.0 -_bk;t=1781335859549repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335859549server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073049.3435 -_bk;t=1781335859549server_pid: 3435 -_bk;t=1781335859549used-heap-size: 42MB -_bk;t=1781335859549workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335859549Computing main repo mapping: -_bk;t=1781335859549Loading: -_bk;t=1781335859549Loading: 0 packages loaded -_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335859549Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335859549 -_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335859549INFO: Elapsed time: 0.845s, Critical Path: 0.02s -_bk;t=1781335859549INFO: 1 process: 1 internal. -_bk;t=1781335859549ERROR: Build did NOT complete successfully -_bk;t=1781335859549FAILED: -_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested -_bk;t=1781335859549================================================================================ -_bk;t=1781335859549==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335859549$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335859549Extracting Bazel installation... -_bk;t=1781335859549Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335859549bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335859549bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335859549bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335859549character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335859549command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log -_bk;t=1781335859549committed-heap-size: 117MB -_bk;t=1781335859549execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main -_bk;t=1781335859549gc-count: 14 -_bk;t=1781335859549gc-time: 43ms -_bk;t=1781335859549install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 -_bk;t=1781335859549java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk -_bk;t=1781335859549java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335859549java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335859549local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335859549max-heap-size: 31658MB -_bk;t=1781335859549output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 -_bk;t=1781335859549output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out -_bk;t=1781335859549package_path: %workspace% -_bk;t=1781335859549release: release 9.1.0 -_bk;t=1781335859549repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335859549server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-p2kk.buildkite-agent.log.java.20260613-073055.3982 -_bk;t=1781335859550server_pid: 3982 -_bk;t=1781335859550used-heap-size: 42MB -_bk;t=1781335859550workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335859550$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335859550Computing main repo mapping: -_bk;t=1781335859550Loading: -_bk;t=1781335859550Loading: 0 packages loaded -_bk;t=1781335859550Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335859550Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335859550 -_bk;t=1781335859550ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335859550INFO: Elapsed time: 0.862s, Critical Path: 0.03s -_bk;t=1781335859550INFO: 1 process: 1 internal. -_bk;t=1781335859550ERROR: Build did NOT complete successfully -_bk;t=1781335859550FAILED: -_bk;t=1781335859550ERROR: No test targets were found, yet testing was requested -_bk;t=1781335859550================================================================================ -_bk;t=1781335859550(07:30:59) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335859550 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335860516buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=17813358605292026-06-13 07:31:00 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" -_bk;t=17813358605302026-06-13 07:31:00 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration -_bk;t=17813358605302026-06-13 07:31:00 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358606262026-06-13 07:31:00 INFO  Uploading 019ebfe4-2572-41ed-96a5-803f865193d1 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) -_bk;t=17813358608342026-06-13 07:31:00 INFO  Artifact uploads completed successfully -_bk;t=1781335865618 _bk;t=1781335865618 _bk;t=1781335865618(07:31:05) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335865618 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 5s local, remote-cache -_bk;t=1781335870619 _bk;t=1781335870619 _bk;t=1781335870619(07:31:10) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335870619 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 10s local, remote-cache -_bk;t=1781335880426 _bk;t=1781335880426 _bk;t=1781335880426(07:31:20) WARNING: //tests/integration:uv_lock_test_bazel_8.5.1: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335880426(07:31:20) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335880426 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 20s local, remote-cache -_bk;t=1781335885619 _bk;t=1781335885619 _bk;t=1781335885619(07:31:25) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 -_bk;t=1781335885619 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 4s local, remote-cache -_bk;t=1781335890620 _bk;t=1781335890620 _bk;t=1781335890620(07:31:30) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 -_bk;t=1781335890620 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 9s local, remote-cache -_bk;t=1781335899442 _bk;t=1781335899442 _bk;t=1781335899442(07:31:39) WARNING: //tests/integration:uv_lock_test_bazel_9.1.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335899442(07:31:39) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 -_bk;t=1781335899442 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335905620 _bk;t=1781335905620 _bk;t=1781335905620(07:31:45) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 -_bk;t=1781335905620 Testing //tests/integration:uv_lock_test_bazel_self; 4s local, remote-cache -_bk;t=1781335915621 _bk;t=1781335915621 _bk;t=1781335915621(07:31:55) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 -_bk;t=1781335915621 Testing //tests/integration:uv_lock_test_bazel_self; 14s local, remote-cache -_bk;t=1781335918453 _bk;t=1781335918453 _bk;t=1781335918453(07:31:58) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335918453(07:31:58) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 -_bk;t=1781335918453 Testing //tests/integration:uv_lock_test_bazel_self; 17s local, remote-cache -_bk;t=1781335925622 _bk;t=1781335925622 _bk;t=1781335925622(07:32:05) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 -_bk;t=1781335925622 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 5s local, remote-cache -_bk;t=1781335935622 _bk;t=1781335935622 _bk;t=1781335935622(07:32:15) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 -_bk;t=1781335935622 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 15s local, remote-cache -_bk;t=1781335939549 _bk;t=1781335939549 _bk;t=1781335939549(07:32:19) WARNING: //tests/integration:uv_lock_test_bazel_7.7.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335939549(07:32:19) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 -_bk;t=1781335939549 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 19s local, remote-cache -_bk;t=1781335944000 _bk;t=1781335944000 _bk;t=1781335944000(07:32:24) INFO: Found 53 test targets... -_bk;t=1781335944000(07:32:24) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 -_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: Elapsed time: 103.543s, Critical Path: 20.55s -_bk;t=1781335944023(07:32:24) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 -_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: 54 processes: 97 remote cache hit, 1 internal, 13 local. -_bk;t=1781335944023(07:32:24) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 -_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: Build completed, 1 test FAILED, 54 total actions -_bk;t=1781335944023(07:32:24) INFO: -_bk;t=1781335944023 _bk;t=1781335944023(07:32:24) INFO: -_bk;t=1781335944027 _bk;t=1781335944027//tests/integration:compile_pip_requirements_test_bazel_7.7.0 (cached) PASSED in 12.0s -_bk;t=1781335944027(07:32:24) INFO: -_bk;t=1781335944027 _bk;t=1781335944027//tests/integration:compile_pip_requirements_test_bazel_8.5.1 (cached) PASSED in 11.9s -_bk;t=1781335944027(07:32:24) INFO: -_bk;t=1781335944027 //tests/integration:compile_pip_requirements_test_bazel_9.1.0 (cached) PASSED in 11.9s -_bk;t=1781335944027(07:32:24) INFO: -_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_test_bazel_self (cached) PASSED in 11.0s -_bk;t=1781335944028(07:32:24) INFO: -_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_7.7.0 (cached) PASSED in 10.6s -_bk;t=1781335944028(07:32:24) INFO: -_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_8.5.1 (cached) PASSED in 11.5s -_bk;t=1781335944028(07:32:24) INFO: -_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_9.1.0 (cached) PASSED in 12.0s -_bk;t=1781335944028(07:32:24) INFO: -_bk;t=1781335944028 _bk;t=1781335944028//tests/integration:compile_pip_requirements_workspace_test_bazel_self (cached) PASSED in 11.6s -_bk;t=1781335944029(07:32:24) INFO: -_bk;t=1781335944029 _bk;t=1781335944029//tests/integration:custom_commands_test_bazel_7.7.0 (cached) PASSED in 9.9s -_bk;t=1781335944029(07:32:24) INFO: -_bk;t=1781335944029 _bk;t=1781335944029//tests/integration:custom_commands_test_bazel_8.5.1 (cached) PASSED in 10.8s -_bk;t=1781335944029(07:32:24) INFO: -_bk;t=1781335944029 //tests/integration:custom_commands_test_bazel_9.1.0 (cached) PASSED in 9.8s -_bk;t=1781335944029(07:32:24) INFO: -_bk;t=1781335944029 //tests/integration:custom_commands_test_bazel_self (cached) PASSED in 9.3s -_bk;t=1781335944030(07:32:24) INFO: -_bk;t=1781335944030 _bk;t=1781335944030//tests/integration:local_toolchains_test_bazel_7.7.0 (cached) PASSED in 10.9s -_bk;t=1781335944030(07:32:24) INFO: -_bk;t=1781335944030 _bk;t=1781335944030//tests/integration:local_toolchains_test_bazel_8.5.1 (cached) PASSED in 11.4s -_bk;t=1781335944030(07:32:24) INFO: -_bk;t=1781335944030 _bk;t=1781335944030//tests/integration:local_toolchains_test_bazel_9.1.0 (cached) PASSED in 10.8s -_bk;t=1781335944030(07:32:24) INFO: -_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 10.6s -_bk;t=1781335944031(07:32:24) INFO: -_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_workspace_test_bazel_7.7.0 (cached) PASSED in 9.8s -_bk;t=1781335944031(07:32:24) INFO: -_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_workspace_test_bazel_8.5.1 (cached) PASSED in 11.1s -_bk;t=1781335944031(07:32:24) INFO: -_bk;t=1781335944031 _bk;t=1781335944031//tests/integration:local_toolchains_workspace_test_bazel_9.1.0 (cached) PASSED in 10.9s -_bk;t=1781335944031(07:32:24) INFO: -_bk;t=1781335944032 //tests/integration:local_toolchains_workspace_test_bazel_self (cached) PASSED in 10.6s -_bk;t=1781335944032(07:32:24) INFO: -_bk;t=1781335944032 //tests/integration:pip_parse_isolated_test_bazel_7.7.0 (cached) PASSED in 11.8s -_bk;t=1781335944032(07:32:24) INFO: -_bk;t=1781335944032 _bk;t=1781335944032//tests/integration:pip_parse_isolated_test_bazel_8.5.1 (cached) PASSED in 12.2s -_bk;t=1781335944032(07:32:24) INFO: -_bk;t=1781335944032 _bk;t=1781335944032//tests/integration:pip_parse_isolated_test_bazel_9.1.0 (cached) PASSED in 12.1s -_bk;t=1781335944032(07:32:24) INFO: -_bk;t=1781335944033 //tests/integration:pip_parse_isolated_test_bazel_self (cached) PASSED in 11.5s -_bk;t=1781335944033(07:32:24) INFO: -_bk;t=1781335944033 _bk;t=1781335944033//tests/integration:pip_parse_test_bazel_7.7.0 (cached) PASSED in 11.1s -_bk;t=1781335944033(07:32:24) INFO: -_bk;t=1781335944033 _bk;t=1781335944033//tests/integration:pip_parse_test_bazel_8.5.1 (cached) PASSED in 11.8s -_bk;t=1781335944033(07:32:24) INFO: -_bk;t=1781335944033 _bk;t=1781335944033//tests/integration:pip_parse_test_bazel_9.1.0 (cached) PASSED in 10.6s -_bk;t=1781335944033(07:32:24) INFO: -_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_test_bazel_self (cached) PASSED in 10.0s -_bk;t=1781335944034(07:32:24) INFO: -_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_workspace_test_bazel_7.7.0 (cached) PASSED in 9.0s -_bk;t=1781335944034(07:32:24) INFO: -_bk;t=1781335944034 //tests/integration:pip_parse_workspace_test_bazel_8.5.1 (cached) PASSED in 10.5s -_bk;t=1781335944034(07:32:24) INFO: -_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_workspace_test_bazel_9.1.0 (cached) PASSED in 10.4s -_bk;t=1781335944034(07:32:24) INFO: -_bk;t=1781335944034 _bk;t=1781335944034//tests/integration:pip_parse_workspace_test_bazel_self (cached) PASSED in 10.1s -_bk;t=1781335944035(07:32:24) INFO: -_bk;t=1781335944035 _bk;t=1781335944035//tests/integration:py_cc_toolchain_registered_test_bazel_7.7.0 (cached) PASSED in 9.8s -_bk;t=1781335944035(07:32:24) INFO: -_bk;t=1781335944035 _bk;t=1781335944035//tests/integration:py_cc_toolchain_registered_test_bazel_8.5.1 (cached) PASSED in 10.3s -_bk;t=1781335944035(07:32:24) INFO: -_bk;t=1781335944035 _bk;t=1781335944035//tests/integration:py_cc_toolchain_registered_test_bazel_9.1.0 (cached) PASSED in 10.4s -_bk;t=1781335944035(07:32:24) INFO: -_bk;t=1781335944035 //tests/integration:py_cc_toolchain_registered_test_bazel_self (cached) PASSED in 9.5s -_bk;t=1781335944035(07:32:24) INFO: -_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_7.7.0 (cached) PASSED in 7.8s -_bk;t=1781335944036(07:32:24) INFO: -_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_8.5.1 (cached) PASSED in 9.5s -_bk;t=1781335944036(07:32:24) INFO: -_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_9.1.0 (cached) PASSED in 10.2s -_bk;t=1781335944036(07:32:24) INFO: -_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_self (cached) PASSED in 9.4s -_bk;t=1781335944036(07:32:24) INFO: -_bk;t=1781335944036 _bk;t=1781335944036//tests/integration:runtime_manifests_test_bazel_7.7.0 (cached) PASSED in 11.1s -_bk;t=1781335944036(07:32:24) INFO: -_bk;t=1781335944036 //tests/integration:runtime_manifests_test_bazel_8.5.1 (cached) PASSED in 11.3s -_bk;t=1781335944037(07:32:24) INFO: -_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:runtime_manifests_test_bazel_9.1.0 (cached) PASSED in 11.2s -_bk;t=1781335944037(07:32:24) INFO: -_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:runtime_manifests_test_bazel_self (cached) PASSED in 10.7s -_bk;t=1781335944037(07:32:24) INFO: -_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:toolchain_target_settings_test_bazel_7.7.0 (cached) PASSED in 11.4s -_bk;t=1781335944037(07:32:24) INFO: -_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:toolchain_target_settings_test_bazel_8.5.1 (cached) PASSED in 12.3s -_bk;t=1781335944037(07:32:24) INFO: -_bk;t=1781335944037 _bk;t=1781335944037//tests/integration:toolchain_target_settings_test_bazel_9.1.0 (cached) PASSED in 11.4s -_bk;t=1781335944038(07:32:24) INFO: -_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:toolchain_target_settings_test_bazel_self (cached) PASSED in 11.1s -_bk;t=1781335944038(07:32:24) INFO: -_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_7.7.0 PASSED in 19.8s -_bk;t=1781335944038(07:32:24) INFO: -_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_8.5.1 PASSED in 20.4s -_bk;t=1781335944038(07:32:24) INFO: -_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_9.1.0 PASSED in 18.7s -_bk;t=1781335944038(07:32:24) INFO: -_bk;t=1781335944038 _bk;t=1781335944038//tests/integration:uv_lock_test_bazel_self PASSED in 17.5s -_bk;t=1781335944039(07:32:24) INFO: -_bk;t=1781335944039 _bk;t=1781335944039//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 6.4s -_bk;t=1781335944039 Stats over 3 runs: max = 6.4s, min = 5.6s, avg = 5.9s, dev = 0.4s -_bk;t=1781335944039(07:32:24) INFO: -_bk;t=1781335944039 _bk;t=1781335944039 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335944039(07:32:24) INFO: -_bk;t=1781335944039 _bk;t=1781335944039 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335944039(07:32:24) INFO: -_bk;t=1781335944039 _bk;t=1781335944039 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335944039(07:32:24) INFO: -_bk;t=1781335944040 _bk;t=1781335944040 -_bk;t=1781335944040(07:32:24) INFO: -_bk;t=1781335944040 _bk;t=1781335944040Executed 5 out of 53 tests: 52 tests pass and 1 fails locally. -_bk;t=1781335944040(07:32:24) INFO: -_bk;t=1781335944040 _bk;t=1781335944040There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. -_bk;t=1781335944040(07:32:24) INFO: -_bk;t=1781335944301 (07:32:24) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/a570592b-22f7-4334-a87f-f392db6d25a0 -_bk;t=1781335944301bazel info output_base -_bk;t=1781335944497WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335944497INFO: Invocation ID: 92b811ad-7bbd-47d8-8a70-1561d7bc3fbd -_bk;t=1781335944505 -_bk;t=1781335944505 -_bk;t=1781335944505--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=1781335944505 -_bk;t=1781335944505 -_bk;t=1781335944505buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=17813359445212026-06-13 07:32:24 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" -_bk;t=17813359445212026-06-13 07:32:24 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration -_bk;t=17813359445212026-06-13 07:32:24 INFO  Creating (0-1)/1 artifacts -_bk;t=17813359446232026-06-13 07:32:24 INFO  Uploading 019ebfe5-6d8d-453b-b9c2-5bb874b45455 var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (167 KiB) -_bk;t=17813359448332026-06-13 07:32:24 INFO  Artifact uploads completed successfully -_bk;t=1781335944847buildkite-agent artifact upload /tmp/tmp48yzaz_j/test_bep.json -_bk;t=17813359448622026-06-13 07:32:24 INFO  Found 1 files that match "/tmp/tmp48yzaz_j/test_bep.json" -_bk;t=17813359448632026-06-13 07:32:24 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-485c-806c-39bfc8991bf8"), using your agent configuration -_bk;t=17813359448632026-06-13 07:32:24 INFO  Creating (0-1)/1 artifacts -_bk;t=17813359449612026-06-13 07:32:24 INFO  Uploading 019ebfe5-6ee1-4e8f-b725-de8419dccb35 tmp/tmp48yzaz_j/test_bep.json (464 KiB) -_bk;t=17813359451612026-06-13 07:32:25 INFO  Artifact uploads completed successfully -_bk;t=1781335945162bazel test failed with exit code 3 -_bk;t=1781335946994^^^ +++ -_bk;t=1781335946994🚨 Error: The command exited with status 3 -_bk;t=1781335946994^^^ +++ -_bk;t=1781335946994user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 -_bk;t=1781335946994~~~ Running plugin docker-buildkite-plugin pre-exit hook -_bk;t=1781335946994$ /etc/buildkite-agent/plugins/bk-docker-p2kk/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log deleted file mode 100644 index 2a3c1c0f2a..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log +++ /dev/null @@ -1,744 +0,0 @@ -_bk;t=1781335816034~~~ Running agent environment hook -_bk;t=1781335816034$ /etc/buildkite-agent/hooks/environment -_bk;t=1781335816069# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756" -_bk;t=1781335816069~~~ Preparing plugins -_bk;t=1781335816069# Plugin "docker-buildkite-plugin" will be checked out to "/etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0" -_bk;t=1781335816070$ mktemp -dp /etc/buildkite-agent/plugins -_bk;t=1781335816070# Switching to the temporary plugin directory -_bk;t=1781335816070$ cd /etc/buildkite-agent/plugins/1377464703 -_bk;t=1781335816070$ git clone -v --recursive -- https://github.com/buildkite-plugins/docker-buildkite-plugin . -_bk;t=1781335816073Cloning into '.'... -_bk;t=1781335816239POST git-upload-pack (175 bytes) -_bk;t=1781335816281POST git-upload-pack (gzip 3102 to 1570 bytes) -_bk;t=1781335816324remote: Enumerating objects: 2225, done._bk;t=1781335816324 -_bk;t=1781335816324remote: Counting objects: 0% (1/321)_bk;t=1781335816324 remote: Counting objects: 1% (4/321)_bk;t=1781335816324 remote: Counting objects: 2% (7/321)_bk;t=1781335816324 remote: Counting objects: 3% (10/321)_bk;t=1781335816324 remote: Counting objects: 4% (13/321)_bk;t=1781335816324 remote: Counting objects: 5% (17/321)_bk;t=1781335816324 remote: Counting objects: 6% (20/321)_bk;t=1781335816324 remote: Counting objects: 7% (23/321)_bk;t=1781335816324 remote: Counting objects: 8% (26/321)_bk;t=1781335816324 remote: Counting objects: 9% (29/321)_bk;t=1781335816324 remote: Counting objects: 10% (33/321)_bk;t=1781335816324 remote: Counting objects: 11% (36/321)_bk;t=1781335816324 remote: Counting objects: 12% (39/321)_bk;t=1781335816324 remote: Counting objects: 13% (42/321)_bk;t=1781335816324 remote: Counting objects: 14% (45/321)_bk;t=1781335816324 remote: Counting objects: 15% (49/321)_bk;t=1781335816324 remote: Counting objects: 16% (52/321)_bk;t=1781335816324 remote: Counting objects: 17% (55/321)_bk;t=1781335816324 remote: Counting objects: 18% (58/321)_bk;t=1781335816324 remote: Counting objects: 19% (61/321)_bk;t=1781335816324 remote: Counting objects: 20% (65/321)_bk;t=1781335816324 remote: Counting objects: 21% (68/321)_bk;t=1781335816324 remote: Counting objects: 22% (71/321)_bk;t=1781335816324 remote: Counting objects: 23% (74/321)_bk;t=1781335816324 remote: Counting objects: 24% (78/321)_bk;t=1781335816324 remote: Counting objects: 25% (81/321)_bk;t=1781335816324 remote: Counting objects: 26% (84/321)_bk;t=1781335816324 remote: Counting objects: 27% (87/321)_bk;t=1781335816324 remote: Counting objects: 28% (90/321)_bk;t=1781335816324 remote: Counting objects: 29% (94/321)_bk;t=1781335816324 remote: Counting objects: 30% (97/321)_bk;t=1781335816325 remote: Counting objects: 31% (100/321)_bk;t=1781335816325 remote: Counting objects: 32% (103/321)_bk;t=1781335816325 remote: Counting objects: 33% (106/321)_bk;t=1781335816325 remote: Counting objects: 34% (110/321)_bk;t=1781335816325 remote: Counting objects: 35% (113/321)_bk;t=1781335816325 remote: Counting objects: 36% (116/321)_bk;t=1781335816325 remote: Counting objects: 37% (119/321)_bk;t=1781335816325 remote: Counting objects: 38% (122/321)_bk;t=1781335816325 remote: Counting objects: 39% (126/321)_bk;t=1781335816325 remote: Counting objects: 40% (129/321)_bk;t=1781335816325 remote: Counting objects: 41% (132/321)_bk;t=1781335816325 remote: Counting objects: 42% (135/321)_bk;t=1781335816325 remote: Counting objects: 43% (139/321)_bk;t=1781335816325 remote: Counting objects: 44% (142/321)_bk;t=1781335816325 remote: Counting objects: 45% (145/321)_bk;t=1781335816325 remote: Counting objects: 46% (148/321)_bk;t=1781335816325 remote: Counting objects: 47% (151/321)_bk;t=1781335816325 remote: Counting objects: 48% (155/321)_bk;t=1781335816325 remote: Counting objects: 49% (158/321)_bk;t=1781335816325 remote: Counting objects: 50% (161/321)_bk;t=1781335816325 remote: Counting objects: 51% (164/321)_bk;t=1781335816325 remote: Counting objects: 52% (167/321)_bk;t=1781335816325 remote: Counting objects: 53% (171/321)_bk;t=1781335816325 remote: Counting objects: 54% (174/321)_bk;t=1781335816325 remote: Counting objects: 55% (177/321)_bk;t=1781335816325 remote: Counting objects: 56% (180/321)_bk;t=1781335816325 remote: Counting objects: 57% (183/321)_bk;t=1781335816325 remote: Counting objects: 58% (187/321)_bk;t=1781335816325 remote: Counting objects: 59% (190/321)_bk;t=1781335816325 remote: Counting objects: 60% (193/321)_bk;t=1781335816325 remote: Counting objects: 61% (196/321)_bk;t=1781335816325 remote: Counting objects: 62% (200/321)_bk;t=1781335816325 remote: Counting objects: 63% (203/321)_bk;t=1781335816325 remote: Counting objects: 64% (206/321)_bk;t=1781335816325 remote: Counting objects: 65% (209/321)_bk;t=1781335816325 remote: Counting objects: 66% (212/321)_bk;t=1781335816325 remote: Counting objects: 67% (216/321)_bk;t=1781335816325 remote: Counting objects: 68% (219/321)_bk;t=1781335816325 remote: Counting objects: 69% (222/321)_bk;t=1781335816325 remote: Counting objects: 70% (225/321)_bk;t=1781335816325 remote: Counting objects: 71% (228/321)_bk;t=1781335816325 remote: Counting objects: 72% (232/321)_bk;t=1781335816325 remote: Counting objects: 73% (235/321)_bk;t=1781335816325 remote: Counting objects: 74% (238/321)_bk;t=1781335816325 remote: Counting objects: 75% (241/321)_bk;t=1781335816325 remote: Counting objects: 76% (244/321)_bk;t=1781335816325 remote: Counting objects: 77% (248/321)_bk;t=1781335816325 remote: Counting objects: 78% (251/321)_bk;t=1781335816325 remote: Counting objects: 79% (254/321)_bk;t=1781335816325 remote: Counting objects: 80% (257/321)_bk;t=1781335816325 remote: Counting objects: 81% (261/321)_bk;t=1781335816325 remote: Counting objects: 82% (264/321)_bk;t=1781335816325 remote: Counting objects: 83% (267/321)_bk;t=1781335816325 remote: Counting objects: 84% (270/321)_bk;t=1781335816325 remote: Counting objects: 85% (273/321)_bk;t=1781335816325 remote: Counting objects: 86% (277/321)_bk;t=1781335816325 remote: Counting objects: 87% (280/321)_bk;t=1781335816325 remote: Counting objects: 88% (283/321)_bk;t=1781335816325 remote: Counting objects: 89% (286/321)_bk;t=1781335816325 remote: Counting objects: 90% (289/321)_bk;t=1781335816325 remote: Counting objects: 91% (293/321)_bk;t=1781335816325 remote: Counting objects: 92% (296/321)_bk;t=1781335816325 remote: Counting objects: 93% (299/321)_bk;t=1781335816325 remote: Counting objects: 94% (302/321)_bk;t=1781335816325 remote: Counting objects: 95% (305/321)_bk;t=1781335816325 remote: Counting objects: 96% (309/321)_bk;t=1781335816325 remote: Counting objects: 97% (312/321)_bk;t=1781335816325 remote: Counting objects: 98% (315/321)_bk;t=1781335816325 remote: Counting objects: 99% (318/321)_bk;t=1781335816325 remote: Counting objects: 100% (321/321)_bk;t=1781335816325 remote: Counting objects: 100% (321/321), done._bk;t=1781335816325 -_bk;t=1781335816325remote: Compressing objects: 0% (1/150)_bk;t=1781335816325 remote: Compressing objects: 1% (2/150)_bk;t=1781335816325 remote: Compressing objects: 2% (3/150)_bk;t=1781335816325 remote: Compressing objects: 3% (5/150)_bk;t=1781335816325 remote: Compressing objects: 4% (6/150)_bk;t=1781335816325 remote: Compressing objects: 5% (8/150)_bk;t=1781335816341 remote: Compressing objects: 6% (9/150)_bk;t=1781335816341 remote: Compressing objects: 7% (11/150)_bk;t=1781335816341 remote: Compressing objects: 8% (12/150)_bk;t=1781335816341 remote: Compressing objects: 9% (14/150)_bk;t=1781335816341 remote: Compressing objects: 10% (15/150)_bk;t=1781335816341 remote: Compressing objects: 11% (17/150)_bk;t=1781335816341 remote: Compressing objects: 12% (18/150)_bk;t=1781335816341 remote: Compressing objects: 13% (20/150)_bk;t=1781335816341 remote: Compressing objects: 14% (21/150)_bk;t=1781335816341 remote: Compressing objects: 15% (23/150)_bk;t=1781335816341 remote: Compressing objects: 16% (24/150)_bk;t=1781335816341 remote: Compressing objects: 17% (26/150)_bk;t=1781335816341 remote: Compressing objects: 18% (27/150)_bk;t=1781335816341 remote: Compressing objects: 19% (29/150)_bk;t=1781335816341 remote: Compressing objects: 20% (30/150)_bk;t=1781335816341 remote: Compressing objects: 21% (32/150)_bk;t=1781335816341 remote: Compressing objects: 22% (33/150)_bk;t=1781335816341 remote: Compressing objects: 23% (35/150)_bk;t=1781335816341 remote: Compressing objects: 24% (36/150)_bk;t=1781335816341 remote: Compressing objects: 25% (38/150)_bk;t=1781335816341 remote: Compressing objects: 26% (39/150)_bk;t=1781335816341 remote: Compressing objects: 27% (41/150)_bk;t=1781335816341 remote: Compressing objects: 28% (42/150)_bk;t=1781335816341 remote: Compressing objects: 29% (44/150)_bk;t=1781335816341 remote: Compressing objects: 30% (45/150)_bk;t=1781335816341 remote: Compressing objects: 31% (47/150)_bk;t=1781335816341 remote: Compressing objects: 32% (48/150)_bk;t=1781335816341 remote: Compressing objects: 33% (50/150)_bk;t=1781335816341 remote: Compressing objects: 34% (51/150)_bk;t=1781335816341 remote: Compressing objects: 35% (53/150)_bk;t=1781335816341 remote: Compressing objects: 36% (54/150)_bk;t=1781335816341 remote: Compressing objects: 37% (56/150)_bk;t=1781335816341 remote: Compressing objects: 38% (57/150)_bk;t=1781335816341 remote: Compressing objects: 39% (59/150)_bk;t=1781335816341 remote: Compressing objects: 40% (60/150)_bk;t=1781335816341 remote: Compressing objects: 41% (62/150)_bk;t=1781335816341 remote: Compressing objects: 42% (63/150)_bk;t=1781335816341 remote: Compressing objects: 43% (65/150)_bk;t=1781335816341 remote: Compressing objects: 44% (66/150)_bk;t=1781335816341 remote: Compressing objects: 45% (68/150)_bk;t=1781335816341 remote: Compressing objects: 46% (69/150)_bk;t=1781335816341 remote: Compressing objects: 47% (71/150)_bk;t=1781335816341 remote: Compressing objects: 48% (72/150)_bk;t=1781335816341 remote: Compressing objects: 49% (74/150)_bk;t=1781335816341 remote: Compressing objects: 50% (75/150)_bk;t=1781335816341 remote: Compressing objects: 51% (77/150)_bk;t=1781335816341 remote: Compressing objects: 52% (78/150)_bk;t=1781335816341 remote: Compressing objects: 53% (80/150)_bk;t=1781335816341 remote: Compressing objects: 54% (81/150)_bk;t=1781335816341 remote: Compressing objects: 55% (83/150)_bk;t=1781335816341 remote: Compressing objects: 56% (84/150)_bk;t=1781335816341 remote: Compressing objects: 57% (86/150)_bk;t=1781335816341 remote: Compressing objects: 58% (87/150)_bk;t=1781335816341 remote: Compressing objects: 59% (89/150)_bk;t=1781335816341 remote: Compressing objects: 60% (90/150)_bk;t=1781335816341 remote: Compressing objects: 61% (92/150)_bk;t=1781335816341 remote: Compressing objects: 62% (93/150)_bk;t=1781335816341 remote: Compressing objects: 63% (95/150)_bk;t=1781335816341 remote: Compressing objects: 64% (96/150)_bk;t=1781335816341 remote: Compressing objects: 65% (98/150)_bk;t=1781335816341 remote: Compressing objects: 66% (99/150)_bk;t=1781335816341 remote: Compressing objects: 67% (101/150)_bk;t=1781335816341 remote: Compressing objects: 68% (102/150)_bk;t=1781335816341 remote: Compressing objects: 69% (104/150)_bk;t=1781335816341 remote: Compressing objects: 70% (105/150)_bk;t=1781335816341 remote: Compressing objects: 71% (107/150)_bk;t=1781335816341 remote: Compressing objects: 72% (108/150)_bk;t=1781335816341 remote: Compressing objects: 73% (110/150)_bk;t=1781335816341 remote: Compressing objects: 74% (111/150)_bk;t=1781335816341 remote: Compressing objects: 75% (113/150)_bk;t=1781335816341 remote: Compressing objects: 76% (114/150)_bk;t=1781335816341 remote: Compressing objects: 77% (116/150)_bk;t=1781335816342 remote: Compressing objects: 78% (117/150)_bk;t=1781335816342 remote: Compressing objects: 79% (119/150)_bk;t=1781335816342 remote: Compressing objects: 80% (120/150)_bk;t=1781335816342 remote: Compressing objects: 81% (122/150)_bk;t=1781335816342 remote: Compressing objects: 82% (123/150)_bk;t=1781335816342 remote: Compressing objects: 83% (125/150)_bk;t=1781335816342 remote: Compressing objects: 84% (126/150)_bk;t=1781335816342 remote: Compressing objects: 85% (128/150)_bk;t=1781335816342 remote: Compressing objects: 86% (129/150)_bk;t=1781335816342 remote: Compressing objects: 87% (131/150)_bk;t=1781335816342 remote: Compressing objects: 88% (132/150)_bk;t=1781335816342 remote: Compressing objects: 89% (134/150)_bk;t=1781335816342 remote: Compressing objects: 90% (135/150)_bk;t=1781335816342 remote: Compressing objects: 91% (137/150)_bk;t=1781335816342 remote: Compressing objects: 92% (138/150)_bk;t=1781335816342 remote: Compressing objects: 93% (140/150)_bk;t=1781335816342 remote: Compressing objects: 94% (141/150)_bk;t=1781335816342 remote: Compressing objects: 95% (143/150)_bk;t=1781335816342 remote: Compressing objects: 96% (144/150)_bk;t=1781335816342 remote: Compressing objects: 97% (146/150)_bk;t=1781335816342 remote: Compressing objects: 98% (147/150)_bk;t=1781335816342 remote: Compressing objects: 99% (149/150)_bk;t=1781335816342 remote: Compressing objects: 100% (150/150)_bk;t=1781335816342 remote: Compressing objects: 100% (150/150), done._bk;t=1781335816342 -_bk;t=1781335816350Receiving objects: 0% (1/2225) Receiving objects: 1% (23/2225) Receiving objects: 2% (45/2225) Receiving objects: 3% (67/2225) Receiving objects: 4% (89/2225) Receiving objects: 5% (112/2225) Receiving objects: 6% (134/2225) Receiving objects: 7% (156/2225) Receiving objects: 8% (178/2225) Receiving objects: 9% (201/2225) Receiving objects: 10% (223/2225) Receiving objects: 11% (245/2225) Receiving objects: 12% (267/2225) Receiving objects: 13% (290/2225) Receiving objects: 14% (312/2225) Receiving objects: 15% (334/2225) Receiving objects: 16% (356/2225) Receiving objects: 17% (379/2225) Receiving objects: 18% (401/2225) Receiving objects: 19% (423/2225) Receiving objects: 20% (445/2225) Receiving objects: 21% (468/2225) Receiving objects: 22% (490/2225) Receiving objects: 23% (512/2225) Receiving objects: 24% (534/2225) Receiving objects: 25% (557/2225) Receiving objects: 26% (579/2225) Receiving objects: 27% (601/2225) Receiving objects: 28% (623/2225) Receiving objects: 29% (646/2225) Receiving objects: 30% (668/2225) Receiving objects: 31% (690/2225) Receiving objects: 32% (712/2225) Receiving objects: 33% (735/2225) Receiving objects: 34% (757/2225) Receiving objects: 35% (779/2225) Receiving objects: 36% (801/2225) Receiving objects: 37% (824/2225) Receiving objects: 38% (846/2225) Receiving objects: 39% (868/2225) Receiving objects: 40% (890/2225) Receiving objects: 41% (913/2225) Receiving objects: 42% (935/2225) Receiving objects: 43% (957/2225) Receiving objects: 44% (979/2225) Receiving objects: 45% (1002/2225) Receiving objects: 46% (1024/2225) Receiving objects: 47% (1046/2225) Receiving objects: 48% (1068/2225) Receiving objects: 49% (1091/2225) Receiving objects: 50% (1113/2225) Receiving objects: 51% (1135/2225) Receiving objects: 52% (1157/2225) Receiving objects: 53% (1180/2225) Receiving objects: 54% (1202/2225) Receiving objects: 55% (1224/2225) Receiving objects: 56% (1246/2225) Receiving objects: 57% (1269/2225) Receiving objects: 58% (1291/2225) Receiving objects: 59% (1313/2225) Receiving objects: 60% (1335/2225) Receiving objects: 61% (1358/2225) Receiving objects: 62% (1380/2225) Receiving objects: 63% (1402/2225) Receiving objects: 64% (1424/2225) Receiving objects: 65% (1447/2225) Receiving objects: 66% (1469/2225) Receiving objects: 67% (1491/2225) Receiving objects: 68% (1513/2225) Receiving objects: 69% (1536/2225) Receiving objects: 70% (1558/2225) Receiving objects: 71% (1580/2225) Receiving objects: 72% (1602/2225) Receiving objects: 73% (1625/2225) Receiving objects: 74% (1647/2225) Receiving objects: 75% (1669/2225) Receiving objects: 76% (1691/2225) Receiving objects: 77% (1714/2225) Receiving objects: 78% (1736/2225) Receiving objects: 79% (1758/2225) Receiving objects: 80% (1780/2225) Receiving objects: 81% (1803/2225) Receiving objects: 82% (1825/2225) Receiving objects: 83% (1847/2225) Receiving objects: 84% (1869/2225) remote: Total 2225 (delta 206), reused 171 (delta 170), pack-reused 1904 (from 3)_bk;t=1781335816427 -_bk;t=1781335816427Receiving objects: 85% (1892/2225) Receiving objects: 86% (1914/2225) Receiving objects: 87% (1936/2225) Receiving objects: 88% (1958/2225) Receiving objects: 89% (1981/2225) Receiving objects: 90% (2003/2225) Receiving objects: 91% (2025/2225) Receiving objects: 92% (2047/2225) Receiving objects: 93% (2070/2225) Receiving objects: 94% (2092/2225) Receiving objects: 95% (2114/2225) Receiving objects: 96% (2136/2225) Receiving objects: 97% (2159/2225) Receiving objects: 98% (2181/2225) Receiving objects: 99% (2203/2225) Receiving objects: 100% (2225/2225) Receiving objects: 100% (2225/2225), 567.77 KiB | 6.92 MiB/s, done. -_bk;t=1781335816429Resolving deltas: 0% (0/1109) Resolving deltas: 1% (12/1109) Resolving deltas: 2% (23/1109) Resolving deltas: 3% (34/1109) Resolving deltas: 4% (45/1109) Resolving deltas: 5% (56/1109) Resolving deltas: 6% (67/1109) Resolving deltas: 7% (78/1109) Resolving deltas: 8% (89/1109) Resolving deltas: 9% (100/1109) Resolving deltas: 10% (111/1109) Resolving deltas: 11% (122/1109) Resolving deltas: 12% (134/1109) Resolving deltas: 13% (145/1109) Resolving deltas: 14% (156/1109) Resolving deltas: 15% (168/1109) Resolving deltas: 16% (178/1109) Resolving deltas: 17% (189/1109) Resolving deltas: 18% (200/1109) Resolving deltas: 19% (211/1109) Resolving deltas: 20% (222/1109) Resolving deltas: 21% (233/1109) Resolving deltas: 22% (244/1109) Resolving deltas: 23% (256/1109) Resolving deltas: 24% (267/1109) Resolving deltas: 25% (278/1109) Resolving deltas: 26% (289/1109) Resolving deltas: 27% (300/1109) Resolving deltas: 28% (311/1109) Resolving deltas: 29% (322/1109) Resolving deltas: 30% (333/1109) Resolving deltas: 31% (344/1109) Resolving deltas: 32% (355/1109) Resolving deltas: 33% (366/1109) Resolving deltas: 34% (379/1109) Resolving deltas: 35% (390/1109) Resolving deltas: 36% (400/1109) Resolving deltas: 37% (411/1109) Resolving deltas: 38% (422/1109) Resolving deltas: 39% (434/1109) Resolving deltas: 40% (444/1109) Resolving deltas: 41% (455/1109) Resolving deltas: 42% (466/1109) Resolving deltas: 43% (477/1109) Resolving deltas: 44% (488/1109) Resolving deltas: 45% (500/1109) Resolving deltas: 46% (511/1109) Resolving deltas: 47% (522/1109) Resolving deltas: 48% (533/1109) Resolving deltas: 49% (544/1109) Resolving deltas: 50% (555/1109) Resolving deltas: 51% (566/1109) Resolving deltas: 52% (577/1109) Resolving deltas: 53% (588/1109) Resolving deltas: 54% (600/1109) Resolving deltas: 55% (610/1109) Resolving deltas: 56% (622/1109) Resolving deltas: 57% (634/1109) Resolving deltas: 58% (644/1109) Resolving deltas: 59% (655/1109) Resolving deltas: 60% (666/1109) Resolving deltas: 61% (677/1109) Resolving deltas: 62% (688/1109) Resolving deltas: 63% (699/1109) Resolving deltas: 64% (710/1109) Resolving deltas: 65% (721/1109) Resolving deltas: 66% (732/1109) Resolving deltas: 67% (744/1109) Resolving deltas: 68% (755/1109) Resolving deltas: 69% (767/1109) Resolving deltas: 70% (777/1109) Resolving deltas: 71% (788/1109) Resolving deltas: 72% (800/1109) Resolving deltas: 73% (810/1109) Resolving deltas: 74% (821/1109) Resolving deltas: 75% (832/1109) Resolving deltas: 76% (843/1109) Resolving deltas: 77% (854/1109) Resolving deltas: 78% (866/1109) Resolving deltas: 79% (877/1109) Resolving deltas: 80% (888/1109) Resolving deltas: 81% (899/1109) Resolving deltas: 82% (910/1109) Resolving deltas: 83% (921/1109) Resolving deltas: 84% (932/1109) Resolving deltas: 85% (943/1109) Resolving deltas: 86% (954/1109) Resolving deltas: 87% (965/1109) Resolving deltas: 88% (976/1109) Resolving deltas: 89% (988/1109) Resolving deltas: 90% (1000/1109) Resolving deltas: 91% (1010/1109) Resolving deltas: 92% (1021/1109) Resolving deltas: 93% (1032/1109) Resolving deltas: 94% (1043/1109) Resolving deltas: 95% (1054/1109) Resolving deltas: 96% (1065/1109) Resolving deltas: 97% (1076/1109) Resolving deltas: 98% (1087/1109) Resolving deltas: 99% (1098/1109) Resolving deltas: 100% (1109/1109) Resolving deltas: 100% (1109/1109), done. -_bk;t=1781335816472# Checking out `v3.8.0` -_bk;t=1781335816472$ git checkout -f v3.8.0 -_bk;t=1781335816478Note: switching to 'v3.8.0'. -_bk;t=1781335816478 -_bk;t=1781335816478You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335816478changes and commit them, and you can discard any commits you make in this -_bk;t=1781335816478state without impacting any branches by switching back to a branch. -_bk;t=1781335816478 -_bk;t=1781335816478If you want to create a new branch to retain commits you create, you may -_bk;t=1781335816478do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335816478 -_bk;t=1781335816478 git switch -c -_bk;t=1781335816478 -_bk;t=1781335816478Or undo this operation with: -_bk;t=1781335816478 -_bk;t=1781335816478 git switch - -_bk;t=1781335816478 -_bk;t=1781335816478Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335816478 -_bk;t=1781335816478HEAD is now at b7bd3f5 Merge pull request #183 from plentiau/master -_bk;t=1781335816479# Moving temporary plugin directory to final location -_bk;t=1781335816479$ mv /etc/buildkite-agent/plugins/1377464703 /etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0 -_bk;t=1781335816479$ cd /var/lib/buildkite-agent/builds -_bk;t=1781335816479~~~ Running agent pre-checkout hook -_bk;t=1781335816479$ /etc/buildkite-agent/hooks/pre-checkout -_bk;t=1781335816498JOB_START_TIME: 1781335816498 -_bk;t=1781335816511Added: -_bk;t=1781335816511+ JOB_START_TIME -_bk;t=1781335816527~~~ Preparing working directory -_bk;t=1781335816527# Creating "/var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python" -_bk;t=1781335816527$ cd /var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python -_bk;t=1781335816528$ cd /var/lib/gitmirrors -_bk;t=1781335816537# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335816538# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously -_bk;t=1781335816538$ git --git-dir=/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head -_bk;t=1781335816794remote: Enumerating objects: 2513, done._bk;t=1781335816794 -_bk;t=1781335816794remote: Counting objects: 0% (1/1602)_bk;t=1781335816794 remote: Counting objects: 1% (17/1602)_bk;t=1781335816794 remote: Counting objects: 2% (33/1602)_bk;t=1781335816794 remote: Counting objects: 3% (49/1602)_bk;t=1781335816794 remote: Counting objects: 4% (65/1602)_bk;t=1781335816794 remote: Counting objects: 5% (81/1602)_bk;t=1781335816794 remote: Counting objects: 6% (97/1602)_bk;t=1781335816794 remote: Counting objects: 7% (113/1602)_bk;t=1781335816794 remote: Counting objects: 8% (129/1602)_bk;t=1781335816794 remote: Counting objects: 9% (145/1602)_bk;t=1781335816794 remote: Counting objects: 10% (161/1602)_bk;t=1781335816794 remote: Counting objects: 11% (177/1602)_bk;t=1781335816794 remote: Counting objects: 12% (193/1602)_bk;t=1781335816794 remote: Counting objects: 13% (209/1602)_bk;t=1781335816794 remote: Counting objects: 14% (225/1602)_bk;t=1781335816794 remote: Counting objects: 15% (241/1602)_bk;t=1781335816795 remote: Counting objects: 16% (257/1602)_bk;t=1781335816795 remote: Counting objects: 17% (273/1602)_bk;t=1781335816795 remote: Counting objects: 18% (289/1602)_bk;t=1781335816795 remote: Counting objects: 19% (305/1602)_bk;t=1781335816795 remote: Counting objects: 20% (321/1602)_bk;t=1781335816795 remote: Counting objects: 21% (337/1602)_bk;t=1781335816795 remote: Counting objects: 22% (353/1602)_bk;t=1781335816795 remote: Counting objects: 23% (369/1602)_bk;t=1781335816795 remote: Counting objects: 24% (385/1602)_bk;t=1781335816795 remote: Counting objects: 25% (401/1602)_bk;t=1781335816795 remote: Counting objects: 26% (417/1602)_bk;t=1781335816795 remote: Counting objects: 27% (433/1602)_bk;t=1781335816795 remote: Counting objects: 28% (449/1602)_bk;t=1781335816795 remote: Counting objects: 29% (465/1602)_bk;t=1781335816795 remote: Counting objects: 30% (481/1602)_bk;t=1781335816795 remote: Counting objects: 31% (497/1602)_bk;t=1781335816795 remote: Counting objects: 32% (513/1602)_bk;t=1781335816795 remote: Counting objects: 33% (529/1602)_bk;t=1781335816795 remote: Counting objects: 34% (545/1602)_bk;t=1781335816795 remote: Counting objects: 35% (561/1602)_bk;t=1781335816795 remote: Counting objects: 36% (577/1602)_bk;t=1781335816795 remote: Counting objects: 37% (593/1602)_bk;t=1781335816795 remote: Counting objects: 38% (609/1602)_bk;t=1781335816795 remote: Counting objects: 39% (625/1602)_bk;t=1781335816795 remote: Counting objects: 40% (641/1602)_bk;t=1781335816795 remote: Counting objects: 41% (657/1602)_bk;t=1781335816795 remote: Counting objects: 42% (673/1602)_bk;t=1781335816795 remote: Counting objects: 43% (689/1602)_bk;t=1781335816795 remote: Counting objects: 44% (705/1602)_bk;t=1781335816795 remote: Counting objects: 45% (721/1602)_bk;t=1781335816795 remote: Counting objects: 46% (737/1602)_bk;t=1781335816795 remote: Counting objects: 47% (753/1602)_bk;t=1781335816795 remote: Counting objects: 48% (769/1602)_bk;t=1781335816795 remote: Counting objects: 49% (785/1602)_bk;t=1781335816795 remote: Counting objects: 50% (801/1602)_bk;t=1781335816795 remote: Counting objects: 51% (818/1602)_bk;t=1781335816795 remote: Counting objects: 52% (834/1602)_bk;t=1781335816795 remote: Counting objects: 53% (850/1602)_bk;t=1781335816795 remote: Counting objects: 54% (866/1602)_bk;t=1781335816796 remote: Counting objects: 55% (882/1602)_bk;t=1781335816796 remote: Counting objects: 56% (898/1602)_bk;t=1781335816796 remote: Counting objects: 57% (914/1602)_bk;t=1781335816796 remote: Counting objects: 58% (930/1602)_bk;t=1781335816796 remote: Counting objects: 59% (946/1602)_bk;t=1781335816796 remote: Counting objects: 60% (962/1602)_bk;t=1781335816796 remote: Counting objects: 61% (978/1602)_bk;t=1781335816796 remote: Counting objects: 62% (994/1602)_bk;t=1781335816796 remote: Counting objects: 63% (1010/1602)_bk;t=1781335816796 remote: Counting objects: 64% (1026/1602)_bk;t=1781335816796 remote: Counting objects: 65% (1042/1602)_bk;t=1781335816796 remote: Counting objects: 66% (1058/1602)_bk;t=1781335816796 remote: Counting objects: 67% (1074/1602)_bk;t=1781335816796 remote: Counting objects: 68% (1090/1602)_bk;t=1781335816796 remote: Counting objects: 69% (1106/1602)_bk;t=1781335816796 remote: Counting objects: 70% (1122/1602)_bk;t=1781335816796 remote: Counting objects: 71% (1138/1602)_bk;t=1781335816796 remote: Counting objects: 72% (1154/1602)_bk;t=1781335816796 remote: Counting objects: 73% (1170/1602)_bk;t=1781335816796 remote: Counting objects: 74% (1186/1602)_bk;t=1781335816796 remote: Counting objects: 75% (1202/1602)_bk;t=1781335816796 remote: Counting objects: 76% (1218/1602)_bk;t=1781335816796 remote: Counting objects: 77% (1234/1602)_bk;t=1781335816796 remote: Counting objects: 78% (1250/1602)_bk;t=1781335816819 remote: Counting objects: 79% (1266/1602)_bk;t=1781335816819 remote: Counting objects: 80% (1282/1602)_bk;t=1781335816819 remote: Counting objects: 81% (1298/1602)_bk;t=1781335816819 remote: Counting objects: 82% (1314/1602)_bk;t=1781335816819 remote: Counting objects: 83% (1330/1602)_bk;t=1781335816819 remote: Counting objects: 84% (1346/1602)_bk;t=1781335816819 remote: Counting objects: 85% (1362/1602)_bk;t=1781335816819 remote: Counting objects: 86% (1378/1602)_bk;t=1781335816819 remote: Counting objects: 87% (1394/1602)_bk;t=1781335816819 remote: Counting objects: 88% (1410/1602)_bk;t=1781335816819 remote: Counting objects: 89% (1426/1602)_bk;t=1781335816819 remote: Counting objects: 90% (1442/1602)_bk;t=1781335816819 remote: Counting objects: 91% (1458/1602)_bk;t=1781335816819 remote: Counting objects: 92% (1474/1602)_bk;t=1781335816819 remote: Counting objects: 93% (1490/1602)_bk;t=1781335816819 remote: Counting objects: 94% (1506/1602)_bk;t=1781335816819 remote: Counting objects: 95% (1522/1602)_bk;t=1781335816819 remote: Counting objects: 96% (1538/1602)_bk;t=1781335816819 remote: Counting objects: 97% (1554/1602)_bk;t=1781335816819 remote: Counting objects: 98% (1570/1602)_bk;t=1781335816819 remote: Counting objects: 99% (1586/1602)_bk;t=1781335816819 remote: Counting objects: 100% (1602/1602)_bk;t=1781335816819 remote: Counting objects: 100% (1602/1602), done._bk;t=1781335816819 -_bk;t=1781335816819remote: Compressing objects: 0% (1/449)_bk;t=1781335816819 remote: Compressing objects: 1% (5/449)_bk;t=1781335816819 remote: Compressing objects: 2% (9/449)_bk;t=1781335816819 remote: Compressing objects: 3% (14/449)_bk;t=1781335816819 remote: Compressing objects: 4% (18/449)_bk;t=1781335816819 remote: Compressing objects: 5% (23/449)_bk;t=1781335816819 remote: Compressing objects: 6% (27/449)_bk;t=1781335816819 remote: Compressing objects: 7% (32/449)_bk;t=1781335816819 remote: Compressing objects: 8% (36/449)_bk;t=1781335816819 remote: Compressing objects: 9% (41/449)_bk;t=1781335816819 remote: Compressing objects: 10% (45/449)_bk;t=1781335816819 remote: Compressing objects: 11% (50/449)_bk;t=1781335816819 remote: Compressing objects: 12% (54/449)_bk;t=1781335816826 remote: Compressing objects: 13% (59/449)_bk;t=1781335816843 remote: Compressing objects: 14% (63/449)_bk;t=1781335816848 remote: Compressing objects: 15% (68/449)_bk;t=1781335816858 remote: Compressing objects: 16% (72/449)_bk;t=1781335816867 remote: Compressing objects: 17% (77/449)_bk;t=1781335816875 remote: Compressing objects: 18% (81/449)_bk;t=1781335816881 remote: Compressing objects: 19% (86/449)_bk;t=1781335816889 remote: Compressing objects: 20% (90/449)_bk;t=1781335816895 remote: Compressing objects: 21% (95/449)_bk;t=1781335816900 remote: Compressing objects: 22% (99/449)_bk;t=1781335816903 remote: Compressing objects: 23% (104/449)_bk;t=1781335816907 remote: Compressing objects: 24% (108/449)_bk;t=1781335816910 remote: Compressing objects: 25% (113/449)_bk;t=1781335816914 remote: Compressing objects: 26% (117/449)_bk;t=1781335816918 remote: Compressing objects: 27% (122/449)_bk;t=1781335816921 remote: Compressing objects: 28% (126/449)_bk;t=1781335816923 remote: Compressing objects: 29% (131/449)_bk;t=1781335816925 remote: Compressing objects: 30% (135/449)_bk;t=1781335816927 remote: Compressing objects: 31% (140/449)_bk;t=1781335816928 remote: Compressing objects: 32% (144/449)_bk;t=1781335816929 remote: Compressing objects: 33% (149/449)_bk;t=1781335816930 remote: Compressing objects: 34% (153/449)_bk;t=1781335816930 remote: Compressing objects: 35% (158/449)_bk;t=1781335816931 remote: Compressing objects: 36% (162/449)_bk;t=1781335816932 remote: Compressing objects: 37% (167/449)_bk;t=1781335816932 remote: Compressing objects: 38% (171/449)_bk;t=1781335816933 remote: Compressing objects: 39% (176/449)_bk;t=1781335816933 remote: Compressing objects: 40% (180/449)_bk;t=1781335816933 remote: Compressing objects: 41% (185/449)_bk;t=1781335816934 remote: Compressing objects: 42% (189/449)_bk;t=1781335816934 remote: Compressing objects: 43% (194/449)_bk;t=1781335816934 remote: Compressing objects: 44% (198/449)_bk;t=1781335816934 remote: Compressing objects: 45% (203/449)_bk;t=1781335816934 remote: Compressing objects: 46% (207/449)_bk;t=1781335816934 remote: Compressing objects: 47% (212/449)_bk;t=1781335816934 remote: Compressing objects: 48% (216/449)_bk;t=1781335816934 remote: Compressing objects: 49% (221/449)_bk;t=1781335816935 remote: Compressing objects: 50% (225/449)_bk;t=1781335816935 remote: Compressing objects: 51% (229/449)_bk;t=1781335816935 remote: Compressing objects: 52% (234/449)_bk;t=1781335816935 remote: Compressing objects: 53% (238/449)_bk;t=1781335816935 remote: Compressing objects: 54% (243/449)_bk;t=1781335816935 remote: Compressing objects: 55% (247/449)_bk;t=1781335816935 remote: Compressing objects: 56% (252/449)_bk;t=1781335816935 remote: Compressing objects: 57% (256/449)_bk;t=1781335816936 remote: Compressing objects: 58% (261/449)_bk;t=1781335816936 remote: Compressing objects: 59% (265/449)_bk;t=1781335816936 remote: Compressing objects: 60% (270/449)_bk;t=1781335816936 remote: Compressing objects: 61% (274/449)_bk;t=1781335816936 remote: Compressing objects: 62% (279/449)_bk;t=1781335816937 remote: Compressing objects: 63% (283/449)_bk;t=1781335816937 remote: Compressing objects: 64% (288/449)_bk;t=1781335816937 remote: Compressing objects: 65% (292/449)_bk;t=1781335816937 remote: Compressing objects: 66% (297/449)_bk;t=1781335816937 remote: Compressing objects: 67% (301/449)_bk;t=1781335816938 remote: Compressing objects: 68% (306/449)_bk;t=1781335816938 remote: Compressing objects: 69% (310/449)_bk;t=1781335816938 remote: Compressing objects: 70% (315/449)_bk;t=1781335816939 remote: Compressing objects: 71% (319/449)_bk;t=1781335816939 remote: Compressing objects: 72% (324/449)_bk;t=1781335816939 remote: Compressing objects: 73% (328/449)_bk;t=1781335816939 remote: Compressing objects: 74% (333/449)_bk;t=1781335816939 remote: Compressing objects: 75% (337/449)_bk;t=1781335816939 remote: Compressing objects: 76% (342/449)_bk;t=1781335816939 remote: Compressing objects: 77% (346/449)_bk;t=1781335816939 remote: Compressing objects: 78% (351/449)_bk;t=1781335816939 remote: Compressing objects: 79% (355/449)_bk;t=1781335816946 remote: Compressing objects: 80% (360/449)_bk;t=1781335816946 remote: Compressing objects: 81% (364/449)_bk;t=1781335816946 remote: Compressing objects: 82% (369/449)_bk;t=1781335816946 remote: Compressing objects: 83% (373/449)_bk;t=1781335816946 remote: Compressing objects: 84% (378/449)_bk;t=1781335816946 remote: Compressing objects: 85% (382/449)_bk;t=1781335816946 remote: Compressing objects: 86% (387/449)_bk;t=1781335816946 remote: Compressing objects: 87% (391/449)_bk;t=1781335816946 remote: Compressing objects: 88% (396/449)_bk;t=1781335816946 remote: Compressing objects: 89% (400/449)_bk;t=1781335816946 remote: Compressing objects: 90% (405/449)_bk;t=1781335816946 remote: Compressing objects: 91% (409/449)_bk;t=1781335816946 remote: Compressing objects: 92% (414/449)_bk;t=1781335816946 remote: Compressing objects: 93% (418/449)_bk;t=1781335816946 remote: Compressing objects: 94% (423/449)_bk;t=1781335816946 remote: Compressing objects: 95% (427/449)_bk;t=1781335816946 remote: Compressing objects: 96% (432/449)_bk;t=1781335816946 remote: Compressing objects: 97% (436/449)_bk;t=1781335816946 remote: Compressing objects: 98% (441/449)_bk;t=1781335816946 remote: Compressing objects: 99% (445/449)_bk;t=1781335816946 remote: Compressing objects: 100% (449/449)_bk;t=1781335816946 remote: Compressing objects: 100% (449/449), done._bk;t=1781335816946 -_bk;t=1781335816951Receiving objects: 0% (1/2513) Receiving objects: 1% (26/2513) Receiving objects: 2% (51/2513) Receiving objects: 3% (76/2513) Receiving objects: 4% (101/2513) Receiving objects: 5% (126/2513) Receiving objects: 6% (151/2513) Receiving objects: 7% (176/2513) Receiving objects: 8% (202/2513) Receiving objects: 9% (227/2513) Receiving objects: 10% (252/2513) Receiving objects: 11% (277/2513) Receiving objects: 12% (302/2513) Receiving objects: 13% (327/2513) Receiving objects: 14% (352/2513) Receiving objects: 15% (377/2513) Receiving objects: 16% (403/2513) Receiving objects: 17% (428/2513) Receiving objects: 18% (453/2513) Receiving objects: 19% (478/2513) Receiving objects: 20% (503/2513) Receiving objects: 21% (528/2513) Receiving objects: 22% (553/2513) Receiving objects: 23% (578/2513) Receiving objects: 24% (604/2513) Receiving objects: 25% (629/2513) Receiving objects: 26% (654/2513) Receiving objects: 27% (679/2513) Receiving objects: 28% (704/2513) Receiving objects: 29% (729/2513) Receiving objects: 30% (754/2513) Receiving objects: 31% (780/2513) Receiving objects: 32% (805/2513) Receiving objects: 33% (830/2513) Receiving objects: 34% (855/2513) Receiving objects: 35% (880/2513) Receiving objects: 36% (905/2513) Receiving objects: 37% (930/2513) Receiving objects: 38% (955/2513) Receiving objects: 39% (981/2513) Receiving objects: 40% (1006/2513) Receiving objects: 41% (1031/2513) Receiving objects: 42% (1056/2513) Receiving objects: 43% (1081/2513) Receiving objects: 44% (1106/2513) Receiving objects: 45% (1131/2513) Receiving objects: 46% (1156/2513) Receiving objects: 47% (1182/2513) Receiving objects: 48% (1207/2513) Receiving objects: 49% (1232/2513) Receiving objects: 50% (1257/2513) Receiving objects: 51% (1282/2513) Receiving objects: 52% (1307/2513) Receiving objects: 53% (1332/2513) Receiving objects: 54% (1358/2513) Receiving objects: 55% (1383/2513) Receiving objects: 56% (1408/2513) Receiving objects: 57% (1433/2513) Receiving objects: 58% (1458/2513) Receiving objects: 59% (1483/2513) Receiving objects: 60% (1508/2513) Receiving objects: 61% (1533/2513) Receiving objects: 62% (1559/2513) Receiving objects: 63% (1584/2513) Receiving objects: 64% (1609/2513) Receiving objects: 65% (1634/2513) Receiving objects: 66% (1659/2513) Receiving objects: 67% (1684/2513) Receiving objects: 68% (1709/2513) Receiving objects: 69% (1734/2513) Receiving objects: 70% (1760/2513) Receiving objects: 71% (1785/2513) Receiving objects: 72% (1810/2513) Receiving objects: 73% (1835/2513) Receiving objects: 74% (1860/2513) Receiving objects: 75% (1885/2513) Receiving objects: 76% (1910/2513) Receiving objects: 77% (1936/2513) Receiving objects: 78% (1961/2513) Receiving objects: 79% (1986/2513) Receiving objects: 80% (2011/2513) Receiving objects: 81% (2036/2513) Receiving objects: 82% (2061/2513) Receiving objects: 83% (2086/2513) Receiving objects: 84% (2111/2513) Receiving objects: 85% (2137/2513) Receiving objects: 86% (2162/2513) Receiving objects: 87% (2187/2513) Receiving objects: 88% (2212/2513) Receiving objects: 89% (2237/2513) Receiving objects: 90% (2262/2513) Receiving objects: 91% (2287/2513) Receiving objects: 92% (2312/2513) Receiving objects: 93% (2338/2513) Receiving objects: 94% (2363/2513) Receiving objects: 95% (2388/2513) Receiving objects: 96% (2413/2513) remote: Total 2513 (delta 1370), reused 1217 (delta 1146), pack-reused 911 (from 3)_bk;t=1781335817086 -_bk;t=1781335817088Receiving objects: 97% (2438/2513) Receiving objects: 98% (2463/2513) Receiving objects: 99% (2488/2513) Receiving objects: 100% (2513/2513) Receiving objects: 100% (2513/2513), 1.58 MiB | 11.54 MiB/s, done. -_bk;t=1781335817088Resolving deltas: 0% (0/1537) Resolving deltas: 1% (16/1537) Resolving deltas: 2% (31/1537) Resolving deltas: 3% (47/1537) Resolving deltas: 4% (62/1537) Resolving deltas: 5% (77/1537) Resolving deltas: 6% (93/1537) Resolving deltas: 7% (108/1537) Resolving deltas: 8% (123/1537) Resolving deltas: 9% (140/1537) Resolving deltas: 10% (155/1537) Resolving deltas: 11% (171/1537) Resolving deltas: 12% (185/1537) Resolving deltas: 13% (201/1537) Resolving deltas: 14% (217/1537) Resolving deltas: 15% (232/1537) Resolving deltas: 16% (246/1537) Resolving deltas: 17% (264/1537) Resolving deltas: 18% (278/1537) Resolving deltas: 19% (294/1537) Resolving deltas: 20% (311/1537) Resolving deltas: 21% (323/1537) Resolving deltas: 22% (340/1537) Resolving deltas: 23% (355/1537) Resolving deltas: 24% (369/1537) Resolving deltas: 25% (385/1537) Resolving deltas: 26% (402/1537) Resolving deltas: 27% (415/1537) Resolving deltas: 28% (431/1537) Resolving deltas: 29% (446/1537) Resolving deltas: 30% (462/1537) Resolving deltas: 31% (477/1537) Resolving deltas: 32% (493/1537) Resolving deltas: 33% (508/1537) Resolving deltas: 34% (523/1537) Resolving deltas: 35% (538/1537) Resolving deltas: 36% (554/1537) Resolving deltas: 37% (569/1537) Resolving deltas: 38% (585/1537) Resolving deltas: 39% (600/1537) Resolving deltas: 40% (615/1537) Resolving deltas: 41% (631/1537) Resolving deltas: 42% (646/1537) Resolving deltas: 43% (661/1537) Resolving deltas: 44% (677/1537) Resolving deltas: 45% (692/1537) Resolving deltas: 46% (708/1537) Resolving deltas: 47% (723/1537) Resolving deltas: 48% (738/1537) Resolving deltas: 49% (754/1537) Resolving deltas: 50% (769/1537) Resolving deltas: 51% (784/1537) Resolving deltas: 52% (800/1537) Resolving deltas: 53% (815/1537) Resolving deltas: 54% (830/1537) Resolving deltas: 55% (846/1537) Resolving deltas: 56% (861/1537) Resolving deltas: 57% (877/1537) Resolving deltas: 58% (892/1537) Resolving deltas: 59% (907/1537) Resolving deltas: 60% (923/1537) Resolving deltas: 61% (938/1537) Resolving deltas: 62% (953/1537) Resolving deltas: 63% (969/1537) Resolving deltas: 64% (984/1537) Resolving deltas: 65% (1000/1537) Resolving deltas: 66% (1015/1537) Resolving deltas: 67% (1030/1537) Resolving deltas: 68% (1046/1537) Resolving deltas: 69% (1061/1537) Resolving deltas: 70% (1076/1537) Resolving deltas: 71% (1092/1537) Resolving deltas: 72% (1107/1537) Resolving deltas: 73% (1123/1537) Resolving deltas: 74% (1138/1537) Resolving deltas: 75% (1153/1537) Resolving deltas: 76% (1169/1537) Resolving deltas: 77% (1184/1537) Resolving deltas: 78% (1199/1537) Resolving deltas: 79% (1215/1537) Resolving deltas: 80% (1230/1537) Resolving deltas: 81% (1245/1537) Resolving deltas: 82% (1261/1537) Resolving deltas: 83% (1276/1537) Resolving deltas: 84% (1292/1537) Resolving deltas: 85% (1307/1537) Resolving deltas: 86% (1322/1537) Resolving deltas: 87% (1338/1537) Resolving deltas: 88% (1353/1537) Resolving deltas: 89% (1368/1537) Resolving deltas: 90% (1384/1537) Resolving deltas: 91% (1399/1537) Resolving deltas: 92% (1415/1537) Resolving deltas: 93% (1430/1537) Resolving deltas: 94% (1445/1537) Resolving deltas: 95% (1461/1537) Resolving deltas: 96% (1476/1537) Resolving deltas: 97% (1491/1537) Resolving deltas: 98% (1507/1537) Resolving deltas: 99% (1522/1537) Resolving deltas: 100% (1537/1537) Resolving deltas: 100% (1537/1537), completed with 253 local objects. -_bk;t=1781335817247From https://github.com/bazel-contrib/rules_python -_bk;t=1781335817247 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335817249$ cd /var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python -_bk;t=1781335817249$ git clone -v --reference /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335817250Cloning into '.'... -_bk;t=1781335817376POST git-upload-pack (175 bytes) -_bk;t=1781335817422POST git-upload-pack (gzip 2193 to 1014 bytes) -_bk;t=1781335817469remote: Enumerating objects: 2527, done._bk;t=1781335817469 -_bk;t=1781335817469remote: Counting objects: 0% (1/1595)_bk;t=1781335817469 remote: Counting objects: 1% (16/1595)_bk;t=1781335817469 remote: Counting objects: 2% (32/1595)_bk;t=1781335817469 remote: Counting objects: 3% (48/1595)_bk;t=1781335817469 remote: Counting objects: 4% (64/1595)_bk;t=1781335817469 remote: Counting objects: 5% (80/1595)_bk;t=1781335817469 remote: Counting objects: 6% (96/1595)_bk;t=1781335817469 remote: Counting objects: 7% (112/1595)_bk;t=1781335817469 remote: Counting objects: 8% (128/1595)_bk;t=1781335817469 remote: Counting objects: 9% (144/1595)_bk;t=1781335817469 remote: Counting objects: 10% (160/1595)_bk;t=1781335817469 remote: Counting objects: 11% (176/1595)_bk;t=1781335817469 remote: Counting objects: 12% (192/1595)_bk;t=1781335817469 remote: Counting objects: 13% (208/1595)_bk;t=1781335817469 remote: Counting objects: 14% (224/1595)_bk;t=1781335817469 remote: Counting objects: 15% (240/1595)_bk;t=1781335817469 remote: Counting objects: 16% (256/1595)_bk;t=1781335817469 remote: Counting objects: 17% (272/1595)_bk;t=1781335817469 remote: Counting objects: 18% (288/1595)_bk;t=1781335817469 remote: Counting objects: 19% (304/1595)_bk;t=1781335817469 remote: Counting objects: 20% (319/1595)_bk;t=1781335817469 remote: Counting objects: 21% (335/1595)_bk;t=1781335817469 remote: Counting objects: 22% (351/1595)_bk;t=1781335817469 remote: Counting objects: 23% (367/1595)_bk;t=1781335817469 remote: Counting objects: 24% (383/1595)_bk;t=1781335817469 remote: Counting objects: 25% (399/1595)_bk;t=1781335817469 remote: Counting objects: 26% (415/1595)_bk;t=1781335817469 remote: Counting objects: 27% (431/1595)_bk;t=1781335817469 remote: Counting objects: 28% (447/1595)_bk;t=1781335817469 remote: Counting objects: 29% (463/1595)_bk;t=1781335817469 remote: Counting objects: 30% (479/1595)_bk;t=1781335817469 remote: Counting objects: 31% (495/1595)_bk;t=1781335817469 remote: Counting objects: 32% (511/1595)_bk;t=1781335817469 remote: Counting objects: 33% (527/1595)_bk;t=1781335817469 remote: Counting objects: 34% (543/1595)_bk;t=1781335817469 remote: Counting objects: 35% (559/1595)_bk;t=1781335817469 remote: Counting objects: 36% (575/1595)_bk;t=1781335817469 remote: Counting objects: 37% (591/1595)_bk;t=1781335817469 remote: Counting objects: 38% (607/1595)_bk;t=1781335817469 remote: Counting objects: 39% (623/1595)_bk;t=1781335817469 remote: Counting objects: 40% (638/1595)_bk;t=1781335817469 remote: Counting objects: 41% (654/1595)_bk;t=1781335817469 remote: Counting objects: 42% (670/1595)_bk;t=1781335817469 remote: Counting objects: 43% (686/1595)_bk;t=1781335817469 remote: Counting objects: 44% (702/1595)_bk;t=1781335817469 remote: Counting objects: 45% (718/1595)_bk;t=1781335817469 remote: Counting objects: 46% (734/1595)_bk;t=1781335817469 remote: Counting objects: 47% (750/1595)_bk;t=1781335817469 remote: Counting objects: 48% (766/1595)_bk;t=1781335817469 remote: Counting objects: 49% (782/1595)_bk;t=1781335817469 remote: Counting objects: 50% (798/1595)_bk;t=1781335817469 remote: Counting objects: 51% (814/1595)_bk;t=1781335817469 remote: Counting objects: 52% (830/1595)_bk;t=1781335817469 remote: Counting objects: 53% (846/1595)_bk;t=1781335817469 remote: Counting objects: 54% (862/1595)_bk;t=1781335817469 remote: Counting objects: 55% (878/1595)_bk;t=1781335817469 remote: Counting objects: 56% (894/1595)_bk;t=1781335817469 remote: Counting objects: 57% (910/1595)_bk;t=1781335817469 remote: Counting objects: 58% (926/1595)_bk;t=1781335817469 remote: Counting objects: 59% (942/1595)_bk;t=1781335817469 remote: Counting objects: 60% (957/1595)_bk;t=1781335817469 remote: Counting objects: 61% (973/1595)_bk;t=1781335817469 remote: Counting objects: 62% (989/1595)_bk;t=1781335817469 remote: Counting objects: 63% (1005/1595)_bk;t=1781335817469 remote: Counting objects: 64% (1021/1595)_bk;t=1781335817469 remote: Counting objects: 65% (1037/1595)_bk;t=1781335817470 remote: Counting objects: 66% (1053/1595)_bk;t=1781335817470 remote: Counting objects: 67% (1069/1595)_bk;t=1781335817470 remote: Counting objects: 68% (1085/1595)_bk;t=1781335817470 remote: Counting objects: 69% (1101/1595)_bk;t=1781335817470 remote: Counting objects: 70% (1117/1595)_bk;t=1781335817470 remote: Counting objects: 71% (1133/1595)_bk;t=1781335817470 remote: Counting objects: 72% (1149/1595)_bk;t=1781335817470 remote: Counting objects: 73% (1165/1595)_bk;t=1781335817470 remote: Counting objects: 74% (1181/1595)_bk;t=1781335817470 remote: Counting objects: 75% (1197/1595)_bk;t=1781335817470 remote: Counting objects: 76% (1213/1595)_bk;t=1781335817470 remote: Counting objects: 77% (1229/1595)_bk;t=1781335817470 remote: Counting objects: 78% (1245/1595)_bk;t=1781335817470 remote: Counting objects: 79% (1261/1595)_bk;t=1781335817470 remote: Counting objects: 80% (1276/1595)_bk;t=1781335817470 remote: Counting objects: 81% (1292/1595)_bk;t=1781335817470 remote: Counting objects: 82% (1308/1595)_bk;t=1781335817470 remote: Counting objects: 83% (1324/1595)_bk;t=1781335817470 remote: Counting objects: 84% (1340/1595)_bk;t=1781335817470 remote: Counting objects: 85% (1356/1595)_bk;t=1781335817470 remote: Counting objects: 86% (1372/1595)_bk;t=1781335817470 remote: Counting objects: 87% (1388/1595)_bk;t=1781335817470 remote: Counting objects: 88% (1404/1595)_bk;t=1781335817470 remote: Counting objects: 89% (1420/1595)_bk;t=1781335817470 remote: Counting objects: 90% (1436/1595)_bk;t=1781335817470 remote: Counting objects: 91% (1452/1595)_bk;t=1781335817470 remote: Counting objects: 92% (1468/1595)_bk;t=1781335817470 remote: Counting objects: 93% (1484/1595)_bk;t=1781335817470 remote: Counting objects: 94% (1500/1595)_bk;t=1781335817470 remote: Counting objects: 95% (1516/1595)_bk;t=1781335817470 remote: Counting objects: 96% (1532/1595)_bk;t=1781335817470 remote: Counting objects: 97% (1548/1595)_bk;t=1781335817470 remote: Counting objects: 98% (1564/1595)_bk;t=1781335817470 remote: Counting objects: 99% (1580/1595)_bk;t=1781335817470 remote: Counting objects: 100% (1595/1595)_bk;t=1781335817470 remote: Counting objects: 100% (1595/1595), done._bk;t=1781335817470 -_bk;t=1781335817470remote: Compressing objects: 0% (1/384)_bk;t=1781335817470 remote: Compressing objects: 1% (4/384)_bk;t=1781335817470 remote: Compressing objects: 2% (8/384)_bk;t=1781335817470 remote: Compressing objects: 3% (12/384)_bk;t=1781335817470 remote: Compressing objects: 4% (16/384)_bk;t=1781335817470 remote: Compressing objects: 5% (20/384)_bk;t=1781335817470 remote: Compressing objects: 6% (24/384)_bk;t=1781335817470 remote: Compressing objects: 7% (27/384)_bk;t=1781335817470 remote: Compressing objects: 8% (31/384)_bk;t=1781335817470 remote: Compressing objects: 9% (35/384)_bk;t=1781335817470 remote: Compressing objects: 10% (39/384)_bk;t=1781335817470 remote: Compressing objects: 11% (43/384)_bk;t=1781335817470 remote: Compressing objects: 12% (47/384)_bk;t=1781335817470 remote: Compressing objects: 13% (50/384)_bk;t=1781335817470 remote: Compressing objects: 14% (54/384)_bk;t=1781335817470 remote: Compressing objects: 15% (58/384)_bk;t=1781335817470 remote: Compressing objects: 16% (62/384)_bk;t=1781335817470 remote: Compressing objects: 17% (66/384)_bk;t=1781335817470 remote: Compressing objects: 18% (70/384)_bk;t=1781335817470 remote: Compressing objects: 19% (73/384)_bk;t=1781335817470 remote: Compressing objects: 20% (77/384)_bk;t=1781335817470 remote: Compressing objects: 21% (81/384)_bk;t=1781335817470 remote: Compressing objects: 22% (85/384)_bk;t=1781335817470 remote: Compressing objects: 23% (89/384)_bk;t=1781335817470 remote: Compressing objects: 24% (93/384)_bk;t=1781335817470 remote: Compressing objects: 25% (96/384)_bk;t=1781335817470 remote: Compressing objects: 26% (100/384)_bk;t=1781335817470 remote: Compressing objects: 27% (104/384)_bk;t=1781335817470 remote: Compressing objects: 28% (108/384)_bk;t=1781335817470 remote: Compressing objects: 29% (112/384)_bk;t=1781335817470 remote: Compressing objects: 30% (116/384)_bk;t=1781335817470 remote: Compressing objects: 31% (120/384)_bk;t=1781335817470 remote: Compressing objects: 32% (123/384)_bk;t=1781335817470 remote: Compressing objects: 33% (127/384)_bk;t=1781335817470 remote: Compressing objects: 34% (131/384)_bk;t=1781335817470 remote: Compressing objects: 35% (135/384)_bk;t=1781335817470 remote: Compressing objects: 36% (139/384)_bk;t=1781335817470 remote: Compressing objects: 37% (143/384)_bk;t=1781335817470 remote: Compressing objects: 38% (146/384)_bk;t=1781335817470 remote: Compressing objects: 39% (150/384)_bk;t=1781335817470 remote: Compressing objects: 40% (154/384)_bk;t=1781335817470 remote: Compressing objects: 41% (158/384)_bk;t=1781335817470 remote: Compressing objects: 42% (162/384)_bk;t=1781335817470 remote: Compressing objects: 43% (166/384)_bk;t=1781335817470 remote: Compressing objects: 44% (169/384)_bk;t=1781335817470 remote: Compressing objects: 45% (173/384)_bk;t=1781335817470 remote: Compressing objects: 46% (177/384)_bk;t=1781335817470 remote: Compressing objects: 47% (181/384)_bk;t=1781335817470 remote: Compressing objects: 48% (185/384)_bk;t=1781335817470 remote: Compressing objects: 49% (189/384)_bk;t=1781335817470 remote: Compressing objects: 50% (192/384)_bk;t=1781335817470 remote: Compressing objects: 51% (196/384)_bk;t=1781335817470 remote: Compressing objects: 52% (200/384)_bk;t=1781335817470 remote: Compressing objects: 53% (204/384)_bk;t=1781335817470 remote: Compressing objects: 54% (208/384)_bk;t=1781335817470 remote: Compressing objects: 55% (212/384)_bk;t=1781335817470 remote: Compressing objects: 56% (216/384)_bk;t=1781335817470 remote: Compressing objects: 57% (219/384)_bk;t=1781335817470 remote: Compressing objects: 58% (223/384)_bk;t=1781335817470 remote: Compressing objects: 59% (227/384)_bk;t=1781335817470 remote: Compressing objects: 60% (231/384)_bk;t=1781335817470 remote: Compressing objects: 61% (235/384)_bk;t=1781335817470 remote: Compressing objects: 62% (239/384)_bk;t=1781335817470 remote: Compressing objects: 63% (242/384)_bk;t=1781335817470 remote: Compressing objects: 64% (246/384)_bk;t=1781335817470 remote: Compressing objects: 65% (250/384)_bk;t=1781335817470 remote: Compressing objects: 66% (254/384)_bk;t=1781335817470 remote: Compressing objects: 67% (258/384)_bk;t=1781335817470 remote: Compressing objects: 68% (262/384)_bk;t=1781335817470 remote: Compressing objects: 69% (265/384)_bk;t=1781335817470 remote: Compressing objects: 70% (269/384)_bk;t=1781335817470 remote: Compressing objects: 71% (273/384)_bk;t=1781335817470 remote: Compressing objects: 72% (277/384)_bk;t=1781335817470 remote: Compressing objects: 73% (281/384)_bk;t=1781335817470 remote: Compressing objects: 74% (285/384)_bk;t=1781335817470 remote: Compressing objects: 75% (288/384)_bk;t=1781335817470 remote: Compressing objects: 76% (292/384)_bk;t=1781335817470 remote: Compressing objects: 77% (296/384)_bk;t=1781335817470 remote: Compressing objects: 78% (300/384)_bk;t=1781335817470 remote: Compressing objects: 79% (304/384)_bk;t=1781335817470 remote: Compressing objects: 80% (308/384)_bk;t=1781335817470 remote: Compressing objects: 81% (312/384)_bk;t=1781335817470 remote: Compressing objects: 82% (315/384)_bk;t=1781335817470 remote: Compressing objects: 83% (319/384)_bk;t=1781335817470 remote: Compressing objects: 84% (323/384)_bk;t=1781335817470 remote: Compressing objects: 85% (327/384)_bk;t=1781335817470 remote: Compressing objects: 86% (331/384)_bk;t=1781335817470 remote: Compressing objects: 87% (335/384)_bk;t=1781335817470 remote: Compressing objects: 88% (338/384)_bk;t=1781335817470 remote: Compressing objects: 89% (342/384)_bk;t=1781335817470 remote: Compressing objects: 90% (346/384)_bk;t=1781335817470 remote: Compressing objects: 91% (350/384)_bk;t=1781335817470 remote: Compressing objects: 92% (354/384)_bk;t=1781335817471 remote: Compressing objects: 93% (358/384)_bk;t=1781335817471 remote: Compressing objects: 94% (361/384)_bk;t=1781335817471 remote: Compressing objects: 95% (365/384)_bk;t=1781335817471 remote: Compressing objects: 96% (369/384)_bk;t=1781335817471 remote: Compressing objects: 97% (373/384)_bk;t=1781335817480 remote: Compressing objects: 98% (377/384)_bk;t=1781335817480 remote: Compressing objects: 99% (381/384)_bk;t=1781335817480 remote: Compressing objects: 100% (384/384)_bk;t=1781335817480 remote: Compressing objects: 100% (384/384), done._bk;t=1781335817480 -_bk;t=1781335817493Receiving objects: 0% (1/2527) Receiving objects: 1% (26/2527) Receiving objects: 2% (51/2527) Receiving objects: 3% (76/2527) Receiving objects: 4% (102/2527) Receiving objects: 5% (127/2527) Receiving objects: 6% (152/2527) Receiving objects: 7% (177/2527) Receiving objects: 8% (203/2527) Receiving objects: 9% (228/2527) Receiving objects: 10% (253/2527) Receiving objects: 11% (278/2527) Receiving objects: 12% (304/2527) Receiving objects: 13% (329/2527) Receiving objects: 14% (354/2527) Receiving objects: 15% (380/2527) Receiving objects: 16% (405/2527) Receiving objects: 17% (430/2527) Receiving objects: 18% (455/2527) Receiving objects: 19% (481/2527) Receiving objects: 20% (506/2527) Receiving objects: 21% (531/2527) Receiving objects: 22% (556/2527) Receiving objects: 23% (582/2527) Receiving objects: 24% (607/2527) Receiving objects: 25% (632/2527) Receiving objects: 26% (658/2527) Receiving objects: 27% (683/2527) Receiving objects: 28% (708/2527) Receiving objects: 29% (733/2527) Receiving objects: 30% (759/2527) Receiving objects: 31% (784/2527) Receiving objects: 32% (809/2527) Receiving objects: 33% (834/2527) Receiving objects: 34% (860/2527) Receiving objects: 35% (885/2527) Receiving objects: 36% (910/2527) Receiving objects: 37% (935/2527) Receiving objects: 38% (961/2527) Receiving objects: 39% (986/2527) Receiving objects: 40% (1011/2527) Receiving objects: 41% (1037/2527) Receiving objects: 42% (1062/2527) Receiving objects: 43% (1087/2527) Receiving objects: 44% (1112/2527) Receiving objects: 45% (1138/2527) Receiving objects: 46% (1163/2527) Receiving objects: 47% (1188/2527) Receiving objects: 48% (1213/2527) Receiving objects: 49% (1239/2527) Receiving objects: 50% (1264/2527) Receiving objects: 51% (1289/2527) Receiving objects: 52% (1315/2527) Receiving objects: 53% (1340/2527) Receiving objects: 54% (1365/2527) Receiving objects: 55% (1390/2527) Receiving objects: 56% (1416/2527) Receiving objects: 57% (1441/2527) Receiving objects: 58% (1466/2527) Receiving objects: 59% (1491/2527) Receiving objects: 60% (1517/2527) Receiving objects: 61% (1542/2527) Receiving objects: 62% (1567/2527) Receiving objects: 63% (1593/2527) Receiving objects: 64% (1618/2527) Receiving objects: 65% (1643/2527) Receiving objects: 66% (1668/2527) Receiving objects: 67% (1694/2527) Receiving objects: 68% (1719/2527) Receiving objects: 69% (1744/2527) Receiving objects: 70% (1769/2527) Receiving objects: 71% (1795/2527) Receiving objects: 72% (1820/2527) Receiving objects: 73% (1845/2527) Receiving objects: 74% (1870/2527) Receiving objects: 75% (1896/2527) Receiving objects: 76% (1921/2527) Receiving objects: 77% (1946/2527) Receiving objects: 78% (1972/2527) Receiving objects: 79% (1997/2527) Receiving objects: 80% (2022/2527) Receiving objects: 81% (2047/2527) Receiving objects: 82% (2073/2527) Receiving objects: 83% (2098/2527) Receiving objects: 84% (2123/2527) Receiving objects: 85% (2148/2527) Receiving objects: 86% (2174/2527) Receiving objects: 87% (2199/2527) Receiving objects: 88% (2224/2527) Receiving objects: 89% (2250/2527) Receiving objects: 90% (2275/2527) Receiving objects: 91% (2300/2527) Receiving objects: 92% (2325/2527) Receiving objects: 93% (2351/2527) Receiving objects: 94% (2376/2527) Receiving objects: 95% (2401/2527) Receiving objects: 96% (2426/2527) Receiving objects: 97% (2452/2527) Receiving objects: 98% (2477/2527) remote: Total 2527 (delta 1421), reused 1216 (delta 1211), pack-reused 932 (from 3)_bk;t=1781335817608 -_bk;t=1781335817608Receiving objects: 99% (2502/2527) Receiving objects: 100% (2527/2527) Receiving objects: 100% (2527/2527), 1.59 MiB | 13.72 MiB/s, done. -_bk;t=1781335817610Resolving deltas: 0% (0/1591) Resolving deltas: 1% (16/1591) Resolving deltas: 2% (32/1591) Resolving deltas: 3% (48/1591) Resolving deltas: 4% (64/1591) Resolving deltas: 5% (80/1591) Resolving deltas: 6% (96/1591) Resolving deltas: 7% (112/1591) Resolving deltas: 8% (128/1591) Resolving deltas: 9% (144/1591) Resolving deltas: 10% (160/1591) Resolving deltas: 11% (176/1591) Resolving deltas: 12% (191/1591) Resolving deltas: 13% (207/1591) Resolving deltas: 14% (223/1591) Resolving deltas: 15% (239/1591) Resolving deltas: 16% (255/1591) Resolving deltas: 17% (271/1591) Resolving deltas: 18% (287/1591) Resolving deltas: 19% (303/1591) Resolving deltas: 20% (319/1591) Resolving deltas: 21% (335/1591) Resolving deltas: 22% (351/1591) Resolving deltas: 23% (366/1591) Resolving deltas: 24% (382/1591) Resolving deltas: 25% (398/1591) Resolving deltas: 26% (414/1591) Resolving deltas: 27% (430/1591) Resolving deltas: 28% (446/1591) Resolving deltas: 29% (462/1591) Resolving deltas: 30% (478/1591) Resolving deltas: 31% (494/1591) Resolving deltas: 32% (510/1591) Resolving deltas: 33% (526/1591) Resolving deltas: 34% (541/1591) Resolving deltas: 35% (557/1591) Resolving deltas: 36% (573/1591) Resolving deltas: 37% (589/1591) Resolving deltas: 38% (605/1591) Resolving deltas: 39% (621/1591) Resolving deltas: 40% (637/1591) Resolving deltas: 41% (653/1591) Resolving deltas: 42% (669/1591) Resolving deltas: 43% (685/1591) Resolving deltas: 44% (701/1591) Resolving deltas: 45% (716/1591) Resolving deltas: 46% (732/1591) Resolving deltas: 47% (748/1591) Resolving deltas: 48% (764/1591) Resolving deltas: 49% (780/1591) Resolving deltas: 50% (796/1591) Resolving deltas: 51% (812/1591) Resolving deltas: 52% (828/1591) Resolving deltas: 53% (844/1591) Resolving deltas: 54% (860/1591) Resolving deltas: 55% (876/1591) Resolving deltas: 56% (891/1591) Resolving deltas: 57% (907/1591) Resolving deltas: 58% (923/1591) Resolving deltas: 59% (939/1591) Resolving deltas: 60% (955/1591) Resolving deltas: 61% (971/1591) Resolving deltas: 62% (987/1591) Resolving deltas: 63% (1003/1591) Resolving deltas: 64% (1019/1591) Resolving deltas: 65% (1035/1591) Resolving deltas: 66% (1051/1591) Resolving deltas: 67% (1066/1591) Resolving deltas: 68% (1082/1591) Resolving deltas: 69% (1098/1591) Resolving deltas: 70% (1114/1591) Resolving deltas: 71% (1130/1591) Resolving deltas: 72% (1146/1591) Resolving deltas: 73% (1162/1591) Resolving deltas: 74% (1178/1591) Resolving deltas: 75% (1194/1591) Resolving deltas: 76% (1210/1591) Resolving deltas: 77% (1226/1591) Resolving deltas: 78% (1241/1591) Resolving deltas: 79% (1257/1591) Resolving deltas: 80% (1273/1591) Resolving deltas: 81% (1289/1591) Resolving deltas: 82% (1305/1591) Resolving deltas: 83% (1321/1591) Resolving deltas: 84% (1337/1591) Resolving deltas: 85% (1353/1591) Resolving deltas: 86% (1369/1591) Resolving deltas: 87% (1385/1591) Resolving deltas: 88% (1401/1591) Resolving deltas: 89% (1416/1591) Resolving deltas: 90% (1432/1591) Resolving deltas: 91% (1448/1591) Resolving deltas: 92% (1464/1591) Resolving deltas: 93% (1480/1591) Resolving deltas: 94% (1496/1591) Resolving deltas: 95% (1512/1591) Resolving deltas: 96% (1528/1591) Resolving deltas: 97% (1544/1591) Resolving deltas: 98% (1560/1591) Resolving deltas: 99% (1576/1591) Resolving deltas: 100% (1591/1591) Resolving deltas: 100% (1591/1591), completed with 272 local objects. -_bk;t=1781335817887$ git clean -ffxdq -_bk;t=1781335817894# Fetch and checkout pull request head from GitHub -_bk;t=1781335817894$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335818024POST git-upload-pack (395 bytes) -_bk;t=1781335818071From https://github.com/bazel-contrib/rules_python -_bk;t=1781335818071 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335818071 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD -_bk;t=1781335818077# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` -_bk;t=1781335818077$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335818139Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. -_bk;t=1781335818139 -_bk;t=1781335818139You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335818139changes and commit them, and you can discard any commits you make in this -_bk;t=1781335818139state without impacting any branches by switching back to a branch. -_bk;t=1781335818139 -_bk;t=1781335818139If you want to create a new branch to retain commits you create, you may -_bk;t=1781335818139do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335818139 -_bk;t=1781335818139 git switch -c -_bk;t=1781335818139 -_bk;t=1781335818139Or undo this operation with: -_bk;t=1781335818139 -_bk;t=1781335818139 git switch - -_bk;t=1781335818139 -_bk;t=1781335818139Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335818139 -_bk;t=1781335818139HEAD is now at d6eeb759 feat(skills): Include Buildkite Build ID in monitor_remote_ci summary -_bk;t=1781335818140# Cleaning again to catch any post-checkout changes -_bk;t=1781335818140$ git clean -ffxdq -_bk;t=1781335818147# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335818147# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335818147~~~ Running agent post-checkout hook -_bk;t=1781335818147$ /etc/buildkite-agent/hooks/post-checkout -_bk;t=1781335818177CHECKOUT_END_TIME: 1781335818162 -_bk;t=1781335818177CHECKOUT_DURATION_S: 1.664 -_bk;t=1781335818188Added: -_bk;t=1781335818188+ CHECKOUT_END_TIME -_bk;t=1781335818201Added: -_bk;t=1781335818201+ CHECKOUT_DURATION_S -_bk;t=1781335818216~~~ Running agent pre-command hook -_bk;t=1781335818216$ /etc/buildkite-agent/hooks/pre-command -_bk;t=1781335818244PREP_DURATION_S: 0.069 -_bk;t=1781335818256Added: -_bk;t=1781335818256+ PREP_DURATION_S -_bk;t=1781335818271~~~ Running plugin docker-buildkite-plugin command hook -_bk;t=1781335818272$ /etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/command -_bk;t=1781335818324--- :docker: Pulling gcr.io/bazel-public/ubuntu2204 -_bk;t=1781335818335Using default tag: latest -_bk;t=1781335819850latest: Pulling from bazel-public/ubuntu2204 -_bk;t=1781335819903Digest: sha256:3024b6fbc873688940dfe144c5f1a6cfe0c450bd287748c6f170db01e2459981 -_bk;t=1781335819903Status: Image is up to date for gcr.io/bazel-public/ubuntu2204:latest -_bk;t=1781335819904gcr.io/bazel-public/ubuntu2204:latest -_bk;t=1781335819920docker network host already exists -_bk;t=1781335819920--- :docker: Running command in gcr.io/bazel-public/ubuntu2204 -_bk;t=1781335819920$ docker run -it --rm --init --volume /var/lib/buildkite-agent/builds/bk-docker-9l5n/bazel/rules-python-python:/workdir --volume /etc/group:/etc/group:ro --volume /etc/passwd:/etc/passwd:ro --volume /etc/shadow:/etc/shadow:ro --volume /opt/android-ndk-r15c:/opt/android-ndk-r15c:ro --volume /opt/android-ndk-r25b:/opt/android-ndk-r25b:ro --volume /opt/android-sdk-linux:/opt/android-sdk-linux:ro --volume /var/lib/buildkite-agent:/var/lib/buildkite-agent --volume /var/lib/gitmirrors:/var/lib/gitmirrors:ro --volume /var/run/docker.sock:/var/run/docker.sock --volume /var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:/var/lib/gitmirrors/https---github-com-bazel-contrib-rules-python-git:ro --workdir /workdir -u 998:998 --env BUILDKITE_JOB_ID --env BUILDKITE_BUILD_ID --env BUILDKITE_AGENT_ACCESS_TOKEN --volume /usr/bin/buildkite-agent:/usr/bin/buildkite-agent --env ANDROID_HOME --env ANDROID_NDK_HOME --env BUILDKITE_ARTIFACT_UPLOAD_DESTINATION --env CHECKOUT_DURATION_S --env PREP_DURATION_S --privileged --env BUILDKITE_MESSAGE --env BUILDKITE_GITHUB_EVENT --env BUILDKITE_BUILD_AUTHOR --env BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER --env BUILDKITE_STEP_ID --env BUILDKITE_GITHUB_ACTION --env BUILDKITE_BUILD_AUTHOR_EMAIL --env BUILDKITE_PIPELINE_NAME --env CI --env BUILDKITE_PULL_REQUEST_BASE_BRANCH --env BUILDKITE_ARTIFACT_PATHS --env BUILDKITE_AGENT_META_DATA_KIND --env BUILDKITE_BRANCH --env BUILDKITE_PULL_REQUEST_LABELS --env BUILDKITE_PIPELINE_TEAMS --env BUILDKITE_ORGANIZATION_ID --env BUILDKITE_RETRY_COUNT --env BUILDKITE_REPO --env BUILDKITE_TAG --env BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG --env BUILDKITE_BUILD_NUMBER --env BUILDKITE_COMMIT --env BUILDKITE_BUILD_CREATOR_TEAMS --env BUILDKITE_PULL_REQUEST --env BUILDKITE_COMMIT_RESOLVED --env BUILDKITE_TRIGGERED_FROM_BUILD_ID --env BUILDKITE_JOB_ID --env BUILDKITE_REBUILT_FROM_BUILD_NUMBER --env BUILDKITE_PROJECT_SLUG --env BUILDKITE_BUILD_CREATOR --env BUILDKITE_PIPELINE_ID --env BUILDKITE_PROJECT_PROVIDER --env BUILDKITE_PIPELINE_PROVIDER --env BUILDKITE_SOURCE --env BUILDKITE_PLUGINS --env BUILDKITE_COMMAND --env BUILDKITE_AGENT_NAME --env BUILDKITE_AGENT_META_DATA_QUEUE --env BUILDKITE_ORGANIZATION_SLUG --env BUILDKITE_PULL_REQUEST_REPO --env BUILDKITE_AGENT_ID --env BUILDKITE_TIMEOUT --env BUILDKITE --env BUILDKITE_BUILD_URL --env BUILDKITE_LABEL --env BUILDKITE_PIPELINE_DEFAULT_BRANCH --env BUILDKITE_PIPELINE_SLUG --env BUILDKITE_STEP_KEY --env BUILDKITE_SCRIPT_PATH --env BUILDKITE_AGENT_META_DATA_OS --env BUILDKITE_BUILD_CREATOR_EMAIL --env BUILDKITE_COMPUTE_TYPE --env BUILDKITE_BUILD_ID --env BUILDKITE_REBUILT_FROM_BUILD_ID --network host --label com.buildkite.job-id=019ebfe3-63ae-4037-a692-c008a270a756 gcr.io/bazel-public/ubuntu2204 /bin/sh -e -c $'curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy \'*\' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py\npython3 bazelci.py runner --task=integration_test_bazelinbazel_ubuntu' -_bk;t=1781335821258 -_bk;t=1781335821258 -_bk;t=1781335821258--- :bazel: Using latest Bazel release -_bk;t=1781335821258 -_bk;t=1781335821258 -_bk;t=1781335821258bazel --version -_bk;t=17813358215542026/06/13 07:30:21 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-linux-x86_64... -_bk;t=1781335821566 Downloading: 0 MB out of 62 MB (0%) Downloading: 0 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (1%) Downloading: 1 MB out of 62 MB (2%) Downloading: 1 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (3%) Downloading: 2 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (4%) Downloading: 3 MB out of 62 MB (5%) Downloading: 3 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (6%) Downloading: 4 MB out of 62 MB (7%) Downloading: 5 MB out of 62 MB (8%) Downloading: 5 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (9%) Downloading: 6 MB out of 62 MB (10%) Downloading: 6 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (11%) Downloading: 7 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (12%) Downloading: 8 MB out of 62 MB (13%) Downloading: 8 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (14%) Downloading: 9 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (15%) Downloading: 10 MB out of 62 MB (16%) Downloading: 10 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (17%) Downloading: 11 MB out of 62 MB (18%) Downloading: 11 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (19%) Downloading: 12 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (20%) Downloading: 13 MB out of 62 MB (21%) Downloading: 13 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (22%) Downloading: 14 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (23%) Downloading: 15 MB out of 62 MB (24%) Downloading: 15 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (25%) Downloading: 16 MB out of 62 MB (26%) Downloading: 16 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (27%) Downloading: 17 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (28%) Downloading: 18 MB out of 62 MB (29%) Downloading: 18 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (30%) Downloading: 19 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (31%) Downloading: 20 MB out of 62 MB (32%) Downloading: 20 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (33%) Downloading: 21 MB out of 62 MB (34%) Downloading: 22 MB out of 62 MB (35%) Downloading: 22 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (36%) Downloading: 23 MB out of 62 MB (37%) Downloading: 23 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (38%) Downloading: 24 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (39%) Downloading: 25 MB out of 62 MB (40%) Downloading: 25 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (41%) Downloading: 26 MB out of 62 MB (42%) Downloading: 27 MB out of 62 MB (42%) Downloading: 27 MB out of 62 MB (43%) Downloading: 27 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (44%) Downloading: 28 MB out of 62 MB (45%) Downloading: 28 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (46%) Downloading: 29 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (47%) Downloading: 30 MB out of 62 MB (48%) Downloading: 30 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (49%) Downloading: 31 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (50%) Downloading: 32 MB out of 62 MB (51%) Downloading: 32 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (52%) Downloading: 33 MB out of 62 MB (53%) Downloading: 33 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (54%) Downloading: 34 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (55%) Downloading: 35 MB out of 62 MB (56%) Downloading: 35 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (57%) Downloading: 36 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (58%) Downloading: 37 MB out of 62 MB (59%) Downloading: 37 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (60%) Downloading: 38 MB out of 62 MB (61%) Downloading: 38 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (62%) Downloading: 39 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (63%) Downloading: 40 MB out of 62 MB (64%) Downloading: 40 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (65%) Downloading: 41 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (66%) Downloading: 42 MB out of 62 MB (67%) Downloading: 42 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (68%) Downloading: 43 MB out of 62 MB (69%) Downloading: 43 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (70%) Downloading: 44 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (71%) Downloading: 45 MB out of 62 MB (72%) Downloading: 45 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (73%) Downloading: 46 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (74%) Downloading: 47 MB out of 62 MB (75%) Downloading: 47 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (76%) Downloading: 48 MB out of 62 MB (77%) Downloading: 49 MB out of 62 MB (78%) Downloading: 49 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (79%) Downloading: 50 MB out of 62 MB (80%) Downloading: 50 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (81%) Downloading: 51 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (82%) Downloading: 52 MB out of 62 MB (83%) Downloading: 52 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (84%) Downloading: 53 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (85%) Downloading: 54 MB out of 62 MB (86%) Downloading: 54 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (87%) Downloading: 55 MB out of 62 MB (88%) Downloading: 55 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (89%) Downloading: 56 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (90%) Downloading: 57 MB out of 62 MB (91%) Downloading: 57 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (92%) Downloading: 58 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (93%) Downloading: 59 MB out of 62 MB (94%) Downloading: 59 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (95%) Downloading: 60 MB out of 62 MB (96%) Downloading: 60 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (97%) Downloading: 61 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (98%) Downloading: 62 MB out of 62 MB (99%) Downloading: 62 MB out of 62 MB (100%) -_bk;t=1781335822155bazel 9.1.1 -_bk;t=1781335822158bazel info output_base -_bk;t=1781335822330Extracting Bazel installation... -_bk;t=1781335823647Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335825006WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335825006INFO: Invocation ID: e6d74761-1d28-43e5-9c6e-6de4bf3a8e40 -_bk;t=1781335825054 -_bk;t=1781335825054 -_bk;t=1781335825054--- :information_source: Bazel Info -_bk;t=1781335825054 -_bk;t=1781335825054 -_bk;t=1781335825054bazel --nosystem_rc --nohome_rc version -_bk;t=1781335825248WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335825248INFO: Invocation ID: 58c7cf1b-3922-4fab-8f81-09af626c329a -_bk;t=1781335825253Bazelisk version: v1.28.1 -_bk;t=1781335825253Build label: 9.1.1 -_bk;t=1781335825253Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer -_bk;t=1781335825253Build time: Wed Jun 03 15:41:13 2026 (1780501273) -_bk;t=1781335825253Build timestamp: 1780501273 -_bk;t=1781335825253Build timestamp as int: 1780501273 -_bk;t=1781335825253 -_bk;t=1781335825253bazel --nosystem_rc --nohome_rc info -_bk;t=1781335825445WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335825445INFO: Invocation ID: 6d23de74-9a1a-4491-87ec-6fbc3892f2f9 -_bk;t=1781335825576WARNING: /workdir/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335826594WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826600WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826600WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826600WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335827198bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335827199bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335827199bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335827200character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 -_bk;t=1781335827200command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/command.log -_bk;t=1781335827200committed-heap-size: 117MB -_bk;t=1781335827200execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main -_bk;t=1781335827200gc-count: 15 -_bk;t=1781335827200gc-time: 52ms -_bk;t=1781335827201install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124 -_bk;t=1781335827201java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/install/7dc0926df336d274d4c69a77d810e124/embedded_tools/jdk -_bk;t=1781335827201java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335827202java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335827202local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335827202max-heap-size: 31658MB -_bk;t=1781335827202output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29 -_bk;t=1781335827203output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out -_bk;t=1781335827203package_path: %workspace% -_bk;t=1781335827203release: release 9.1.1 -_bk;t=1781335827203repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335827205server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073023.44 -_bk;t=1781335827205server_pid: 44 -_bk;t=1781335827206used-heap-size: 59MB -_bk;t=1781335827206workspace: /workdir -_bk;t=1781335827220 -_bk;t=1781335827223 -_bk;t=1781335827223--- :information_source: Environment Variables -_bk;t=1781335827223 -_bk;t=1781335827223 -_bk;t=1781335827223BUILDKITE_PULL_REQUEST_LABELS=() -_bk;t=1781335827223BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) -_bk;t=1781335827223LANGUAGE=(C.UTF-8) -_bk;t=1781335827223BUILDKITE_ARTIFACT_PATHS=() -_bk;t=1781335827223BUILDKITE_TRIGGERED_FROM_BUILD_ID=() -_bk;t=1781335827223CI=(true) -_bk;t=1781335827223BUILDKITE_BUILD_CREATOR=(Richard Levasseur) -_bk;t=1781335827223HOSTNAME=(bk-docker-9l5n) -_bk;t=1781335827223BUILDKITE_GITHUB_ACTION=(synchronize) -_bk;t=1781335827223BUILDKITE_AGENT_ID=(019ebfdc-dfaf-48a8-8698-da895de79f5c) -_bk;t=1781335827223BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) -_bk;t=1781335827223BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) -_bk;t=1781335827223BUILDKITE_AGENT_META_DATA_QUEUE=(default) -_bk;t=1781335827223BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) -_bk;t=1781335827223HOME=(/var/lib/buildkite-agent) -_bk;t=1781335827223BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335827223BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() -_bk;t=1781335827223BUILDKITE_STEP_KEY=() -_bk;t=1781335827223BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) -_bk;t=1781335827223BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) -_bk;t=1781335827223BUILDKITE=(true) -_bk;t=1781335827223BUILDKITE_COMPUTE_TYPE=(self-hosted) -_bk;t=1781335827223BUILDKITE_BUILD_NUMBER=(15722) -_bk;t=1781335827223BUILDKITE_TAG=() -_bk;t=1781335827223BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() -_bk;t=1781335827223BUILDKITE_PIPELINE_PROVIDER=(github) -_bk;t=1781335827223BUILDKITE_JOB_ID=(019ebfe3-63ae-4037-a692-c008a270a756) -_bk;t=1781335827223BUILDKITE_AGENT_META_DATA_OS=(linux) -_bk;t=1781335827223BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) -_bk;t=1781335827223BUILDKITE_PULL_REQUEST=(3812) -_bk;t=1781335827223TERM=(xterm) -_bk;t=1781335827223BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) -_bk;t=1781335827223BUILDKITE_COMMIT_RESOLVED=(true) -_bk;t=1781335827223BUILDKITE_PIPELINE_SLUG=(rules-python-python) -_bk;t=1781335827223PATH=(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) -_bk;t=1781335827223PREP_DURATION_S=(0.069) -_bk;t=1781335827223CHECKOUT_DURATION_S=(1.664) -_bk;t=1781335827223BUILDKITE_GITHUB_EVENT=(pull_request) -_bk;t=1781335827223BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) -_bk;t=1781335827223BUILDKITE_RETRY_COUNT=(0) -_bk;t=1781335827223BUILDKITE_SOURCE=(webhook) -_bk;t=1781335827223BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) -_bk;t=1781335827223LANG=(C.UTF-8) -_bk;t=1781335827223BUILDKITE_REBUILT_FROM_BUILD_ID=() -_bk;t=1781335827223BUILDKITE_PLUGINS=([{"github.com/buildkite-plugins/docker-buildkite-plugin#v3.8.0":{"image":"gcr.io/bazel-public/ubuntu2204","network":"host","volumes":["/etc/group:/etc/group:ro","/etc/passwd:/etc/passwd:ro","/etc/shadow:/etc/shadow:ro","/opt/android-ndk-r15c:/opt/android-ndk-r15c:ro","/opt/android-ndk-r25b:/opt/android-ndk-r25b:ro","/opt/android-sdk-linux:/opt/android-sdk-linux:ro","/var/lib/buildkite-agent:/var/lib/buildkite-agent","/var/lib/gitmirrors:/var/lib/gitmirrors:ro","/var/run/docker.sock:/var/run/docker.sock"],"privileged":true,"always-pull":true,"environment":["ANDROID_HOME","ANDROID_NDK_HOME","BUILDKITE_ARTIFACT_UPLOAD_DESTINATION","CHECKOUT_DURATION_S","PREP_DURATION_S"],"propagate-uid-gid":true,"propagate-environment":true}}]) -_bk;t=1781335827223BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756) -_bk;t=1781335827223DEBIAN_FRONTEND=(noninteractive) -_bk;t=1781335827223BUILDKITE_ORGANIZATION_SLUG=(bazel) -_bk;t=1781335827223BUILDKITE_PROJECT_PROVIDER=(github) -_bk;t=1781335827223BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) -_bk;t=1781335827223BUILDKITE_LABEL=(tests/integration bazel-in-bazel: Ubuntu on :ubuntu: Ubuntu 22.04 LTS) -_bk;t=1781335827223BUILDKITE_AGENT_META_DATA_KIND=(docker) -_bk;t=1781335827223BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() -_bk;t=1781335827223BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335827223BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) -_bk;t=1781335827223BUILDKITE_COMMAND=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335827223python3 bazelci.py runner --task=integration_test_bazelinbazel_ubuntu) -_bk;t=1781335827223BUILDKITE_TIMEOUT=(480) -_bk;t=1781335827223BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) -_bk;t=1781335827223BUILDKITE_STEP_ID=(019ebfe3-628d-4a74-8835-3a958d6b7798) -_bk;t=1781335827223BUILDKITE_PIPELINE_NAME=(rules_python :python:) -_bk;t=1781335827223BUILDKITE_SCRIPT_PATH=(curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335827223python3 bazelci.py runner --task=integration_test_bazelinbazel_ubuntu) -_bk;t=1781335827223LC_ALL=(C.UTF-8) -_bk;t=1781335827223JAVA_HOME=(/usr/lib/jvm/java-21-openjdk-amd64) -_bk;t=1781335827223PWD=(/workdir) -_bk;t=1781335827223ANDROID_HOME=(/opt/android-sdk-linux) -_bk;t=1781335827223BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) -_bk;t=1781335827223BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) -_bk;t=1781335827223BUILDKITE_AGENT_NAME=(bk-docker-9l5n) -_bk;t=1781335827224BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) -_bk;t=1781335827224ANDROID_NDK_HOME=(/opt/android-ndk-r15c) -_bk;t=1781335827224BAZELCI_TASK=(integration_test_bazelinbazel_ubuntu) -_bk;t=1781335827224BAZELISK_USER_AGENT=(Bazelisk/BazelCI) -_bk;t=1781335827224OUTPUT_BASE=(/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29) -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224--- :dart: Calculating targets -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224--- :bazel: Computing flags for build step -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224Adding to platform cache key: b'bazel' -_bk;t=1781335827224Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335827224Adding to platform cache key: b'ubuntu2204' -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224+++ :bazel: Build (9.1.1) -_bk;t=1781335827224 -_bk;t=1781335827224 -_bk;t=1781335827224bazel build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp5lw_aaog/build_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT -- ... -_bk;t=1781335827536(07:30:27) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335827536(07:30:27) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335827537(07:30:27) INFO: Invocation ID: 82aa8526-81b0-4419-b8bc-cde6e8a9a321 -_bk;t=1781335827537(07:30:27) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/82aa8526-81b0-4419-b8bc-cde6e8a9a321 -_bk;t=1781335827537(07:30:27) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks -_bk;t=1781335827537(07:30:27) INFO: Options provided by the client: -_bk;t=1781335827537 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335827538(07:30:27) INFO: Reading rc options for 'build' from /workdir/.bazelrc.deleted_packages: -_bk;t=1781335827538 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335827538(07:30:27) INFO: Reading rc options for 'build' from /workdir/.bazelrc: -_bk;t=1781335827538 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335827538(07:30:27) INFO: Reading rc options for 'build' from /workdir/.bazelrc: -_bk;t=1781335827538 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335827538(07:30:27) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335827580(07:30:27) INFO: Current date is 2026-06-13 -_bk;t=1781335827580(07:30:27) -_bk;t=1781335827580 _bk;t=1781335827580(07:30:27) Computing main repo mapping: -_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335827652(07:30:27) Computing main repo mapping: -_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335827652(07:30:27) Computing main repo mapping: -_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335827652(07:30:27) Computing main repo mapping: -_bk;t=1781335827652 _bk;t=1781335827652(07:30:27) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335827652(07:30:27) Computing main repo mapping: -_bk;t=1781335828213 _bk;t=1781335828213(07:30:28) Loading: -_bk;t=1781335828228 _bk;t=1781335828228(07:30:28) Loading: 1 packages loaded -_bk;t=1781335830924 _bk;t=1781335830924(07:30:30) Analyzing: 53 targets (176 packages loaded, 0 targets configured) -_bk;t=1781335830945 _bk;t=1781335830945(07:30:30) Analyzing: 53 targets (176 packages loaded, 0 targets configured) -_bk;t=1781335830945 currently loading: @@bazel_tools//tools/test -_bk;t=1781335830945 -_bk;t=1781335834884 _bk;t=1781335834884 _bk;t=1781335834884 _bk;t=1781335834884(07:30:34) INFO: Analyzed 53 targets (276 packages loaded, 15942 targets configured). -_bk;t=1781335834884(07:30:34) [322 / 347] 11 actions, 8 running -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_7.7.0.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_self.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_self.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_9.1.0.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_7.7.0.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_9.1.0.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/toolchain_target_settings_test_bazel_8.5.1.runfiles; 0s local -_bk;t=1781335834884 Creating runfiles tree bazel-out/k8-fastbuild/bin/tests/integration/custom_commands_test_bazel_8.5.1.runfiles; 0s local ... -_bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229 _bk;t=1781335835229(07:30:35) INFO: Found 53 targets... -_bk;t=1781335835229(07:30:35) [359 / 359] no actions running -_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: Elapsed time: 7.852s, Critical Path: 0.54s -_bk;t=1781335835255(07:30:35) [359 / 359] no actions running -_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: 359 processes: 12 remote cache hit, 347 internal. -_bk;t=1781335835255(07:30:35) [359 / 359] no actions running -_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: Build completed successfully, 359 total actions -_bk;t=1781335835255(07:30:35) INFO: -_bk;t=1781335835255 _bk;t=1781335835255(07:30:35) INFO: -_bk;t=1781335835526 _bk;t=1781335835526(07:30:35) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/82aa8526-81b0-4419-b8bc-cde6e8a9a321 -_bk;t=1781335835526curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-x86_64-unknown-linux-musl -o /tmp/tmp5lw_aaog/bazelci-agent -_bk;t=1781335835530 -_bk;t=1781335835530 -_bk;t=1781335835530--- :bazel: Computing flags for test step -_bk;t=1781335835530 -_bk;t=1781335835531 -_bk;t=1781335835531Adding to platform cache key: b'bazel' -_bk;t=1781335835531Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335835531Adding to platform cache key: b'ubuntu2204' -_bk;t=1781335835531 -_bk;t=1781335835531 -_bk;t=1781335835531+++ :bazel: Test (9.1.1) -_bk;t=1781335835531 -_bk;t=1781335835531 -_bk;t=1781335835531bazel test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=12 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=30 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --sandbox_tmpfs_path=/tmp --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp5lw_aaog/test_bep.json --remote_cache=remotebuildexecution.googleapis.com --remote_instance_name=projects/bazel-untrusted/instances/default_instance --google_default_credentials --bes_backend=buildeventservice.googleapis.com --bes_results_url=https://btx.cloud.google.com/invocations/ --bes_timeout=360s --bes_instance_name=bazel-untrusted --remote_timeout=60 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=85e3fd34fa80b60a642a7cc0f8a82b471129afd9dbad0606cd94e347fe949242 --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --sandbox_writable_path=/var/lib/buildkite-agent/.cache/bazelisk -- ... -_bk;t=1781335835729(07:30:35) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335835729(07:30:35) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335835729(07:30:35) INFO: Invocation ID: edfaa7d6-2eec-4df9-84db-2b6a65dd5a65 -_bk;t=1781335835729(07:30:35) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/edfaa7d6-2eec-4df9-84db-2b6a65dd5a65 -_bk;t=1781335835729(07:30:35) INFO: Reading 'startup' options from /workdir/.bazelrc: --windows_enable_symlinks -_bk;t=1781335835729(07:30:35) INFO: Options provided by the client: -_bk;t=1781335835729 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc.deleted_packages: -_bk;t=1781335835729 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335835729 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335835729 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335835729(07:30:35) INFO: Reading rc options for 'test' from /workdir/.bazelrc: -_bk;t=1781335835729 'test' options: --test_output=errors -_bk;t=1781335835729(07:30:35) INFO: Found applicable config definition build:linux in file /workdir/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335835843(07:30:35) INFO: Current date is 2026-06-13 -_bk;t=1781335835843(07:30:35) -_bk;t=1781335835843 _bk;t=1781335835843(07:30:35) Computing main repo mapping: -_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335835961(07:30:35) Computing main repo mapping: -_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335835961(07:30:35) Computing main repo mapping: -_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335835961(07:30:35) Computing main repo mapping: -_bk;t=1781335835961 _bk;t=1781335835961(07:30:35) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335835961(07:30:35) Computing main repo mapping: -_bk;t=1781335836040 _bk;t=1781335836040(07:30:36) Loading: -_bk;t=1781335836042 _bk;t=1781335836042(07:30:36) Loading: 0 packages loaded -_bk;t=1781335836052/tmp/tmp5lw_aaog/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp5lw_aaog/test_bep.json -_bk;t=1781335836152 _bk;t=1781335836152(07:30:36) Analyzing: 53 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335836162 _bk;t=1781335836162(07:30:36) Analyzing: 53 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335836162 -_bk;t=1781335836262 _bk;t=1781335836262 _bk;t=1781335836262(07:30:36) INFO: Analyzed 53 targets (0 packages loaded, 0 targets configured). -_bk;t=1781335836262(07:30:36) [205 / 214] checking cached actions -_bk;t=1781335842774 _bk;t=1781335842774(07:30:42) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335842774 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache -_bk;t=1781335842930 _bk;t=1781335842930 _bk;t=1781335842930(07:30:42) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) -_bk;t=1781335842930(07:30:42) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335842930 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache -_bk;t=1781335844060buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=17813358440742026-06-13 07:30:44 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" -_bk;t=17813358440772026-06-13 07:30:44 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration -_bk;t=17813358440772026-06-13 07:30:44 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358442222026-06-13 07:30:44 INFO  Uploading 019ebfe3-e55c-4cbe-95cc-cb2c3eafad30 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) -_bk;t=17813358444242026-06-13 07:30:44 INFO  Artifact uploads completed successfully -_bk;t=1781335848600 _bk;t=1781335848600 _bk;t=1781335848600(07:30:48) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335848600 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 11s local, remote-cache -_bk;t=1781335848720 _bk;t=1781335848720 _bk;t=1781335848720(07:30:48) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) -_bk;t=1781335848720(07:30:48) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335848720 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache -_bk;t=1781335849060buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=17813358490732026-06-13 07:30:49 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" -_bk;t=17813358490742026-06-13 07:30:49 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration -_bk;t=17813358490742026-06-13 07:30:49 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358491762026-06-13 07:30:49 INFO  Uploading 019ebfe3-f8b8-4189-ba4e-40141bc81c30 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) -_bk;t=17813358493662026-06-13 07:30:49 INFO  Artifact uploads completed successfully -_bk;t=1781335854430 _bk;t=1781335854430 _bk;t=1781335854430(07:30:54) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335854430 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache -_bk;t=1781335854465 _bk;t=1781335854465 _bk;t=1781335854465(07:30:54) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) -_bk;t=1781335854465(07:30:54) [361 / 362] 2 / 53 tests; 1 action; last test: //tests/integration:custom_commands_test_bazel_7.7.0 -_bk;t=1781335854465 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache -_bk;t=1781335854466 _bk;t=1781335854466 _bk;t=1781335854466 -_bk;t=1781335854466FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335854466 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335854466 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335854466 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335854466(07:30:54) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335854466 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache -_bk;t=1781335854468 _bk;t=1781335854468 _bk;t=1781335854468(07:30:54) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335854468==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=17813358544682026/06/13 07:30:36 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-linux-x86_64... -_bk;t=1781335854468$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335854468Extracting Bazel installation... -_bk;t=1781335854468Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335854468bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335854468bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335854468bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335854468character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 -_bk;t=1781335854468command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log -_bk;t=1781335854468committed-heap-size: 117MB -_bk;t=1781335854468execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main -_bk;t=1781335854468gc-count: 14 -_bk;t=1781335854468gc-time: 44ms -_bk;t=1781335854468install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 -_bk;t=1781335854468java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk -_bk;t=1781335854468java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335854468java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335854468local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335854468max-heap-size: 31658MB -_bk;t=1781335854468output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 -_bk;t=1781335854468output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out -_bk;t=1781335854468package_path: %workspace% -_bk;t=1781335854468release: release 9.1.0 -_bk;t=1781335854468repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335854468server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073038.2938 -_bk;t=1781335854468server_pid: 2938 -_bk;t=1781335854468used-heap-size: 42MB -_bk;t=1781335854468workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335854468$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335854468Computing main repo mapping: -_bk;t=1781335854468Loading: -_bk;t=1781335854468Loading: 0 packages loaded -_bk;t=1781335854468Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335854468Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335854468 -_bk;t=1781335854468ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335854469INFO: Elapsed time: 0.804s, Critical Path: 0.03s -_bk;t=1781335854469INFO: 1 process: 1 internal. -_bk;t=1781335854469ERROR: Build did NOT complete successfully -_bk;t=1781335854469FAILED: -_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested -_bk;t=1781335854469================================================================================ -_bk;t=1781335854469==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335854469Extracting Bazel installation... -_bk;t=1781335854469Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335854469bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335854469bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335854469bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335854469character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 -_bk;t=1781335854469command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log -_bk;t=1781335854469committed-heap-size: 117MB -_bk;t=1781335854469execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main -_bk;t=1781335854469gc-count: 14 -_bk;t=1781335854469gc-time: 43ms -_bk;t=1781335854469install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 -_bk;t=1781335854469java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk -_bk;t=1781335854469java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335854469java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335854469local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335854469max-heap-size: 31658MB -_bk;t=1781335854469output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 -_bk;t=1781335854469output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out -_bk;t=1781335854469package_path: %workspace% -_bk;t=1781335854469release: release 9.1.0 -_bk;t=1781335854469repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335854469server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073044.3486 -_bk;t=1781335854469server_pid: 3486 -_bk;t=1781335854469used-heap-size: 42MB -_bk;t=1781335854469workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335854469Computing main repo mapping: -_bk;t=1781335854469Loading: -_bk;t=1781335854469Loading: 0 packages loaded -_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335854469 -_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335854469INFO: Elapsed time: 0.872s, Critical Path: 0.03s -_bk;t=1781335854469INFO: 1 process: 1 internal. -_bk;t=1781335854469ERROR: Build did NOT complete successfully -_bk;t=1781335854469FAILED: -_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested -_bk;t=1781335854469================================================================================ -_bk;t=1781335854469==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335854469Extracting Bazel installation... -_bk;t=1781335854469Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335854469bazel-bin: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335854469bazel-genfiles: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/bin -_bk;t=1781335854469bazel-testlogs: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out/k8-fastbuild/testlogs -_bk;t=1781335854469character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = ISO-8859-1 -_bk;t=1781335854469command_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/command.log -_bk;t=1781335854469committed-heap-size: 117MB -_bk;t=1781335854469execution_root: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main -_bk;t=1781335854469gc-count: 14 -_bk;t=1781335854469gc-time: 44ms -_bk;t=1781335854469install_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116 -_bk;t=1781335854469java-home: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/install/5229af5fe4e43869fa475e361effe116/embedded_tools/jdk -_bk;t=1781335854469java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335854469java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335854469local_resources: RAM=120741MB, CPU=30.0 -_bk;t=1781335854469max-heap-size: 31658MB -_bk;t=1781335854469output_base: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41 -_bk;t=1781335854469output_path: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/execroot/_main/bazel-out -_bk;t=1781335854469package_path: %workspace% -_bk;t=1781335854469release: release 9.1.0 -_bk;t=1781335854469repository_cache: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/cache/repos/v1 -_bk;t=1781335854469server_log: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/_tmp/15041bc9e84741c0c19d21595bb943a8/_bazel_buildkite-agent/b57e352c16f85e48f4e1e0154ced8f41/java.log.bk-docker-9l5n.buildkite-agent.log.java.20260613-073050.4043 -_bk;t=1781335854469server_pid: 4043 -_bk;t=1781335854469used-heap-size: 42MB -_bk;t=1781335854469workspace: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335854469$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335854469Computing main repo mapping: -_bk;t=1781335854469Loading: -_bk;t=1781335854469Loading: 0 packages loaded -_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335854469Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335854469 -_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335854469INFO: Elapsed time: 0.882s, Critical Path: 0.02s -_bk;t=1781335854469INFO: 1 process: 1 internal. -_bk;t=1781335854469ERROR: Build did NOT complete successfully -_bk;t=1781335854469FAILED: -_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested -_bk;t=1781335854469================================================================================ -_bk;t=1781335854469(07:30:54) [361 / 362] 3 / 53 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335854469 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 17s local, remote-cache -_bk;t=1781335855061buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=17813358550732026-06-13 07:30:55 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" -_bk;t=17813358550742026-06-13 07:30:55 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration -_bk;t=17813358550742026-06-13 07:30:55 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358551692026-06-13 07:30:55 INFO  Uploading 019ebfe4-1023-4f8e-a864-dbfd05ceeb92 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) -_bk;t=17813358553672026-06-13 07:30:55 INFO  Artifact uploads completed successfully -_bk;t=1781335860851 _bk;t=1781335860851 _bk;t=1781335860851(07:31:00) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335860851 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 5s local, remote-cache -_bk;t=1781335865851 _bk;t=1781335865851 _bk;t=1781335865851(07:31:05) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335865851 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 10s local, remote-cache -_bk;t=1781335870853 _bk;t=1781335870853 _bk;t=1781335870853(07:31:10) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335870853 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 15s local, remote-cache -_bk;t=1781335874993 _bk;t=1781335874993 _bk;t=1781335874993(07:31:14) WARNING: //tests/integration:uv_lock_test_bazel_8.5.1: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335874993(07:31:14) [366 / 367] 7 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_7.7.0 -_bk;t=1781335874993 Testing //tests/integration:uv_lock_test_bazel_8.5.1; 20s local, remote-cache -_bk;t=1781335880854 _bk;t=1781335880854 _bk;t=1781335880854(07:31:20) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 -_bk;t=1781335880854 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 5s local, remote-cache -_bk;t=1781335890854 _bk;t=1781335890854 _bk;t=1781335890854(07:31:30) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 -_bk;t=1781335890854 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 15s local, remote-cache -_bk;t=1781335893673 _bk;t=1781335893673 _bk;t=1781335893673(07:31:33) WARNING: //tests/integration:uv_lock_test_bazel_9.1.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335893673(07:31:33) [369 / 370] 10 / 53 tests, 1 failed; 1 action; last test: //tests/integration:local_toolchains_test_bazel_9.1.0 -_bk;t=1781335893673 Testing //tests/integration:uv_lock_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335900855 _bk;t=1781335900855 _bk;t=1781335900855(07:31:40) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 -_bk;t=1781335900855 Testing //tests/integration:uv_lock_test_bazel_self; 6s local, remote-cache -_bk;t=1781335910855 _bk;t=1781335910855 _bk;t=1781335910855(07:31:50) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 -_bk;t=1781335910855 Testing //tests/integration:uv_lock_test_bazel_self; 16s local, remote-cache -_bk;t=1781335911414 _bk;t=1781335911414 _bk;t=1781335911414(07:31:51) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335911414(07:31:51) [373 / 374] 14 / 53 tests, 1 failed; 1 action; last test: //tests/integration:pip_parse_test_bazel_7.7.0 -_bk;t=1781335911414 Testing //tests/integration:uv_lock_test_bazel_self; 17s local, remote-cache -_bk;t=1781335920856 _bk;t=1781335920856 _bk;t=1781335920856(07:32:00) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 -_bk;t=1781335920856 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 8s local, remote-cache -_bk;t=1781335930856 _bk;t=1781335930856 _bk;t=1781335930856(07:32:10) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 -_bk;t=1781335930856 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 18s local, remote-cache -_bk;t=1781335932299 _bk;t=1781335932299 _bk;t=1781335932299(07:32:12) WARNING: //tests/integration:uv_lock_test_bazel_7.7.0: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335932299(07:32:12) [385 / 386] 26 / 53 tests, 1 failed; 1 action; last test: //tests/integration:toolchain_target_settings_test_bazel_9.1.0 -_bk;t=1781335932299 Testing //tests/integration:uv_lock_test_bazel_7.7.0; 19s local, remote-cache -_bk;t=1781335934784 _bk;t=1781335934784 _bk;t=1781335934784(07:32:14) INFO: Found 53 test targets... -_bk;t=1781335934784(07:32:14) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 -_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: Elapsed time: 99.096s, Critical Path: 20.25s -_bk;t=1781335934804(07:32:14) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 -_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: 54 processes: 97 remote cache hit, 1 internal, 13 local. -_bk;t=1781335934804(07:32:14) [412 / 412] 53 / 53 tests, 1 failed; no actions running; last test: ...gration:compile_pip_requirements_workspace_test_bazel_9.1.0 -_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: Build completed, 1 test FAILED, 54 total actions -_bk;t=1781335934804(07:32:14) INFO: -_bk;t=1781335934804 _bk;t=1781335934804(07:32:14) INFO: -_bk;t=1781335934808 _bk;t=1781335934808//tests/integration:compile_pip_requirements_test_bazel_7.7.0 (cached) PASSED in 12.8s -_bk;t=1781335934808(07:32:14) INFO: -_bk;t=1781335934808 _bk;t=1781335934808//tests/integration:compile_pip_requirements_test_bazel_8.5.1 (cached) PASSED in 12.9s -_bk;t=1781335934808(07:32:14) INFO: -_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_test_bazel_9.1.0 (cached) PASSED in 11.7s -_bk;t=1781335934809(07:32:14) INFO: -_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_test_bazel_self (cached) PASSED in 12.1s -_bk;t=1781335934809(07:32:14) INFO: -_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_workspace_test_bazel_7.7.0 (cached) PASSED in 10.3s -_bk;t=1781335934809(07:32:14) INFO: -_bk;t=1781335934809 _bk;t=1781335934809//tests/integration:compile_pip_requirements_workspace_test_bazel_8.5.1 (cached) PASSED in 11.5s -_bk;t=1781335934809(07:32:14) INFO: -_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:compile_pip_requirements_workspace_test_bazel_9.1.0 (cached) PASSED in 12.1s -_bk;t=1781335934810(07:32:14) INFO: -_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:compile_pip_requirements_workspace_test_bazel_self (cached) PASSED in 11.9s -_bk;t=1781335934810(07:32:14) INFO: -_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:custom_commands_test_bazel_7.7.0 (cached) PASSED in 10.1s -_bk;t=1781335934810(07:32:14) INFO: -_bk;t=1781335934810 _bk;t=1781335934810//tests/integration:custom_commands_test_bazel_8.5.1 (cached) PASSED in 10.2s -_bk;t=1781335934810(07:32:14) INFO: -_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:custom_commands_test_bazel_9.1.0 (cached) PASSED in 9.9s -_bk;t=1781335934811(07:32:14) INFO: -_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:custom_commands_test_bazel_self (cached) PASSED in 9.8s -_bk;t=1781335934811(07:32:14) INFO: -_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:local_toolchains_test_bazel_7.7.0 (cached) PASSED in 11.2s -_bk;t=1781335934811(07:32:14) INFO: -_bk;t=1781335934811 _bk;t=1781335934811//tests/integration:local_toolchains_test_bazel_8.5.1 (cached) PASSED in 11.3s -_bk;t=1781335934811(07:32:14) INFO: -_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_test_bazel_9.1.0 (cached) PASSED in 10.8s -_bk;t=1781335934812(07:32:14) INFO: -_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 10.7s -_bk;t=1781335934812(07:32:14) INFO: -_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_workspace_test_bazel_7.7.0 (cached) PASSED in 10.3s -_bk;t=1781335934812(07:32:14) INFO: -_bk;t=1781335934812 _bk;t=1781335934812//tests/integration:local_toolchains_workspace_test_bazel_8.5.1 (cached) PASSED in 11.0s -_bk;t=1781335934812(07:32:14) INFO: -_bk;t=1781335934813 _bk;t=1781335934813//tests/integration:local_toolchains_workspace_test_bazel_9.1.0 (cached) PASSED in 11.3s -_bk;t=1781335934813(07:32:14) INFO: -_bk;t=1781335934813 _bk;t=1781335934813//tests/integration:local_toolchains_workspace_test_bazel_self (cached) PASSED in 10.5s -_bk;t=1781335934813(07:32:14) INFO: -_bk;t=1781335934813 _bk;t=1781335934813//tests/integration:pip_parse_isolated_test_bazel_7.7.0 (cached) PASSED in 11.6s -_bk;t=1781335934813(07:32:14) INFO: -_bk;t=1781335934814 _bk;t=1781335934814//tests/integration:pip_parse_isolated_test_bazel_8.5.1 (cached) PASSED in 12.2s -_bk;t=1781335934814(07:32:14) INFO: -_bk;t=1781335934814 _bk;t=1781335934814//tests/integration:pip_parse_isolated_test_bazel_9.1.0 (cached) PASSED in 12.0s -_bk;t=1781335934814(07:32:14) INFO: -_bk;t=1781335934814 _bk;t=1781335934815//tests/integration:pip_parse_isolated_test_bazel_self (cached) PASSED in 11.5s -_bk;t=1781335934815(07:32:14) INFO: -_bk;t=1781335934815 _bk;t=1781335934815//tests/integration:pip_parse_test_bazel_7.7.0 (cached) PASSED in 11.5s -_bk;t=1781335934815(07:32:14) INFO: -_bk;t=1781335934815 _bk;t=1781335934815//tests/integration:pip_parse_test_bazel_8.5.1 (cached) PASSED in 11.7s -_bk;t=1781335934815(07:32:14) INFO: -_bk;t=1781335934815 _bk;t=1781335934815//tests/integration:pip_parse_test_bazel_9.1.0 (cached) PASSED in 13.3s -_bk;t=1781335934815(07:32:14) INFO: -_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_test_bazel_self (cached) PASSED in 10.2s -_bk;t=1781335934816(07:32:14) INFO: -_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_7.7.0 (cached) PASSED in 9.0s -_bk;t=1781335934816(07:32:14) INFO: -_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_8.5.1 (cached) PASSED in 10.3s -_bk;t=1781335934816(07:32:14) INFO: -_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_9.1.0 (cached) PASSED in 10.8s -_bk;t=1781335934816(07:32:14) INFO: -_bk;t=1781335934816 _bk;t=1781335934816//tests/integration:pip_parse_workspace_test_bazel_self (cached) PASSED in 10.3s -_bk;t=1781335934816(07:32:14) INFO: -_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_7.7.0 (cached) PASSED in 10.1s -_bk;t=1781335934817(07:32:14) INFO: -_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_8.5.1 (cached) PASSED in 10.1s -_bk;t=1781335934817(07:32:14) INFO: -_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_9.1.0 (cached) PASSED in 10.4s -_bk;t=1781335934817(07:32:14) INFO: -_bk;t=1781335934817 _bk;t=1781335934817//tests/integration:py_cc_toolchain_registered_test_bazel_self (cached) PASSED in 9.4s -_bk;t=1781335934817(07:32:14) INFO: -_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_7.7.0 (cached) PASSED in 8.0s -_bk;t=1781335934818(07:32:14) INFO: -_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_8.5.1 (cached) PASSED in 9.5s -_bk;t=1781335934818(07:32:14) INFO: -_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_9.1.0 (cached) PASSED in 10.2s -_bk;t=1781335934818(07:32:14) INFO: -_bk;t=1781335934818 _bk;t=1781335934818//tests/integration:py_cc_toolchain_registered_workspace_test_bazel_self (cached) PASSED in 9.4s -_bk;t=1781335934818(07:32:14) INFO: -_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_7.7.0 (cached) PASSED in 11.0s -_bk;t=1781335934819(07:32:14) INFO: -_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_8.5.1 (cached) PASSED in 11.6s -_bk;t=1781335934819(07:32:14) INFO: -_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_9.1.0 (cached) PASSED in 11.4s -_bk;t=1781335934819(07:32:14) INFO: -_bk;t=1781335934819 _bk;t=1781335934819//tests/integration:runtime_manifests_test_bazel_self (cached) PASSED in 10.7s -_bk;t=1781335934819(07:32:14) INFO: -_bk;t=1781335934820 _bk;t=1781335934820//tests/integration:toolchain_target_settings_test_bazel_7.7.0 (cached) PASSED in 11.6s -_bk;t=1781335934820(07:32:14) INFO: -_bk;t=1781335934820 _bk;t=1781335934820//tests/integration:toolchain_target_settings_test_bazel_8.5.1 (cached) PASSED in 12.1s -_bk;t=1781335934820(07:32:14) INFO: -_bk;t=1781335934820 _bk;t=1781335934820//tests/integration:toolchain_target_settings_test_bazel_9.1.0 (cached) PASSED in 11.9s -_bk;t=1781335934820(07:32:14) INFO: -_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:toolchain_target_settings_test_bazel_self (cached) PASSED in 11.1s -_bk;t=1781335934821(07:32:14) INFO: -_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:uv_lock_test_bazel_7.7.0 PASSED in 19.7s -_bk;t=1781335934821(07:32:14) INFO: -_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:uv_lock_test_bazel_8.5.1 PASSED in 20.1s -_bk;t=1781335934821(07:32:14) INFO: -_bk;t=1781335934821 _bk;t=1781335934821//tests/integration:uv_lock_test_bazel_9.1.0 PASSED in 18.2s -_bk;t=1781335934821(07:32:14) INFO: -_bk;t=1781335934822 _bk;t=1781335934822//tests/integration:uv_lock_test_bazel_self PASSED in 17.3s -_bk;t=1781335934822(07:32:14) INFO: -_bk;t=1781335934822 _bk;t=1781335934822//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 6.1s -_bk;t=1781335934822 Stats over 3 runs: max = 6.1s, min = 5.6s, avg = 5.8s, dev = 0.2s -_bk;t=1781335934822(07:32:14) INFO: -_bk;t=1781335934822 _bk;t=1781335934822 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335934822(07:32:14) INFO: -_bk;t=1781335934822 _bk;t=1781335934822 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335934822(07:32:14) INFO: -_bk;t=1781335934823 _bk;t=1781335934823 /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/execroot/_main/bazel-out/k8-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335934823(07:32:14) INFO: -_bk;t=1781335934823 _bk;t=1781335934823 -_bk;t=1781335934823(07:32:14) INFO: -_bk;t=1781335934823 _bk;t=1781335934823Executed 5 out of 53 tests: 52 tests pass and 1 fails locally. -_bk;t=1781335934823(07:32:14) INFO: -_bk;t=1781335934823 _bk;t=1781335934823There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. -_bk;t=1781335934823(07:32:14) INFO: -_bk;t=1781335935033 _bk;t=1781335935033(07:32:15) INFO: Streaming build results to: https://btx.cloud.google.com/invocations/edfaa7d6-2eec-4df9-84db-2b6a65dd5a65 -_bk;t=1781335935033bazel info output_base -_bk;t=1781335935243WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335935243INFO: Invocation ID: d59a4e07-4ef6-4cdf-8646-a9c3c03eb993 -_bk;t=1781335935253 -_bk;t=1781335935253 -_bk;t=1781335935253--- :gcloud: Uploading log file: /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=1781335935253 -_bk;t=1781335935253 -_bk;t=1781335935253buildkite-agent artifact upload /var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log -_bk;t=17813359352672026-06-13 07:32:15 INFO  Found 1 files that match "/var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log" -_bk;t=17813359352682026-06-13 07:32:15 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration -_bk;t=17813359352682026-06-13 07:32:15 INFO  Creating (0-1)/1 artifacts -_bk;t=17813359353712026-06-13 07:32:15 INFO  Uploading 019ebfe5-496b-485b-be3d-47c599f05e3b var/lib/buildkite-agent/.cache/bazel/_bazel_buildkite-agent/ec321eb2cc2d0f8f91b676b6d4c66c29/java.log (164 KiB) -_bk;t=1781335935379buildkite-agent artifact upload /tmp/tmp5lw_aaog/test_bep.json -_bk;t=17813359353932026-06-13 07:32:15 INFO  Found 1 files that match "/tmp/tmp5lw_aaog/test_bep.json" -_bk;t=17813359353942026-06-13 07:32:15 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63ae-4037-a692-c008a270a756"), using your agent configuration -_bk;t=17813359353942026-06-13 07:32:15 INFO  Creating (0-1)/1 artifacts -_bk;t=17813359354982026-06-13 07:32:15 INFO  Uploading 019ebfe5-49e7-4aef-b84e-206999cb7e0d tmp/tmp5lw_aaog/test_bep.json (464 KiB) -_bk;t=17813359355672026-06-13 07:32:15 INFO  Artifact uploads completed successfully -_bk;t=17813359356942026-06-13 07:32:15 INFO  Artifact uploads completed successfully -_bk;t=1781335935695bazel test failed with exit code 3 -_bk;t=1781335938591^^^ +++ -_bk;t=1781335938591🚨 Error: The command exited with status 3 -_bk;t=1781335938591^^^ +++ -_bk;t=1781335938591user command error: running "plugin docker-buildkite-plugin command" shell hook: The plugin docker-buildkite-plugin command hook exited with status 3 -_bk;t=1781335938591~~~ Running plugin docker-buildkite-plugin pre-exit hook -_bk;t=1781335938591$ /etc/buildkite-agent/plugins/bk-docker-9l5n/github-com-buildkite-plugins-docker-buildkite-plugin-v3-8-0/hooks/pre-exit diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log deleted file mode 100644 index d5a3da6a76..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e.log +++ /dev/null @@ -1,647 +0,0 @@ -_bk;t=1781335322046~~~ Running agent environment hook -_bk;t=1781335322046$ /opt/homebrew/etc/buildkite-agent/hooks/environment -_bk;t=1781335322248# SSL_CERT_FILE added -_bk;t=1781335322248# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e" -_bk;t=1781335322248# BUILDKITE_GS_APPLICATION_CREDENTIALS added -_bk;t=1781335322248# JAVA_TOOL_OPTIONS added -_bk;t=1781335322248# ANDROID_NDK_HOME added -_bk;t=1781335322248# ANDROID_HOME added -_bk;t=1781335322248# COURSIER_OPTS added -_bk;t=1781335322248~~~ Preparing working directory -_bk;t=1781335322248# Creating "/Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python" -_bk;t=1781335322248$ cd /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python -_bk;t=1781335322248$ cd /usr/local/var/bazelbuild -_bk;t=1781335323416# Updating existing repository mirror to find commit 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335323426# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously -_bk;t=1781335323426$ git --git-dir=/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head -_bk;t=1781335323568remote: Enumerating objects: 13, done._bk;t=1781335323568 -_bk;t=1781335323568remote: Counting objects: 7% (1/13)_bk;t=1781335323568 remote: Counting objects: 15% (2/13)_bk;t=1781335323568 remote: Counting objects: 23% (3/13)_bk;t=1781335323568 remote: Counting objects: 30% (4/13)_bk;t=1781335323568 remote: Counting objects: 38% (5/13)_bk;t=1781335323568 remote: Counting objects: 46% (6/13)_bk;t=1781335323568 remote: Counting objects: 53% (7/13)_bk;t=1781335323568 remote: Counting objects: 61% (8/13)_bk;t=1781335323568 remote: Counting objects: 69% (9/13)_bk;t=1781335323568 remote: Counting objects: 76% (10/13)_bk;t=1781335323568 remote: Counting objects: 84% (11/13)_bk;t=1781335323568 remote: Counting objects: 92% (12/13)_bk;t=1781335323568 remote: Counting objects: 100% (13/13)_bk;t=1781335323568 remote: Counting objects: 100% (13/13), done._bk;t=1781335323568 -_bk;t=1781335323568remote: Compressing objects: 50% (1/2)_bk;t=1781335323568 remote: Compressing objects: 100% (2/2)_bk;t=1781335323568 remote: Compressing objects: 100% (2/2), done._bk;t=1781335323568 -_bk;t=1781335323568remote: Total 7 (delta 4), reused 7 (delta 4), pack-reused 0 (from 0)_bk;t=1781335323568 -_bk;t=1781335323574Unpacking objects: 14% (1/7) Unpacking objects: 28% (2/7) Unpacking objects: 42% (3/7) Unpacking objects: 57% (4/7) Unpacking objects: 71% (5/7) Unpacking objects: 85% (6/7) Unpacking objects: 100% (7/7) Unpacking objects: 100% (7/7), 1.03 KiB | 210.00 KiB/s, done. -_bk;t=1781335323605From https://github.com/bazel-contrib/rules_python -_bk;t=1781335323605 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335323605 76028c350..92c48e57c refs/pull/3812/head -> refs/pull/3812/head -_bk;t=1781335323610$ cd /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python -_bk;t=1781335323610$ git clone -v --reference /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335323621Cloning into '.'... -_bk;t=1781335323661POST git-upload-pack (182 bytes) -_bk;t=1781335324056$ git clean -ffxdq -_bk;t=1781335324078# Fetch and checkout pull request head from GitHub -_bk;t=1781335324078$ git fetch -v --prune -- origin refs/pull/3812/head 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335324121POST git-upload-pack (402 bytes) -_bk;t=1781335324160From https://github.com/bazel-contrib/rules_python -_bk;t=1781335324160 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335324160 * branch 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -> FETCH_HEAD -_bk;t=1781335324177# FETCH_HEAD is now `92c48e57c6353feb0452ad82f7cfc2c744616fa4` -_bk;t=1781335324177$ git checkout -f 92c48e57c6353feb0452ad82f7cfc2c744616fa4 -_bk;t=1781335324219Note: switching to '92c48e57c6353feb0452ad82f7cfc2c744616fa4'. -_bk;t=1781335324219 -_bk;t=1781335324219You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335324219changes and commit them, and you can discard any commits you make in this -_bk;t=1781335324219state without impacting any branches by switching back to a branch. -_bk;t=1781335324219 -_bk;t=1781335324219If you want to create a new branch to retain commits you create, you may -_bk;t=1781335324219do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335324219 -_bk;t=1781335324219 git switch -c -_bk;t=1781335324219 -_bk;t=1781335324219Or undo this operation with: -_bk;t=1781335324219 -_bk;t=1781335324219 git switch - -_bk;t=1781335324219 -_bk;t=1781335324219Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335324219 -_bk;t=1781335324219HEAD is now at 92c48e57c feat(skills): Output swarm summary and job IDs in monitor_remote_ci -_bk;t=1781335324220# Cleaning again to catch any post-checkout changes -_bk;t=1781335324220$ git clean -ffxdq -_bk;t=1781335324244# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335324244# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335324244~~~ Running commands -_bk;t=1781335324244$ which python3 -_bk;t=1781335324244python3 -V -_bk;t=1781335324244curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py -_bk;t=1781335324244python3 bazelci.py runner --task=integration_test_bazelinbazel_macos -_bk;t=1781335324248/opt/homebrew/bin/python3 -_bk;t=1781335324255Python 3.12.11 -_bk;t=1781335324460 -_bk;t=1781335324460 -_bk;t=1781335324460--- :xcode: Activating Xcode 26.0... -_bk;t=1781335324460 -_bk;t=1781335324460 -_bk;t=1781335324460/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode26.0.app -_bk;t=1781335324482/usr/bin/sudo /usr/bin/xcodebuild -runFirstLaunch -_bk;t=1781335324638 -_bk;t=1781335324638 -_bk;t=1781335324638--- :bazel: Using latest Bazel release -_bk;t=1781335324638 -_bk;t=1781335324638 -_bk;t=1781335324638bazel --version -_bk;t=17813353251842026/06/13 09:22:05 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-darwin-arm64... -_bk;t=1781335325218 Downloading: 0 MB out of 57 MB (0%) Downloading: 0 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (2%) Downloading: 1 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (4%) Downloading: 2 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (7%) Downloading: 4 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (9%) Downloading: 5 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (11%) Downloading: 6 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (14%) Downloading: 8 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (16%) Downloading: 9 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (18%) Downloading: 10 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (21%) Downloading: 12 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (23%) Downloading: 13 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (25%) Downloading: 14 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (28%) Downloading: 16 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (30%) Downloading: 17 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (32%) Downloading: 19 MB out of 57 MB (33%) Downloading: 19 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (35%) Downloading: 20 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (37%) Downloading: 21 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (40%) Downloading: 23 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (42%) Downloading: 24 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (44%) Downloading: 25 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (47%) Downloading: 27 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (49%) Downloading: 28 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (51%) Downloading: 29 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (54%) Downloading: 31 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (56%) Downloading: 32 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (58%) Downloading: 33 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (61%) Downloading: 35 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (63%) Downloading: 36 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (65%) Downloading: 38 MB out of 57 MB (66%) Downloading: 38 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (68%) Downloading: 39 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (70%) Downloading: 40 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (73%) Downloading: 42 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (75%) Downloading: 43 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (77%) Downloading: 44 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (80%) Downloading: 46 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (82%) Downloading: 47 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (84%) Downloading: 48 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (87%) Downloading: 50 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (89%) Downloading: 51 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (91%) Downloading: 52 MB out of 57 MB (92%) Downloading: 53 MB out of 57 MB (92%) Downloading: 53 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (94%) Downloading: 54 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (96%) Downloading: 55 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (98%) Downloading: 57 MB out of 57 MB (99%) Downloading: 57 MB out of 57 MB (100%) -_bk;t=1781335325970bazel 9.1.1 -_bk;t=1781335325971bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base -_bk;t=1781335326503Extracting Bazel installation... -_bk;t=1781335327273Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335327273WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335329364WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335329364INFO: Invocation ID: 5418b96d-1dd0-45de-b627-d6bca42fbb1d -_bk;t=1781335329398 -_bk;t=1781335329398 -_bk;t=1781335329398--- :information_source: Bazel Info -_bk;t=1781335329398 -_bk;t=1781335329398 -_bk;t=1781335329398bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc version -_bk;t=1781335329926WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: -_bk;t=1781335329926/etc/bazel.bazelrc -_bk;t=1781335329963WARNING: Running Bazel server needs to be killed, because the following startup options are different: -_bk;t=1781335329963 - Only in old server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true -_bk;t=1781335329963 - Only in new server: -_bk;t=1781335330309Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335330309WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335331065WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335331065INFO: Invocation ID: e942680b-1cc3-4226-ad7f-5a68fdab4761 -_bk;t=1781335331093Bazelisk version: v1.26.0 -_bk;t=1781335331093Build label: 9.1.1 -_bk;t=1781335331093Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer -_bk;t=1781335331093Build time: Wed Jun 03 15:47:00 2026 (1780501620) -_bk;t=1781335331093Build timestamp: 1780501620 -_bk;t=1781335331093Build timestamp as int: 1780501620 -_bk;t=1781335331093 -_bk;t=1781335331093bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc info -_bk;t=1781335331601WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: -_bk;t=1781335331601/etc/bazel.bazelrc -_bk;t=1781335331660WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335331660INFO: Invocation ID: 82b75b6f-3ca2-4350-94d0-e474ea0e6c27 -_bk;t=1781335331723WARNING: /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335332595WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335332595WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335332595WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335332595WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335332919bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335332919bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335332919bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335332920character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335332920command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/command.log -_bk;t=1781335332920committed-heap-size: 100MB -_bk;t=1781335332920execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main -_bk;t=1781335332921gc-count: 15 -_bk;t=1781335332921gc-time: 28ms -_bk;t=1781335332922install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10 -_bk;t=1781335332922java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10/embedded_tools/jdk -_bk;t=1781335332922java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335332922java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335332922local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335332923max-heap-size: 8589MB -_bk;t=1781335332923output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b -_bk;t=1781335332923output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out -_bk;t=1781335332923package_path: %workspace% -_bk;t=1781335332923release: release 9.1.1 -_bk;t=1781335332923repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335332924server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-092210.73226 -_bk;t=1781335332924server_pid: 73226 -_bk;t=1781335332925used-heap-size: 38MB -_bk;t=1781335332925workspace: /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python -_bk;t=1781335332932 -_bk;t=1781335332934 -_bk;t=1781335332934--- :information_source: Environment Variables -_bk;t=1781335332934 -_bk;t=1781335332934 -_bk;t=1781335332934BUILDKITE_CONFIG_PATH=(/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg) -_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_OS_VERSION=(15.7.2) -_bk;t=1781335332934BUILDKITE_SIGNAL_GRACE_PERIOD_SECONDS=(9) -_bk;t=1781335332934BUILDKITE_BUILD_CREATOR=(Richard Levasseur) -_bk;t=1781335332934BUILDKITE_LAST_HOOK_EXIT_STATUS=(0) -_bk;t=1781335332934BUILDKITE_AGENT_EXPERIMENT=() -_bk;t=1781335332934SSL_CERT_FILE=(/opt/homebrew/lib/python3.12/site-packages/certifi/cacert.pem) -_bk;t=1781335332934BUILDKITE_AGENT_PID=(73155) -_bk;t=1781335332934ANDROID_HOME=(/Users/buildkite/android-sdk-macosx) -_bk;t=1781335332934TERM=(xterm-256color) -_bk;t=1781335332934SHELL=(/bin/zsh) -_bk;t=1781335332934BUILDKITE_RETRY_COUNT=(0) -_bk;t=1781335332934BUILDKITE_NO_HTTP2=(false) -_bk;t=1781335332934BUILDKITE_ENV_FILE=(/tmp/job-env-019ebfdb-e00f-4bcc-bba1-9c5de8379c7e2144443939) -_bk;t=1781335332934BUILDKITE_ENV_JSON_FILE=(/tmp/job-env-json-019ebfdb-e00f-4bcc-bba1-9c5de8379c7e2641349067) -_bk;t=1781335332934BUILDKITE_ARTIFACT_PATHS=() -_bk;t=1781335332934GOOGLE_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) -_bk;t=1781335332934BUILDKITE_GIT_FETCH_FLAGS=(-v --prune) -_bk;t=1781335332934BUILDKITE_CANCEL_GRACE_PERIOD=(10) -_bk;t=1781335332934BUILDKITE_SOURCE=(webhook) -_bk;t=1781335332934BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e) -_bk;t=1781335332934BUILDKITE_AGENT_DEBUG=(false) -_bk;t=1781335332934BUILDKITE_GIT_CLONE_MIRROR_FLAGS=(-v --bare) -_bk;t=1781335332934BUILDKITE_SCRIPT_PATH=(which python3 -_bk;t=1781335332934python3 -V -_bk;t=1781335332934curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py -_bk;t=1781335332934python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) -_bk;t=1781335332934BUILDKITE_ORGANIZATION_SLUG=(bazel) -_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_MACHINE_TYPE=(applevirtualmachine1) -_bk;t=1781335332934BUILDKITE_LOCAL_HOOKS_ENABLED=(true) -_bk;t=1781335332934BUILDKITE_COMMIT_RESOLVED=(true) -_bk;t=1781335332934BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) -_bk;t=1781335332934BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) -_bk;t=1781335332934GIT_TERMINAL_PROMPT=(0) -_bk;t=1781335332934BUILDKITE_SOCKETS_PATH=(/Users/buildkite/.buildkite-agent/sockets) -_bk;t=1781335332934USER=(buildkite) -_bk;t=1781335332934BUILDKITE_COMPUTE_TYPE=(self-hosted) -_bk;t=1781335332934SUDO_USER=(root) -_bk;t=1781335332934BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) -_bk;t=1781335332934SUDO_UID=(0) -_bk;t=1781335332934BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) -_bk;t=1781335332934BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335332934BUILDKITE_PROJECT_PROVIDER=(github) -_bk;t=1781335332934BUILDKITE_STEP_KEY=() -_bk;t=1781335332934BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) -_bk;t=1781335332934BUILDKITE_PLUGINS_ENABLED=(true) -_bk;t=1781335332934BUILDKITE_GS_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) -_bk;t=1781335332934BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) -_bk;t=1781335332934BUILDKITE_AGENT_DEBUG_HTTP=(false) -_bk;t=1781335332934BUILDKITE_PULL_REQUEST=(3812) -_bk;t=1781335332934BUILDKITE_GIT_MIRRORS_LOCK_TIMEOUT=(300) -_bk;t=1781335332934BUILDKITE_AGENT_ENDPOINT=(https://agent.buildkite.com/v3) -_bk;t=1781335332934BUILDKITE_HOOKS_PATH=(/opt/homebrew/etc/buildkite-agent/hooks) -_bk;t=1781335332934BUILDKITE_GIT_CLEAN_FLAGS=(-ffxdq) -_bk;t=1781335332934BUILDKITE_GITHUB_ACTION=(synchronize) -_bk;t=1781335332934BUILDKITE_REQUEST_HEADER_BUILDKITE_PIPELINES_SHARD_ID=(011) -_bk;t=1781335332934BUILDKITE_GITHUB_EVENT=(pull_request) -_bk;t=1781335332934BUILDKITE_BUILD_ID=(019ebfdb-afc0-4350-be53-56e1e1dcf7df) -_bk;t=1781335332934PATH=(/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin) -_bk;t=1781335332934MAIL=(/var/mail/root) -_bk;t=1781335332934BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() -_bk;t=1781335332934BUILDKITE_REDACTED_VARS=(*_PASSWORD,*_SECRET,*_TOKEN,*_PRIVATE_KEY,*_ACCESS_KEY,*_SECRET_KEY,*_CONNECTION_STRING) -_bk;t=1781335332934BUILDKITE_GIT_MIRRORS_PATH=(/usr/local/var/bazelbuild) -_bk;t=1781335332934BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) -_bk;t=1781335332934COURSIER_OPTS=(-Djava.net.preferIPv6Addresses=true) -_bk;t=1781335332934BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335332934PWD=(/Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python) -_bk;t=1781335332934BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) -_bk;t=1781335332934BUILDKITE_SHELL=(/bin/bash -e -c) -_bk;t=1781335332934BUILDKITE_PIPELINE_PROVIDER=(github) -_bk;t=1781335332934BUILDKITE_GIT_SUBMODULES=(true) -_bk;t=1781335332934BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() -_bk;t=1781335332934BUILDKITE_GIT_MIRRORS_SKIP_UPDATE=(false) -_bk;t=1781335332934BUILDKITE_BUILD_NUMBER=(15720) -_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_QUEUE=(macos_arm64) -_bk;t=1781335332934BAZEL_BUCKET_TYPE=(untrusted) -_bk;t=1781335332934BUILDKITE_SSH_KEYSCAN=(true) -_bk;t=1781335332934BUILDKITE_AGENT_META_DATA_KIND=(worker) -_bk;t=1781335332935BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() -_bk;t=1781335332935BUILDKITE_PLUGINS_PATH=(/usr/local/var/buildkite-agent/plugins) -_bk;t=1781335332935BUILDKITE_LABEL=(tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64) -_bk;t=1781335332935BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15720) -_bk;t=1781335332935BUILDKITE_PULL_REQUEST_LABELS=() -_bk;t=1781335332935BUILDKITE_JOB_ID=(019ebfdb-e00f-4bcc-bba1-9c5de8379c7e) -_bk;t=1781335332935BUILDKITE_PIPELINE_SLUG=(rules-python-python) -_bk;t=1781335332935BUILDKITE_AGENT_ID=(019ebfda-eb3c-4605-a88b-fe2ba441ed63) -_bk;t=1781335332935JAVA_TOOL_OPTIONS=(-Djava.net.preferIPv6Addresses=true) -_bk;t=1781335332935SHLVL=(1) -_bk;t=1781335332935SUDO_COMMAND=(/usr/bin/env GOOGLE_APPLICATION_CREDENTIALS=/opt/homebrew/etc/buildkite-agent/bazel.json PATH=/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin BUILDKITE_AGENT_DISCONNECT_AFTER_JOB=true BUILDKITE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT=82800 BUILDKITE_AGENT_NAME=bk-macos-arm64-1u9v BUILDKITE_AGENT_PRIORITY=0 BUILDKITE_AGENT_TOKEN=f411f9d8498d4f9762e554835e81a24e2cd9a15fa6740b1276 BUILDKITE_AGENT_TAGS=queue=macos_arm64,kind=worker,os=macos,os-version=15.7.2,machine-type=applevirtualmachine1 BUILDKITE_BUILD_PATH=/Users/buildkite/builds BUILDKITE_CONFIG_PATH=/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg BUILDKITE_GIT_MIRRORS_PATH=/usr/local/var/bazelbuild BUILDKITE_GIT_CLONE_MIRROR_FLAGS=-v --bare BAZEL_BUCKET_TYPE=untrusted /opt/homebrew/bin/buildkite-agent start) -_bk;t=1781335332935HOME=(/Users/buildkite) -_bk;t=1781335332935BUILDKITE_TRIGGERED_FROM_BUILD_ID=() -_bk;t=1781335332935BUILDKITE_REPO_MIRROR=(/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git) -_bk;t=1781335332935BUILDKITE_AGENT_JOB_API_SOCKET=(/Users/buildkite/.buildkite-agent/sockets/job-api/73160-62344.sock) -_bk;t=1781335332935BUILDKITE_COMMAND=(which python3 -_bk;t=1781335332935python3 -V -_bk;t=1781335332935curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335317 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335317 -o collect_metrics.py -_bk;t=1781335332935python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) -_bk;t=1781335332935BUILDKITE_BIN_PATH=(/opt/homebrew/bin) -_bk;t=1781335332935CI=(true) -_bk;t=1781335332935BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) -_bk;t=1781335332935BUILDKITE_TRACE_CONTEXT_ENCODING=(gob) -_bk;t=1781335332935BUILDKITE=(true) -_bk;t=1781335332935BUILDKITE_STEP_ID=(019ebfdb-dede-4457-be66-235b16e82f9c) -_bk;t=1781335332935LOGNAME=(buildkite) -_bk;t=1781335332935BUILDKITE_ADDITIONAL_HOOKS_PATHS=() -_bk;t=1781335332935BUILDKITE_TAG=() -_bk;t=1781335332935BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) -_bk;t=1781335332935BUILDKITE_TIMEOUT=(480) -_bk;t=1781335332935BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) -_bk;t=1781335332935BUILDKITE_AGENT_DISABLE_WARNINGS_FOR=() -_bk;t=1781335332935BUILDKITE_REBUILT_FROM_BUILD_ID=() -_bk;t=1781335332935BUILDKITE_BUILD_CHECKOUT_PATH=(/Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python) -_bk;t=1781335332935BUILDKITE_AGENT_NAME=(bk-macos-arm64-1u9v) -_bk;t=1781335332935BUILDKITE_COMMAND_EVAL=(true) -_bk;t=1781335332935BUILDKITE_AGENT_JOB_API_TOKEN=([REDACTED]) -_bk;t=1781335332935BUILDKITE_PLUGIN_VALIDATION=(false) -_bk;t=1781335332935BUILDKITE_AGENT_META_DATA_OS=(macos) -_bk;t=1781335332935ANDROID_NDK_HOME=(/Users/buildkite/android-ndk-r15c) -_bk;t=1781335332935SUDO_GID=(0) -_bk;t=1781335332935BUILDKITE_STRICT_SINGLE_HOOKS=(false) -_bk;t=1781335332935BUILDKITE_GIT_CHECKOUT_FLAGS=(-f) -_bk;t=1781335332935BUILDKITE_COMMIT=(92c48e57c6353feb0452ad82f7cfc2c744616fa4) -_bk;t=1781335332935BUILDKITE_PIPELINE_NAME=(rules_python :python:) -_bk;t=1781335332935BUILDKITE_GIT_CLONE_FLAGS=(-v) -_bk;t=1781335332935BUILDKITE_BUILD_PATH=(/Users/buildkite/builds) -_bk;t=1781335332935BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) -_bk;t=1781335332935BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) -_bk;t=1781335332935_=(/opt/homebrew/bin/python3) -_bk;t=1781335332935__CF_USER_TEXT_ENCODING=(0x1F6:0:0) -_bk;t=1781335332935LC_CTYPE=(C.UTF-8) -_bk;t=1781335332935BAZELCI_TASK=(integration_test_bazelinbazel_macos) -_bk;t=1781335332935BAZELISK_USER_AGENT=(Bazelisk/BazelCI) -_bk;t=1781335332935OUTPUT_BASE=(/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b) -_bk;t=1781335332935 -_bk;t=1781335332935 -_bk;t=1781335332935--- :dart: Calculating targets -_bk;t=1781335332935 -_bk;t=1781335332935 -_bk;t=1781335332935 -_bk;t=1781335332935 -_bk;t=1781335332935--- :bazel: Computing flags for build step -_bk;t=1781335332935 -_bk;t=1781335332935 -_bk;t=1781335333017Adding to platform cache key: b'bazel' -_bk;t=1781335333017Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335333017Adding to platform cache key: b'macos_arm64' -_bk;t=1781335333017Adding to platform cache key: b'15.7.2\n' -_bk;t=1781335333017Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' -_bk;t=1781335333017Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' -_bk;t=1781335333017 -_bk;t=1781335333017 -_bk;t=1781335333017+++ :bazel: Build (9.1.1) -_bk;t=1781335333017 -_bk;t=1781335333017 -_bk;t=1781335333017bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmpwsin4oco/build_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE -- //tests/integration:subset -_bk;t=1781335333561WARNING: Running Bazel server needs to be killed, because the following startup options are different: -_bk;t=1781335333561 - Only in old server: -_bk;t=1781335333561 - Only in new server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true -_bk;t=1781335333902Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335333902WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335334877(09:22:14) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335334879(09:22:14) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335334879(09:22:14) INFO: Invocation ID: 11239ebc-d274-413a-b184-1bf5cc2827c2 -_bk;t=1781335334879(09:22:14) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -_bk;t=1781335334879(09:22:14) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks -_bk;t=1781335334879(09:22:14) INFO: Options provided by the client: -_bk;t=1781335334879 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /private/etc/bazel.bazelrc: -_bk;t=1781335334879 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses -_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc.deleted_packages: -_bk;t=1781335334879 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: -_bk;t=1781335334879 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335334879(09:22:14) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: -_bk;t=1781335334879 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335334879(09:22:14) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335334912(09:22:14) INFO: Current date is 2026-06-13 -_bk;t=1781335334912(09:22:14) -_bk;t=1781335334912 _bk;t=1781335334912(09:22:14) Computing main repo mapping: -_bk;t=1781335334934 _bk;t=1781335334934(09:22:14) WARNING: /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335334934(09:22:14) Computing main repo mapping: -_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335068(09:22:15) Computing main repo mapping: -_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335068(09:22:15) Computing main repo mapping: -_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335068(09:22:15) Computing main repo mapping: -_bk;t=1781335335068 _bk;t=1781335335068(09:22:15) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335335068(09:22:15) Computing main repo mapping: -_bk;t=1781335335646 _bk;t=1781335335646(09:22:15) Loading: -_bk;t=1781335335655 _bk;t=1781335335655(09:22:15) Loading: 1 packages loaded -_bk;t=1781335336199 _bk;t=1781335336199(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335336207 _bk;t=1781335336207(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335336207 -_bk;t=1781335336221 _bk;t=1781335336221 _bk;t=1781335336221(09:22:16) INFO: Found 0 targets... -_bk;t=1781335336221(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335336221 -_bk;t=1781335336238 _bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: Elapsed time: 2.700s, Critical Path: 0.01s -_bk;t=1781335336238(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335336238 -_bk;t=1781335336238 _bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: 1 process: 1 internal. -_bk;t=1781335336238(09:22:16) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335336238 -_bk;t=1781335336238 _bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: Build completed successfully, 1 total action -_bk;t=1781335336238(09:22:16) INFO: -_bk;t=1781335336238 _bk;t=1781335336238(09:22:16) INFO: -_bk;t=1781335336271 _bk;t=1781335336271(09:22:16) INFO: Build Event Protocol files produced successfully. -_bk;t=1781335336272curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-aarch64-apple-darwin -o /tmp/tmpwsin4oco/bazelci-agent -_bk;t=1781335336279 -_bk;t=1781335336279 -_bk;t=1781335336279--- :bazel: Computing flags for test step -_bk;t=1781335336279 -_bk;t=1781335336279 -_bk;t=1781335336335/tmp/tmpwsin4oco/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmpwsin4oco/test_bep.json -_bk;t=1781335336371Adding to platform cache key: b'bazel' -_bk;t=1781335336371Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335336371Adding to platform cache key: b'macos_arm64' -_bk;t=1781335336371Adding to platform cache key: b'15.7.2\n' -_bk;t=1781335336371Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' -_bk;t=1781335336371Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' -_bk;t=1781335336371 -_bk;t=1781335336371 -_bk;t=1781335336371+++ :bazel: Test (9.1.1) -_bk;t=1781335336371 -_bk;t=1781335336371 -_bk;t=1781335336371bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=3 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmpwsin4oco/test_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE --sandbox_writable_path=/Users/buildkite/Library/Caches/bazelisk -- //tests/integration:subset -_bk;t=1781335336926(09:22:16) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335336926(09:22:16) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335336926(09:22:16) INFO: Invocation ID: 7133c34a-2865-4989-836d-692f2d126876 -_bk;t=1781335336926(09:22:16) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -_bk;t=1781335336927(09:22:16) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks -_bk;t=1781335336927(09:22:16) INFO: Options provided by the client: -_bk;t=1781335336927 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /private/etc/bazel.bazelrc: -_bk;t=1781335336927 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses -_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc.deleted_packages: -_bk;t=1781335336927 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: -_bk;t=1781335336927 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: -_bk;t=1781335336927 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335336927(09:22:16) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: -_bk;t=1781335336927 'test' options: --test_output=errors -_bk;t=1781335336927(09:22:16) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-1u9v/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335336952(09:22:16) INFO: Current date is 2026-06-13 -_bk;t=1781335336952(09:22:16) -_bk;t=1781335336952 _bk;t=1781335336952(09:22:16) Computing main repo mapping: -_bk;t=1781335336998 _bk;t=1781335336998(09:22:16) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336998(09:22:16) Computing main repo mapping: -_bk;t=1781335336999 _bk;t=1781335336999(09:22:16) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336999(09:22:16) Computing main repo mapping: -_bk;t=1781335336999 _bk;t=1781335336999(09:22:16) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336999(09:22:16) Computing main repo mapping: -_bk;t=1781335336999 _bk;t=1781335336999(09:22:16) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335336999(09:22:16) Computing main repo mapping: -_bk;t=1781335337048 _bk;t=1781335337048(09:22:17) Loading: -_bk;t=1781335337050 _bk;t=1781335337050(09:22:17) Loading: 0 packages loaded -_bk;t=1781335337078 _bk;t=1781335337078(09:22:17) Analyzing: 3 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335337079 _bk;t=1781335337079(09:22:17) Analyzing: 3 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335337079 -_bk;t=1781335342090 _bk;t=1781335342090 _bk;t=1781335342090(09:22:22) Analyzing: 3 targets (114 packages loaded, 12721 targets configured) -_bk;t=1781335342090[13 / 13] no actions running -_bk;t=1781335342090 Fetching repository @@+python+python_3_11_15_aarch64-apple-darwin; Running python_repository.FixUpDyldIdPath -_bk;t=1781335342090 Fetching repository @@rules_cc++cc_configure_extension+local_config_cc; starting -_bk;t=1781335342090 Fetching repository @@+pip+pypiserver; starting -_bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700 _bk;t=1781335347700(09:22:27) Analyzing: 3 targets (130 packages loaded, 15704 targets configured) -_bk;t=1781335347700 currently loading: @@bazel_tools+xcode_configure_extension+local_config_xcode// -_bk;t=1781335347700[13 / 13] no actions running -_bk;t=1781335347758 _bk;t=1781335347758 _bk;t=1781335347758 _bk;t=1781335347758(09:22:27) INFO: Analyzed 3 targets (132 packages loaded, 15716 targets configured). -_bk;t=1781335347758(09:22:27) [13 / 13] no actions running -_bk;t=1781335355093 _bk;t=1781335355093(09:22:35) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 6s local, remote-cache -_bk;t=1781335356141 _bk;t=1781335356141(09:22:36) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) -_bk;t=1781335356141(09:22:36) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 7s local, remote-cache -_bk;t=1781335356661buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=17813353566822026-06-13 09:22:36 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" -_bk;t=17813353566832026-06-13 09:22:36 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration -_bk;t=17813353566832026-06-13 09:22:36 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353568152026-06-13 09:22:36 INFO  Uploading 019ebfdc-7611-4721-a8c8-9202fe0ed8d8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) -_bk;t=17813353573832026-06-13 09:22:37 INFO  Artifact uploads completed successfully -_bk;t=1781335361338 _bk;t=1781335361338(09:22:41) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 12s local, remote-cache -_bk;t=1781335362011 _bk;t=1781335362011(09:22:42) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) -_bk;t=1781335362011(09:22:42) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 13s local, remote-cache -_bk;t=1781335362719buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=17813353627442026-06-13 09:22:42 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" -_bk;t=17813353627452026-06-13 09:22:42 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration -_bk;t=17813353627452026-06-13 09:22:42 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353628622026-06-13 09:22:42 INFO  Uploading 019ebfdc-8dae-438e-98f0-13a4125befc4 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) -_bk;t=17813353634512026-06-13 09:22:43 INFO  Artifact uploads completed successfully -_bk;t=1781335367339 _bk;t=1781335367339(09:22:47) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335367948 _bk;t=1781335367948(09:22:47) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) -_bk;t=1781335367948(09:22:47) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 19s local, remote-cache -_bk;t=1781335367957 _bk;t=1781335367957 -_bk;t=1781335367957FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335367957 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335367957 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335367957 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335367957(09:22:47) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335367957 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 19s local, remote-cache -_bk;t=1781335367965 _bk;t=1781335367965 _bk;t=1781335367965(09:22:47) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335367965==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=17813353679652026/06/13 07:22:29 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-darwin-arm64... -_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335367965Extracting Bazel installation... -_bk;t=1781335367965Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335367965WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335367965bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335367965bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335367965bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335367965character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335367965command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/command.log -_bk;t=1781335367965committed-heap-size: 293MB -_bk;t=1781335367965execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main -_bk;t=1781335367965gc-count: 11 -_bk;t=1781335367965gc-time: 18ms -_bk;t=1781335367965install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 -_bk;t=1781335367965java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk -_bk;t=1781335367965java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335367965java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335367965local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335367965max-heap-size: 8589MB -_bk;t=1781335367965output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c -_bk;t=1781335367965output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out -_bk;t=1781335367965package_path: %workspace% -_bk;t=1781335367965release: release 9.1.0 -_bk;t=1781335367965repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335367965server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-072232.73761 -_bk;t=1781335367965server_pid: 73761 -_bk;t=1781335367965used-heap-size: 99MB -_bk;t=1781335367965workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335367965Computing main repo mapping: -_bk;t=1781335367965Loading: -_bk;t=1781335367965Loading: 0 packages loaded -_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335367965 -_bk;t=1781335367965ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335367965INFO: Elapsed time: 0.655s, Critical Path: 0.02s -_bk;t=1781335367965INFO: 1 process: 1 internal. -_bk;t=1781335367965ERROR: Build did NOT complete successfully -_bk;t=1781335367965FAILED: -_bk;t=1781335367965ERROR: No test targets were found, yet testing was requested -_bk;t=1781335367965================================================================================ -_bk;t=1781335367965==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335367965Extracting Bazel installation... -_bk;t=1781335367965Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335367965WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335367965bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335367965bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335367965bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335367965character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335367965command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/command.log -_bk;t=1781335367965committed-heap-size: 75MB -_bk;t=1781335367965execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main -_bk;t=1781335367965gc-count: 14 -_bk;t=1781335367965gc-time: 25ms -_bk;t=1781335367965install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 -_bk;t=1781335367965java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk -_bk;t=1781335367965java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335367965java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335367965local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335367965max-heap-size: 8589MB -_bk;t=1781335367965output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c -_bk;t=1781335367965output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out -_bk;t=1781335367965package_path: %workspace% -_bk;t=1781335367965release: release 9.1.0 -_bk;t=1781335367965repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335367965server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-072238.73886 -_bk;t=1781335367965server_pid: 73886 -_bk;t=1781335367965used-heap-size: 24MB -_bk;t=1781335367965workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335367965$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335367965Computing main repo mapping: -_bk;t=1781335367965Loading: -_bk;t=1781335367965Loading: 0 packages loaded -_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335367965Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335367965 -_bk;t=1781335367965ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335367965INFO: Elapsed time: 0.665s, Critical Path: 0.02s -_bk;t=1781335367965INFO: 1 process: 1 internal. -_bk;t=1781335367965ERROR: Build did NOT complete successfully -_bk;t=1781335367965FAILED: -_bk;t=1781335367965ERROR: No test targets were found, yet testing was requested -_bk;t=1781335367965================================================================================ -_bk;t=1781335367965==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335367966$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335367966Extracting Bazel installation... -_bk;t=1781335367966Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335367966WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335367966bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335367966bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335367966bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335367966character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335367966command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/command.log -_bk;t=1781335367966committed-heap-size: 100MB -_bk;t=1781335367966execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main -_bk;t=1781335367966gc-count: 15 -_bk;t=1781335367966gc-time: 23ms -_bk;t=1781335367966install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 -_bk;t=1781335367966java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk -_bk;t=1781335367966java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335367966java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335367966local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335367966max-heap-size: 8589MB -_bk;t=1781335367966output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c -_bk;t=1781335367966output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/execroot/_main/bazel-out -_bk;t=1781335367966package_path: %workspace% -_bk;t=1781335367966release: release 9.1.0 -_bk;t=1781335367966repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335367966server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/24d8c61319a6d43c1fdd2553ba24682c/java.log.177c7787-c7ce-49b5-9e4c-fb4592c50e64.buildkite.log.java.20260613-072244.74020 -_bk;t=1781335367966server_pid: 74020 -_bk;t=1781335367966used-heap-size: 28MB -_bk;t=1781335367966workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335367966$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335367966Computing main repo mapping: -_bk;t=1781335367966Loading: -_bk;t=1781335367966Loading: 0 packages loaded -_bk;t=1781335367966Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335367966Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335367966 -_bk;t=1781335367966ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335367966INFO: Elapsed time: 0.651s, Critical Path: 0.02s -_bk;t=1781335367966INFO: 1 process: 1 internal. -_bk;t=1781335367966ERROR: Build did NOT complete successfully -_bk;t=1781335367966FAILED: -_bk;t=1781335367966ERROR: No test targets were found, yet testing was requested -_bk;t=1781335367966================================================================================ -_bk;t=1781335367966(09:22:47) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335367966 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 19s local, remote-cache -_bk;t=1781335368802buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=17813353688252026-06-13 09:22:48 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" -_bk;t=17813353688252026-06-13 09:22:48 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration -_bk;t=17813353688252026-06-13 09:22:48 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353689312026-06-13 09:22:48 INFO  Uploading 019ebfdc-a566-4c8b-9e5d-596047139e1a tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) -_bk;t=17813353694862026-06-13 09:22:49 INFO  Artifact uploads completed successfully -_bk;t=1781335377019 _bk;t=1781335377019 _bk;t=1781335377019(09:22:57) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335377019 Testing //tests/integration:uv_lock_test_bazel_self; 8s local, remote-cache -_bk;t=1781335382021 _bk;t=1781335382021 _bk;t=1781335382021(09:23:02) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335382021 Testing //tests/integration:uv_lock_test_bazel_self; 13s local, remote-cache -_bk;t=1781335386746 _bk;t=1781335386746 _bk;t=1781335386746(09:23:06) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335386746(09:23:06) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335386746 Testing //tests/integration:uv_lock_test_bazel_self; 18s local, remote-cache -_bk;t=1781335389005 _bk;t=1781335389005 _bk;t=1781335389005(09:23:09) INFO: Found 3 test targets... -_bk;t=1781335389005(09:23:09) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self -_bk;t=1781335389030 _bk;t=1781335389030(09:23:09) INFO: Elapsed time: 52.140s, Critical Path: 20.38s -_bk;t=1781335389030(09:23:09) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self -_bk;t=1781335389031 _bk;t=1781335389031(09:23:09) INFO: 32 processes: 3 remote cache hit, 28 internal, 8 local. -_bk;t=1781335389031(09:23:09) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self -_bk;t=1781335389031 _bk;t=1781335389031(09:23:09) INFO: Build completed, 1 test FAILED, 32 total actions -_bk;t=1781335389031(09:23:09) INFO: -_bk;t=1781335389031 _bk;t=1781335389031(09:23:09) INFO: -_bk;t=1781335389034 _bk;t=1781335389034//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 12.2s -_bk;t=1781335389034(09:23:09) INFO: -_bk;t=1781335389034 _bk;t=1781335389034//tests/integration:uv_lock_test_bazel_self PASSED in 18.3s -_bk;t=1781335389034(09:23:09) INFO: -_bk;t=1781335389035 _bk;t=1781335389035//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 6.6s -_bk;t=1781335389035 Stats over 3 runs: max = 6.6s, min = 4.9s, avg = 5.5s, dev = 0.7s -_bk;t=1781335389035(09:23:09) INFO: -_bk;t=1781335389035 _bk;t=1781335389035 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335389035(09:23:09) INFO: -_bk;t=1781335389035 _bk;t=1781335389035 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335389035(09:23:09) INFO: -_bk;t=1781335389035 _bk;t=1781335389035 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335389035(09:23:09) INFO: -_bk;t=1781335389036 _bk;t=1781335389036 -_bk;t=1781335389036(09:23:09) INFO: -_bk;t=1781335389036 _bk;t=1781335389036Executed 2 out of 3 tests: 2 tests pass and 1 fails locally. -_bk;t=1781335389036(09:23:09) INFO: -_bk;t=1781335389036 _bk;t=1781335389036There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. -_bk;t=1781335389036(09:23:09) INFO: -_bk;t=1781335389058 _bk;t=1781335389058(09:23:09) INFO: Build Event Protocol files produced successfully. -_bk;t=1781335389058bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base -_bk;t=1781335389613WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335389613INFO: Invocation ID: 9310cb2b-3e5d-443c-a707-820f6a2ae4fc -_bk;t=1781335389631 -_bk;t=1781335389631 -_bk;t=1781335389631--- :gcloud: Uploading log file: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log -_bk;t=1781335389631 -_bk;t=1781335389631 -_bk;t=1781335389631buildkite-agent artifact upload /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log -_bk;t=17813353896542026-06-13 09:23:09 INFO  Found 1 files that match "/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log" -_bk;t=17813353896542026-06-13 09:23:09 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration -_bk;t=17813353896542026-06-13 09:23:09 INFO  Creating (0-1)/1 artifacts -_bk;t=1781335389742buildkite-agent artifact upload /tmp/tmpwsin4oco/test_bep.json -_bk;t=17813353897582026-06-13 09:23:09 INFO  Uploading 019ebfdc-f6bf-422f-85b8-292aa782fafb Users/buildkite/Library/Caches/bazel/_bazel_buildkite/e016996177214c13db6094ea61cc7f6b/java.log (121 KiB) -_bk;t=17813353897682026-06-13 09:23:09 INFO  Found 1 files that match "/tmp/tmpwsin4oco/test_bep.json" -_bk;t=17813353897682026-06-13 09:23:09 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfdb-e00f-4bcc-bba1-9c5de8379c7e"), using your agent configuration -_bk;t=17813353897682026-06-13 09:23:09 INFO  Creating (0-1)/1 artifacts -_bk;t=17813353898752026-06-13 09:23:09 INFO  Uploading 019ebfdc-f733-48fc-a196-09fc8aad3101 tmp/tmpwsin4oco/test_bep.json (304 KiB) -_bk;t=17813353905322026-06-13 09:23:10 INFO  Artifact uploads completed successfully -_bk;t=17813353906832026-06-13 09:23:10 INFO  Artifact uploads completed successfully -_bk;t=1781335390690bazel test failed with exit code 3 -_bk;t=1781335390736^^^ +++ -_bk;t=1781335390736🚨 Error: The command exited with status 3 -_bk;t=1781335390736^^^ +++ -_bk;t=1781335390736user command error: exit status 3 diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log b/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log deleted file mode 100644 index 119ada5f4f..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log +++ /dev/null @@ -1,653 +0,0 @@ -_bk;t=1781335811706~~~ Running agent environment hook -_bk;t=1781335811708$ /opt/homebrew/etc/buildkite-agent/hooks/environment -_bk;t=1781335811986# JAVA_TOOL_OPTIONS added -_bk;t=1781335811986# BUILDKITE_ARTIFACT_UPLOAD_DESTINATION is now "gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96" -_bk;t=1781335811986# BUILDKITE_GS_APPLICATION_CREDENTIALS added -_bk;t=1781335811986# SSL_CERT_FILE added -_bk;t=1781335811986# ANDROID_HOME added -_bk;t=1781335811986# COURSIER_OPTS added -_bk;t=1781335811986# ANDROID_NDK_HOME added -_bk;t=1781335812015~~~ Preparing working directory -_bk;t=1781335812015# Creating "/Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python" -_bk;t=1781335812015$ cd /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python -_bk;t=1781335812016$ cd /usr/local/var/bazelbuild -_bk;t=1781335814257# Updating existing repository mirror to find commit d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335814272# Fetching and mirroring pull request head from GitHub. This will be retried if it fails, as the pull request head might not be available yet — GitHub creates them asynchronously -_bk;t=1781335814272$ git --git-dir=/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git fetch -- origin refs/pull/3812/head -_bk;t=1781335814448remote: Enumerating objects: 52, done._bk;t=1781335814448 -_bk;t=1781335814448remote: Counting objects: 1% (1/52)_bk;t=1781335814448 remote: Counting objects: 3% (2/52)_bk;t=1781335814448 remote: Counting objects: 5% (3/52)_bk;t=1781335814448 remote: Counting objects: 7% (4/52)_bk;t=1781335814448 remote: Counting objects: 9% (5/52)_bk;t=1781335814448 remote: Counting objects: 11% (6/52)_bk;t=1781335814448 remote: Counting objects: 13% (7/52)_bk;t=1781335814448 remote: Counting objects: 15% (8/52)_bk;t=1781335814448 remote: Counting objects: 17% (9/52)_bk;t=1781335814448 remote: Counting objects: 19% (10/52)_bk;t=1781335814448 remote: Counting objects: 21% (11/52)_bk;t=1781335814448 remote: Counting objects: 23% (12/52)_bk;t=1781335814448 remote: Counting objects: 25% (13/52)_bk;t=1781335814448 remote: Counting objects: 26% (14/52)_bk;t=1781335814448 remote: Counting objects: 28% (15/52)_bk;t=1781335814448 remote: Counting objects: 30% (16/52)_bk;t=1781335814448 remote: Counting objects: 32% (17/52)_bk;t=1781335814448 remote: Counting objects: 34% (18/52)_bk;t=1781335814448 remote: Counting objects: 36% (19/52)_bk;t=1781335814448 remote: Counting objects: 38% (20/52)_bk;t=1781335814448 remote: Counting objects: 40% (21/52)_bk;t=1781335814448 remote: Counting objects: 42% (22/52)_bk;t=1781335814448 remote: Counting objects: 44% (23/52)_bk;t=1781335814448 remote: Counting objects: 46% (24/52)_bk;t=1781335814448 remote: Counting objects: 48% (25/52)_bk;t=1781335814448 remote: Counting objects: 50% (26/52)_bk;t=1781335814448 remote: Counting objects: 51% (27/52)_bk;t=1781335814448 remote: Counting objects: 53% (28/52)_bk;t=1781335814448 remote: Counting objects: 55% (29/52)_bk;t=1781335814448 remote: Counting objects: 57% (30/52)_bk;t=1781335814448 remote: Counting objects: 59% (31/52)_bk;t=1781335814448 remote: Counting objects: 61% (32/52)_bk;t=1781335814448 remote: Counting objects: 63% (33/52)_bk;t=1781335814448 remote: Counting objects: 65% (34/52)_bk;t=1781335814448 remote: Counting objects: 67% (35/52)_bk;t=1781335814448 remote: Counting objects: 69% (36/52)_bk;t=1781335814448 remote: Counting objects: 71% (37/52)_bk;t=1781335814448 remote: Counting objects: 73% (38/52)_bk;t=1781335814448 remote: Counting objects: 75% (39/52)_bk;t=1781335814448 remote: Counting objects: 76% (40/52)_bk;t=1781335814448 remote: Counting objects: 78% (41/52)_bk;t=1781335814448 remote: Counting objects: 80% (42/52)_bk;t=1781335814448 remote: Counting objects: 82% (43/52)_bk;t=1781335814448 remote: Counting objects: 84% (44/52)_bk;t=1781335814448 remote: Counting objects: 86% (45/52)_bk;t=1781335814448 remote: Counting objects: 88% (46/52)_bk;t=1781335814448 remote: Counting objects: 90% (47/52)_bk;t=1781335814448 remote: Counting objects: 92% (48/52)_bk;t=1781335814448 remote: Counting objects: 94% (49/52)_bk;t=1781335814448 remote: Counting objects: 96% (50/52)_bk;t=1781335814448 remote: Counting objects: 98% (51/52)_bk;t=1781335814448 remote: Counting objects: 100% (52/52)_bk;t=1781335814448 remote: Counting objects: 100% (52/52), done._bk;t=1781335814448 -_bk;t=1781335814448remote: Compressing objects: 4% (1/21)_bk;t=1781335814448 remote: Compressing objects: 9% (2/21)_bk;t=1781335814448 remote: Compressing objects: 14% (3/21)_bk;t=1781335814448 remote: Compressing objects: 19% (4/21)_bk;t=1781335814448 remote: Compressing objects: 23% (5/21)_bk;t=1781335814448 remote: Compressing objects: 28% (6/21)_bk;t=1781335814448 remote: Compressing objects: 33% (7/21)_bk;t=1781335814448 remote: Compressing objects: 38% (8/21)_bk;t=1781335814448 remote: Compressing objects: 42% (9/21)_bk;t=1781335814448 remote: Compressing objects: 47% (10/21)_bk;t=1781335814448 remote: Compressing objects: 52% (11/21)_bk;t=1781335814448 remote: Compressing objects: 57% (12/21)_bk;t=1781335814448 remote: Compressing objects: 61% (13/21)_bk;t=1781335814449 remote: Compressing objects: 66% (14/21)_bk;t=1781335814449 remote: Compressing objects: 71% (15/21)_bk;t=1781335814449 remote: Compressing objects: 76% (16/21)_bk;t=1781335814449 remote: Compressing objects: 80% (17/21)_bk;t=1781335814449 remote: Compressing objects: 85% (18/21)_bk;t=1781335814449 remote: Compressing objects: 90% (19/21)_bk;t=1781335814449 remote: Compressing objects: 95% (20/21)_bk;t=1781335814449 remote: Compressing objects: 100% (21/21)_bk;t=1781335814449 remote: Compressing objects: 100% (21/21), done._bk;t=1781335814449 -_bk;t=1781335814450remote: Total 45 (delta 23), reused 41 (delta 19), pack-reused 0 (from 0)_bk;t=1781335814450 -_bk;t=1781335814461Unpacking objects: 2% (1/45) Unpacking objects: 4% (2/45) Unpacking objects: 6% (3/45) Unpacking objects: 8% (4/45) Unpacking objects: 11% (5/45) Unpacking objects: 13% (6/45) Unpacking objects: 15% (7/45) Unpacking objects: 17% (8/45) Unpacking objects: 20% (9/45) Unpacking objects: 22% (10/45) Unpacking objects: 24% (11/45) Unpacking objects: 26% (12/45) Unpacking objects: 28% (13/45) Unpacking objects: 31% (14/45) Unpacking objects: 33% (15/45) Unpacking objects: 35% (16/45) Unpacking objects: 37% (17/45) Unpacking objects: 40% (18/45) Unpacking objects: 42% (19/45) Unpacking objects: 44% (20/45) Unpacking objects: 46% (21/45) Unpacking objects: 48% (22/45) Unpacking objects: 51% (23/45) Unpacking objects: 53% (24/45) Unpacking objects: 55% (25/45) Unpacking objects: 57% (26/45) Unpacking objects: 60% (27/45) Unpacking objects: 62% (28/45) Unpacking objects: 64% (29/45) Unpacking objects: 66% (30/45) Unpacking objects: 68% (31/45) Unpacking objects: 71% (32/45) Unpacking objects: 73% (33/45) Unpacking objects: 75% (34/45) Unpacking objects: 77% (35/45) Unpacking objects: 80% (36/45) Unpacking objects: 82% (37/45) Unpacking objects: 84% (38/45) Unpacking objects: 86% (39/45) Unpacking objects: 88% (40/45) Unpacking objects: 91% (41/45) Unpacking objects: 93% (42/45) Unpacking objects: 95% (43/45) Unpacking objects: 97% (44/45) Unpacking objects: 100% (45/45) Unpacking objects: 100% (45/45), 8.83 KiB | 347.00 KiB/s, done. -_bk;t=1781335814522From https://github.com/bazel-contrib/rules_python -_bk;t=1781335814522 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335814522 8759e1bb1..d6eeb759a refs/pull/3812/head -> refs/pull/3812/head -_bk;t=1781335814528$ cd /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python -_bk;t=1781335814528$ git clone -v --reference /usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git -- https://github.com/bazel-contrib/rules_python.git . -_bk;t=1781335814545Cloning into '.'... -_bk;t=1781335814593POST git-upload-pack (182 bytes) -_bk;t=1781335814950$ git clean -ffxdq -_bk;t=1781335814979# Fetch and checkout pull request head from GitHub -_bk;t=1781335814979$ git fetch -v --prune -- origin refs/pull/3812/head d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335815035POST git-upload-pack (402 bytes) -_bk;t=1781335815086From https://github.com/bazel-contrib/rules_python -_bk;t=1781335815086 * branch refs/pull/3812/head -> FETCH_HEAD -_bk;t=1781335815086 * branch d6eeb759ae8b572077f955510d012f1e910dc44b -> FETCH_HEAD -_bk;t=1781335815109# FETCH_HEAD is now `d6eeb759ae8b572077f955510d012f1e910dc44b` -_bk;t=1781335815109$ git checkout -f d6eeb759ae8b572077f955510d012f1e910dc44b -_bk;t=1781335815221Note: switching to 'd6eeb759ae8b572077f955510d012f1e910dc44b'. -_bk;t=1781335815221 -_bk;t=1781335815221You are in 'detached HEAD' state. You can look around, make experimental -_bk;t=1781335815221changes and commit them, and you can discard any commits you make in this -_bk;t=1781335815221state without impacting any branches by switching back to a branch. -_bk;t=1781335815221 -_bk;t=1781335815221If you want to create a new branch to retain commits you create, you may -_bk;t=1781335815221do so (now or later) by using -c with the switch command. Example: -_bk;t=1781335815221 -_bk;t=1781335815221 git switch -c -_bk;t=1781335815221 -_bk;t=1781335815221Or undo this operation with: -_bk;t=1781335815221 -_bk;t=1781335815221 git switch - -_bk;t=1781335815221 -_bk;t=1781335815221Turn off this advice by setting config variable advice.detachedHead to false -_bk;t=1781335815221 -_bk;t=1781335815221HEAD is now at d6eeb759a feat(skills): Include Buildkite Build ID in monitor_remote_ci summary -_bk;t=1781335815222# Cleaning again to catch any post-checkout changes -_bk;t=1781335815222$ git clean -ffxdq -_bk;t=1781335815256# Checking to see if git commit information needs to be sent to Buildkite... -_bk;t=1781335815256# BUILDKITE_COMMIT is already resolved and meta-data populated, skipping -_bk;t=1781335815256~~~ Running commands -_bk;t=1781335815256$ which python3 -_bk;t=1781335815256python3 -V -_bk;t=1781335815256curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335815256python3 bazelci.py runner --task=integration_test_bazelinbazel_macos -_bk;t=1781335815262/opt/homebrew/bin/python3 -_bk;t=1781335815275Python 3.12.11 -_bk;t=1781335815566 -_bk;t=1781335815566 -_bk;t=1781335815566--- :xcode: Activating Xcode 26.0... -_bk;t=1781335815566 -_bk;t=1781335815566 -_bk;t=1781335815566/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode26.0.app -_bk;t=1781335815595/usr/bin/sudo /usr/bin/xcodebuild -runFirstLaunch -_bk;t=1781335815821 -_bk;t=1781335815821 -_bk;t=1781335815821--- :bazel: Using latest Bazel release -_bk;t=1781335815821 -_bk;t=1781335815821 -_bk;t=1781335815821bazel --version -_bk;t=17813358163452026/06/13 09:30:16 Downloading https://releases.bazel.build/9.1.1/release/bazel-9.1.1-darwin-arm64... -_bk;t=1781335816376 Downloading: 0 MB out of 57 MB (0%) Downloading: 0 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (1%) Downloading: 1 MB out of 57 MB (2%) Downloading: 1 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (3%) Downloading: 2 MB out of 57 MB (4%) Downloading: 2 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (5%) Downloading: 3 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (6%) Downloading: 4 MB out of 57 MB (7%) Downloading: 4 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (8%) Downloading: 5 MB out of 57 MB (9%) Downloading: 5 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (10%) Downloading: 6 MB out of 57 MB (11%) Downloading: 6 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (12%) Downloading: 7 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (13%) Downloading: 8 MB out of 57 MB (14%) Downloading: 8 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (15%) Downloading: 9 MB out of 57 MB (16%) Downloading: 9 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (17%) Downloading: 10 MB out of 57 MB (18%) Downloading: 10 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (19%) Downloading: 11 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (20%) Downloading: 12 MB out of 57 MB (21%) Downloading: 12 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (22%) Downloading: 13 MB out of 57 MB (23%) Downloading: 13 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (24%) Downloading: 14 MB out of 57 MB (25%) Downloading: 14 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (26%) Downloading: 15 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (27%) Downloading: 16 MB out of 57 MB (28%) Downloading: 16 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (29%) Downloading: 17 MB out of 57 MB (30%) Downloading: 17 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (31%) Downloading: 18 MB out of 57 MB (32%) Downloading: 19 MB out of 57 MB (33%) Downloading: 19 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (34%) Downloading: 20 MB out of 57 MB (35%) Downloading: 20 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (36%) Downloading: 21 MB out of 57 MB (37%) Downloading: 21 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (38%) Downloading: 22 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (39%) Downloading: 23 MB out of 57 MB (40%) Downloading: 23 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (41%) Downloading: 24 MB out of 57 MB (42%) Downloading: 24 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (43%) Downloading: 25 MB out of 57 MB (44%) Downloading: 25 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (45%) Downloading: 26 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (46%) Downloading: 27 MB out of 57 MB (47%) Downloading: 27 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (48%) Downloading: 28 MB out of 57 MB (49%) Downloading: 28 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (50%) Downloading: 29 MB out of 57 MB (51%) Downloading: 29 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (52%) Downloading: 30 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (53%) Downloading: 31 MB out of 57 MB (54%) Downloading: 31 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (55%) Downloading: 32 MB out of 57 MB (56%) Downloading: 32 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (57%) Downloading: 33 MB out of 57 MB (58%) Downloading: 33 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (59%) Downloading: 34 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (60%) Downloading: 35 MB out of 57 MB (61%) Downloading: 35 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (62%) Downloading: 36 MB out of 57 MB (63%) Downloading: 36 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (64%) Downloading: 37 MB out of 57 MB (65%) Downloading: 38 MB out of 57 MB (66%) Downloading: 38 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (67%) Downloading: 39 MB out of 57 MB (68%) Downloading: 39 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (69%) Downloading: 40 MB out of 57 MB (70%) Downloading: 40 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (71%) Downloading: 41 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (72%) Downloading: 42 MB out of 57 MB (73%) Downloading: 42 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (74%) Downloading: 43 MB out of 57 MB (75%) Downloading: 43 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (76%) Downloading: 44 MB out of 57 MB (77%) Downloading: 44 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (78%) Downloading: 45 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (79%) Downloading: 46 MB out of 57 MB (80%) Downloading: 46 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (81%) Downloading: 47 MB out of 57 MB (82%) Downloading: 47 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (83%) Downloading: 48 MB out of 57 MB (84%) Downloading: 48 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (85%) Downloading: 49 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (86%) Downloading: 50 MB out of 57 MB (87%) Downloading: 50 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (88%) Downloading: 51 MB out of 57 MB (89%) Downloading: 51 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (90%) Downloading: 52 MB out of 57 MB (91%) Downloading: 53 MB out of 57 MB (92%) Downloading: 53 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (93%) Downloading: 54 MB out of 57 MB (94%) Downloading: 54 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (95%) Downloading: 55 MB out of 57 MB (96%) Downloading: 55 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (97%) Downloading: 56 MB out of 57 MB (98%) Downloading: 57 MB out of 57 MB (98%) Downloading: 57 MB out of 57 MB (99%) Downloading: 57 MB out of 57 MB (100%) -_bk;t=1781335817100bazel 9.1.1 -_bk;t=1781335817102bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base -_bk;t=1781335817642Extracting Bazel installation... -_bk;t=1781335818554Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335818554WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335820795WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335820795INFO: Invocation ID: 4aeeb232-ba69-43e6-a945-33387b5eb80f -_bk;t=1781335820822 -_bk;t=1781335820822 -_bk;t=1781335820822--- :information_source: Bazel Info -_bk;t=1781335820822 -_bk;t=1781335820822 -_bk;t=1781335820822bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc version -_bk;t=1781335821339WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: -_bk;t=1781335821339/etc/bazel.bazelrc -_bk;t=1781335821383WARNING: Running Bazel server needs to be killed, because the following startup options are different: -_bk;t=1781335821383 - Only in old server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true -_bk;t=1781335821383 - Only in new server: -_bk;t=1781335821724Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335821724WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335822609WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335822609INFO: Invocation ID: 2cc0b3c3-eeda-4feb-b8a5-5fda6863f5a9 -_bk;t=1781335822646Bazelisk version: v1.26.0 -_bk;t=1781335822646Build label: 9.1.1 -_bk;t=1781335822646Build target: @@//src/main/java/com/google/devtools/build/lib/bazel:BazelServer -_bk;t=1781335822646Build time: Wed Jun 03 15:47:00 2026 (1780501620) -_bk;t=1781335822646Build timestamp: 1780501620 -_bk;t=1781335822646Build timestamp as int: 1780501620 -_bk;t=1781335822646 -_bk;t=1781335822646bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true --nosystem_rc --nohome_rc info -_bk;t=1781335823156WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files: -_bk;t=1781335823156/etc/bazel.bazelrc -_bk;t=1781335823217WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335823217INFO: Invocation ID: 7286c3cf-527e-4239-87d7-3a280bc4802c -_bk;t=1781335823284WARNING: /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335824205WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335824205WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335824205WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335824205WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335824547bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335824548bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335824548bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335824548character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335824548command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/command.log -_bk;t=1781335824548committed-heap-size: 100MB -_bk;t=1781335824548execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main -_bk;t=1781335824549gc-count: 15 -_bk;t=1781335824550gc-time: 34ms -_bk;t=1781335824550install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10 -_bk;t=1781335824551java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/install/fbbece01a6c11cdb572a5102a635ab10/embedded_tools/jdk -_bk;t=1781335824551java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335824551java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335824551local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335824551max-heap-size: 8589MB -_bk;t=1781335824551output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f -_bk;t=1781335824552output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out -_bk;t=1781335824552package_path: %workspace% -_bk;t=1781335824552release: release 9.1.1 -_bk;t=1781335824552repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335824553server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-093021.24179 -_bk;t=1781335824553server_pid: 24179 -_bk;t=1781335824553used-heap-size: 38MB -_bk;t=1781335824553workspace: /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python -_bk;t=1781335824560 -_bk;t=1781335824562 -_bk;t=1781335824562--- :information_source: Environment Variables -_bk;t=1781335824562 -_bk;t=1781335824562 -_bk;t=1781335824562BUILDKITE_CONFIG_PATH=(/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg) -_bk;t=1781335824562BUILDKITE_AGENT_META_DATA_OS_VERSION=(15.7.2) -_bk;t=1781335824562BUILDKITE_SIGNAL_GRACE_PERIOD_SECONDS=(9) -_bk;t=1781335824562BUILDKITE_BUILD_CREATOR=(Richard Levasseur) -_bk;t=1781335824562BUILDKITE_LAST_HOOK_EXIT_STATUS=(0) -_bk;t=1781335824562BUILDKITE_AGENT_EXPERIMENT=() -_bk;t=1781335824562SSL_CERT_FILE=(/opt/homebrew/lib/python3.12/site-packages/certifi/cacert.pem) -_bk;t=1781335824562BUILDKITE_AGENT_PID=(24101) -_bk;t=1781335824562ANDROID_HOME=(/Users/buildkite/android-sdk-macosx) -_bk;t=1781335824562TERM=(xterm-256color) -_bk;t=1781335824562SHELL=(/bin/zsh) -_bk;t=1781335824562BUILDKITE_RETRY_COUNT=(0) -_bk;t=1781335824562BUILDKITE_NO_HTTP2=(false) -_bk;t=1781335824562BUILDKITE_ENV_FILE=(/tmp/job-env-019ebfe3-63af-4914-8a69-2794cb5a8d961161276127) -_bk;t=1781335824562BUILDKITE_ENV_JSON_FILE=(/tmp/job-env-json-019ebfe3-63af-4914-8a69-2794cb5a8d964190198327) -_bk;t=1781335824562BUILDKITE_ARTIFACT_PATHS=() -_bk;t=1781335824562GOOGLE_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) -_bk;t=1781335824562BUILDKITE_GIT_FETCH_FLAGS=(-v --prune) -_bk;t=1781335824562BUILDKITE_CANCEL_GRACE_PERIOD=(10) -_bk;t=1781335824562BUILDKITE_SOURCE=(webhook) -_bk;t=1781335824562BUILDKITE_ARTIFACT_UPLOAD_DESTINATION=(gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96) -_bk;t=1781335824562BUILDKITE_AGENT_DEBUG=(false) -_bk;t=1781335824562BUILDKITE_GIT_CLONE_MIRROR_FLAGS=(-v --bare) -_bk;t=1781335824563BUILDKITE_SCRIPT_PATH=(which python3 -_bk;t=1781335824563python3 -V -_bk;t=1781335824563curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335824563python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) -_bk;t=1781335824563BUILDKITE_ORGANIZATION_SLUG=(bazel) -_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_MACHINE_TYPE=(applevirtualmachine1) -_bk;t=1781335824563BUILDKITE_LOCAL_HOOKS_ENABLED=(true) -_bk;t=1781335824563BUILDKITE_COMMIT_RESOLVED=(true) -_bk;t=1781335824563BUILDKITE_AGENT_ACCESS_TOKEN=([REDACTED]) -_bk;t=1781335824563BUILDKITE_PROJECT_SLUG=(bazel/rules-python-python) -_bk;t=1781335824563GIT_TERMINAL_PROMPT=(0) -_bk;t=1781335824563BUILDKITE_SOCKETS_PATH=(/Users/buildkite/.buildkite-agent/sockets) -_bk;t=1781335824563USER=(buildkite) -_bk;t=1781335824563BUILDKITE_COMPUTE_TYPE=(self-hosted) -_bk;t=1781335824563SUDO_USER=(root) -_bk;t=1781335824563BUILDKITE_ORGANIZATION_ID=(586ac9dd-b547-4a52-9d73-9e3a43ff74f9) -_bk;t=1781335824563SUDO_UID=(0) -_bk;t=1781335824563BUILDKITE_PULL_REQUEST_BASE_BRANCH=(main) -_bk;t=1781335824563BUILDKITE_BUILD_CREATOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335824563BUILDKITE_PROJECT_PROVIDER=(github) -_bk;t=1781335824563BUILDKITE_STEP_KEY=() -_bk;t=1781335824563BUILDKITE_PULL_REQUEST_REPO=(https://github.com/rickeylev/rules_python.git) -_bk;t=1781335824563BUILDKITE_PLUGINS_ENABLED=(true) -_bk;t=1781335824563BUILDKITE_GS_APPLICATION_CREDENTIALS=(/opt/homebrew/etc/buildkite-agent/bazel.json) -_bk;t=1781335824563BUILDKITE_BUILD_CREATOR_TEAMS=(bazel:bcr-maintainers:rules-python) -_bk;t=1781335824563BUILDKITE_AGENT_DEBUG_HTTP=(false) -_bk;t=1781335824563BUILDKITE_PULL_REQUEST=(3812) -_bk;t=1781335824563BUILDKITE_GIT_MIRRORS_LOCK_TIMEOUT=(300) -_bk;t=1781335824563BUILDKITE_AGENT_ENDPOINT=(https://agent.buildkite.com/v3) -_bk;t=1781335824563BUILDKITE_HOOKS_PATH=(/opt/homebrew/etc/buildkite-agent/hooks) -_bk;t=1781335824563BUILDKITE_GIT_CLEAN_FLAGS=(-ffxdq) -_bk;t=1781335824563BUILDKITE_GITHUB_ACTION=(synchronize) -_bk;t=1781335824563BUILDKITE_REQUEST_HEADER_BUILDKITE_PIPELINES_SHARD_ID=(011) -_bk;t=1781335824563BUILDKITE_GITHUB_EVENT=(pull_request) -_bk;t=1781335824563BUILDKITE_BUILD_ID=(019ebfe3-471d-479f-8cd3-e6ed7358923b) -_bk;t=1781335824563PATH=(/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin) -_bk;t=1781335824563MAIL=(/var/mail/root) -_bk;t=1781335824563BUILDKITE_TRIGGERED_FROM_BUILD_NUMBER=() -_bk;t=1781335824563BUILDKITE_REDACTED_VARS=(*_PASSWORD,*_SECRET,*_TOKEN,*_PRIVATE_KEY,*_ACCESS_KEY,*_SECRET_KEY,*_CONNECTION_STRING) -_bk;t=1781335824563BUILDKITE_GIT_MIRRORS_PATH=(/usr/local/var/bazelbuild) -_bk;t=1781335824563BUILDKITE_PIPELINE_ID=(129d6763-fb91-4bbb-a401-9dd80746c991) -_bk;t=1781335824563COURSIER_OPTS=(-Djava.net.preferIPv6Addresses=true) -_bk;t=1781335824563BUILDKITE_BUILD_AUTHOR_EMAIL=(richardlev@gmail.com) -_bk;t=1781335824563PWD=(/Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python) -_bk;t=1781335824563BUILDKITE_MESSAGE=(refactor(toolchains): register runtimes using manifest) -_bk;t=1781335824563BUILDKITE_SHELL=(/bin/bash -e -c) -_bk;t=1781335824563BUILDKITE_PIPELINE_PROVIDER=(github) -_bk;t=1781335824563BUILDKITE_GIT_SUBMODULES=(true) -_bk;t=1781335824563BUILDKITE_REBUILT_FROM_BUILD_NUMBER=() -_bk;t=1781335824563BUILDKITE_GIT_MIRRORS_SKIP_UPDATE=(false) -_bk;t=1781335824563BUILDKITE_BUILD_NUMBER=(15722) -_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_QUEUE=(macos_arm64) -_bk;t=1781335824563BAZEL_BUCKET_TYPE=(untrusted) -_bk;t=1781335824563BUILDKITE_SSH_KEYSCAN=(true) -_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_KIND=(worker) -_bk;t=1781335824563BUILDKITE_TRIGGERED_FROM_BUILD_PIPELINE_SLUG=() -_bk;t=1781335824563BUILDKITE_PLUGINS_PATH=(/usr/local/var/buildkite-agent/plugins) -_bk;t=1781335824563BUILDKITE_LABEL=(tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64) -_bk;t=1781335824563BUILDKITE_BUILD_URL=(https://buildkite.com/bazel/rules-python-python/builds/15722) -_bk;t=1781335824563BUILDKITE_PULL_REQUEST_LABELS=() -_bk;t=1781335824563BUILDKITE_JOB_ID=(019ebfe3-63af-4914-8a69-2794cb5a8d96) -_bk;t=1781335824563BUILDKITE_PIPELINE_SLUG=(rules-python-python) -_bk;t=1781335824563BUILDKITE_AGENT_ID=(019ebfd3-b177-48b4-9bdd-8d03617df3b0) -_bk;t=1781335824563JAVA_TOOL_OPTIONS=(-Djava.net.preferIPv6Addresses=true) -_bk;t=1781335824563SHLVL=(1) -_bk;t=1781335824563SUDO_COMMAND=(/usr/bin/env GOOGLE_APPLICATION_CREDENTIALS=/opt/homebrew/etc/buildkite-agent/bazel.json PATH=/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/sbin:/sbin BUILDKITE_AGENT_DISCONNECT_AFTER_JOB=true BUILDKITE_AGENT_DISCONNECT_AFTER_IDLE_TIMEOUT=82800 BUILDKITE_AGENT_NAME=bk-macos-arm64-cv10 BUILDKITE_AGENT_PRIORITY=0 BUILDKITE_AGENT_TOKEN=f411f9d8498d4f9762e554835e81a24e2cd9a15fa6740b1276 BUILDKITE_AGENT_TAGS=queue=macos_arm64,kind=worker,os=macos,os-version=15.7.2,machine-type=applevirtualmachine1 BUILDKITE_BUILD_PATH=/Users/buildkite/builds BUILDKITE_CONFIG_PATH=/opt/homebrew/etc/buildkite-agent/buildkite-agent.cfg BUILDKITE_GIT_MIRRORS_PATH=/usr/local/var/bazelbuild BUILDKITE_GIT_CLONE_MIRROR_FLAGS=-v --bare BAZEL_BUCKET_TYPE=untrusted /opt/homebrew/bin/buildkite-agent start) -_bk;t=1781335824563HOME=(/Users/buildkite) -_bk;t=1781335824563BUILDKITE_TRIGGERED_FROM_BUILD_ID=() -_bk;t=1781335824563BUILDKITE_REPO_MIRROR=(/usr/local/var/bazelbuild/https---github-com-bazel-contrib-rules-python-git) -_bk;t=1781335824563BUILDKITE_AGENT_JOB_API_SOCKET=(/Users/buildkite/.buildkite-agent/sockets/job-api/24113-34771.sock) -_bk;t=1781335824563BUILDKITE_COMMAND=(which python3 -_bk;t=1781335824563python3 -V -_bk;t=1781335824563curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/bazelci.py?1781335810 -o bazelci.py && curl -q --noproxy '*' -sS https://raw.githubusercontent.com/bazelbuild/continuous-integration/master/buildkite/collect_metrics.py?1781335810 -o collect_metrics.py -_bk;t=1781335824563python3 bazelci.py runner --task=integration_test_bazelinbazel_macos) -_bk;t=1781335824563BUILDKITE_BIN_PATH=(/opt/homebrew/bin) -_bk;t=1781335824563CI=(true) -_bk;t=1781335824563BUILDKITE_REPO=(https://github.com/bazel-contrib/rules_python.git) -_bk;t=1781335824563BUILDKITE_TRACE_CONTEXT_ENCODING=(gob) -_bk;t=1781335824563BUILDKITE=(true) -_bk;t=1781335824563BUILDKITE_STEP_ID=(019ebfe3-628f-4a0a-859c-67ebc1ae36eb) -_bk;t=1781335824563LOGNAME=(buildkite) -_bk;t=1781335824563BUILDKITE_ADDITIONAL_HOOKS_PATHS=() -_bk;t=1781335824563BUILDKITE_TAG=() -_bk;t=1781335824563BUILDKITE_BRANCH=(rickeylev:register-builtin-runtimes-manifest) -_bk;t=1781335824563BUILDKITE_TIMEOUT=(480) -_bk;t=1781335824563BUILDKITE_PIPELINE_TEAMS=(bazel:rules-python) -_bk;t=1781335824563BUILDKITE_AGENT_DISABLE_WARNINGS_FOR=() -_bk;t=1781335824563BUILDKITE_REBUILT_FROM_BUILD_ID=() -_bk;t=1781335824563BUILDKITE_BUILD_CHECKOUT_PATH=(/Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python) -_bk;t=1781335824563BUILDKITE_AGENT_NAME=(bk-macos-arm64-cv10) -_bk;t=1781335824563BUILDKITE_COMMAND_EVAL=(true) -_bk;t=1781335824563BUILDKITE_AGENT_JOB_API_TOKEN=([REDACTED]) -_bk;t=1781335824563BUILDKITE_PLUGIN_VALIDATION=(false) -_bk;t=1781335824563BUILDKITE_AGENT_META_DATA_OS=(macos) -_bk;t=1781335824563ANDROID_NDK_HOME=(/Users/buildkite/android-ndk-r15c) -_bk;t=1781335824563SUDO_GID=(0) -_bk;t=1781335824563BUILDKITE_STRICT_SINGLE_HOOKS=(false) -_bk;t=1781335824563BUILDKITE_GIT_CHECKOUT_FLAGS=(-f) -_bk;t=1781335824563BUILDKITE_COMMIT=(d6eeb759ae8b572077f955510d012f1e910dc44b) -_bk;t=1781335824563BUILDKITE_PIPELINE_NAME=(rules_python :python:) -_bk;t=1781335824563BUILDKITE_GIT_CLONE_FLAGS=(-v) -_bk;t=1781335824563BUILDKITE_BUILD_PATH=(/Users/buildkite/builds) -_bk;t=1781335824563BUILDKITE_BUILD_AUTHOR=(Richard Levasseur) -_bk;t=1781335824563BUILDKITE_PIPELINE_DEFAULT_BRANCH=(main) -_bk;t=1781335824563_=(/opt/homebrew/bin/python3) -_bk;t=1781335824563__CF_USER_TEXT_ENCODING=(0x1F6:0:0) -_bk;t=1781335824563LC_CTYPE=(C.UTF-8) -_bk;t=1781335824563BAZELCI_TASK=(integration_test_bazelinbazel_macos) -_bk;t=1781335824563BAZELISK_USER_AGENT=(Bazelisk/BazelCI) -_bk;t=1781335824563OUTPUT_BASE=(/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f) -_bk;t=1781335824563 -_bk;t=1781335824563 -_bk;t=1781335824563--- :dart: Calculating targets -_bk;t=1781335824563 -_bk;t=1781335824563 -_bk;t=1781335824563 -_bk;t=1781335824563 -_bk;t=1781335824563--- :bazel: Computing flags for build step -_bk;t=1781335824563 -_bk;t=1781335824563 -_bk;t=1781335824661Adding to platform cache key: b'bazel' -_bk;t=1781335824661Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335824661Adding to platform cache key: b'macos_arm64' -_bk;t=1781335824661Adding to platform cache key: b'15.7.2\n' -_bk;t=1781335824661Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' -_bk;t=1781335824661Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' -_bk;t=1781335824661 -_bk;t=1781335824661 -_bk;t=1781335824661+++ :bazel: Build (9.1.1) -_bk;t=1781335824661 -_bk;t=1781335824661 -_bk;t=1781335824661bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true build --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp10egavvm/build_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --build_tag_filters=integration-test --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE -- //tests/integration:subset -_bk;t=1781335825219WARNING: Running Bazel server needs to be killed, because the following startup options are different: -_bk;t=1781335825219 - Only in old server: -_bk;t=1781335825219 - Only in new server: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -Djava.net.preferIPv6Addresses=true -_bk;t=1781335825562Starting local Bazel server (9.1.1) and connecting to it... -_bk;t=1781335825562WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335826688(09:30:26) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335826690(09:30:26) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335826690(09:30:26) INFO: Invocation ID: 22d832a8-520e-4fbb-8454-8ca1332aede4 -_bk;t=1781335826690(09:30:26) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -_bk;t=1781335826690(09:30:26) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks -_bk;t=1781335826690(09:30:26) INFO: Options provided by the client: -_bk;t=1781335826690 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /private/etc/bazel.bazelrc: -_bk;t=1781335826690 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses -_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc.deleted_packages: -_bk;t=1781335826690 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: -_bk;t=1781335826690 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335826690(09:30:26) INFO: Reading rc options for 'build' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: -_bk;t=1781335826690 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335826690(09:30:26) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335826720(09:30:26) INFO: Current date is 2026-06-13 -_bk;t=1781335826720(09:30:26) -_bk;t=1781335826721 _bk;t=1781335826721(09:30:26) Computing main repo mapping: -_bk;t=1781335826742 _bk;t=1781335826742(09:30:26) WARNING: /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/MODULE.bazel:1:7: The attribute 'compatibility_level' in module() is a no-op and will be removed in a future Bazel release. Please remove it from your MODULE.bazel file. -_bk;t=1781335826742(09:30:26) Computing main repo mapping: -_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826891(09:30:26) Computing main repo mapping: -_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826891(09:30:26) Computing main repo mapping: -_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826891(09:30:26) Computing main repo mapping: -_bk;t=1781335826891 _bk;t=1781335826891(09:30:26) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335826891(09:30:26) Computing main repo mapping: -_bk;t=1781335827548 _bk;t=1781335827548(09:30:27) Loading: -_bk;t=1781335827555 _bk;t=1781335827555(09:30:27) Loading: 1 packages loaded -_bk;t=1781335828043 _bk;t=1781335828043(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335828053 _bk;t=1781335828053(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335828053 -_bk;t=1781335828067 _bk;t=1781335828067 _bk;t=1781335828067(09:30:28) INFO: Found 0 targets... -_bk;t=1781335828067(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335828067 -_bk;t=1781335828082 _bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: Elapsed time: 2.892s, Critical Path: 0.01s -_bk;t=1781335828082(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335828082 -_bk;t=1781335828082 _bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: 1 process: 1 internal. -_bk;t=1781335828082(09:30:28) Analyzing: 0 targets (6 packages loaded, 6 targets configured) -_bk;t=1781335828082 -_bk;t=1781335828082 _bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: Build completed successfully, 1 total action -_bk;t=1781335828082(09:30:28) INFO: -_bk;t=1781335828082 _bk;t=1781335828082(09:30:28) INFO: -_bk;t=1781335828120 _bk;t=1781335828120(09:30:28) INFO: Build Event Protocol files produced successfully. -_bk;t=1781335828120curl -q --noproxy '*' -sSL https://github.com/bazelbuild/continuous-integration/releases/download/agent-0.2.7/bazelci-agent-0.2.7-aarch64-apple-darwin -o /tmp/tmp10egavvm/bazelci-agent -_bk;t=1781335828127 -_bk;t=1781335828127 -_bk;t=1781335828127--- :bazel: Computing flags for test step -_bk;t=1781335828127 -_bk;t=1781335828127 -_bk;t=1781335828196/tmp/tmp10egavvm/bazelci-agent artifact upload --debug --mode=buildkite --build_event_json_file=/tmp/tmp10egavvm/test_bep.json -_bk;t=1781335828232Adding to platform cache key: b'bazel' -_bk;t=1781335828232Adding to platform cache key: b'cache-poisoning-20250808' -_bk;t=1781335828232Adding to platform cache key: b'macos_arm64' -_bk;t=1781335828232Adding to platform cache key: b'15.7.2\n' -_bk;t=1781335828232Adding to platform cache key: b'/Applications/Xcode26.0.app/Contents/Developer\n' -_bk;t=1781335828232Adding to platform cache key: b'Xcode 26.0\nBuild version 17A324\n' -_bk;t=1781335828232 -_bk;t=1781335828232 -_bk;t=1781335828232+++ :bazel: Test (9.1.1) -_bk;t=1781335828232 -_bk;t=1781335828232 -_bk;t=1781335828232bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true test --flaky_test_attempts=3 --build_tests_only --local_test_jobs=3 --show_progress_rate_limit=5 --curses=yes --color=yes --terminal_columns=143 --show_timestamps --verbose_failures --jobs=6 --announce_rc --experimental_repository_cache_hardlinks --disk_cache= --experimental_build_event_json_file_path_conversion=false --build_event_json_file=/tmp/tmp10egavvm/test_bep.json --jvmopt=-Djava.net.preferIPv6Addresses --remote_cache=https://storage.googleapis.com/bazel-untrusted-build-cache --google_default_credentials --remote_timeout=3600 --remote_max_connections=200 --remote_default_exec_properties=cache-silo-key=510a78257642ea06c9c48744309a610f57ed4a56da61ac67fbb66db9c58ab6cb --test_tag_filters=integration-test --jobs=2 --local_test_jobs=2 --test_env=HOME --test_env=BAZELISK_USER_AGENT --test_env=COURSIER_OPTS --test_env=JAVA_TOOL_OPTIONS --test_env=SSL_CERT_FILE --sandbox_writable_path=/Users/buildkite/Library/Caches/bazelisk -- //tests/integration:subset -_bk;t=1781335828828(09:30:28) WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335828828(09:30:28) WARNING: Option 'experimental_build_event_json_file_path_conversion' is deprecated: Use --build_event_json_file_path_conversion instead -_bk;t=1781335828828(09:30:28) INFO: Invocation ID: 1a06c66d-dc55-48e9-be53-31995be5baeb -_bk;t=1781335828828(09:30:28) INFO: Reading 'startup' options from /private/etc/bazel.bazelrc: --host_jvm_args=-Djava.net.preferIPv6Addresses=true -_bk;t=1781335828828(09:30:28) INFO: Reading 'startup' options from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --windows_enable_symlinks -_bk;t=1781335828828(09:30:28) INFO: Options provided by the client: -_bk;t=1781335828828 Inherited 'common' options: --isatty=1 --terminal_columns=160 -_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /private/etc/bazel.bazelrc: -_bk;t=1781335828828 Inherited 'common' options: --jvmopt=-Djava.net.preferIPv6Addresses -_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc.deleted_packages: -_bk;t=1781335828828 Inherited 'common' options: --deleted_packages=examples/build_file_generation --deleted_packages=examples/build_file_generation/random_number_generator --deleted_packages=examples/bzlmod --deleted_packages=examples/bzlmod/entry_points --deleted_packages=examples/bzlmod/entry_points/tests --deleted_packages=examples/bzlmod/libs/my_lib --deleted_packages=examples/bzlmod/other_module --deleted_packages=examples/bzlmod/other_module/other_module/pkg --deleted_packages=examples/bzlmod/patches --deleted_packages=examples/bzlmod/runfiles --deleted_packages=examples/bzlmod/tests --deleted_packages=examples/bzlmod/tests/other_module --deleted_packages=examples/bzlmod/whl_mods --deleted_packages=examples/multi_python_versions/libs/my_lib --deleted_packages=examples/multi_python_versions/requirements --deleted_packages=examples/multi_python_versions/tests --deleted_packages=examples/pip_parse --deleted_packages=examples/pip_parse_vendored --deleted_packages=gazelle --deleted_packages=gazelle/examples/bzlmod_build_file_generation --deleted_packages=gazelle/examples/bzlmod_build_file_generation/other_module/other_module/pkg --deleted_packages=gazelle/examples/bzlmod_build_file_generation/runfiles --deleted_packages=gazelle/manifest --deleted_packages=gazelle/manifest/generate --deleted_packages=gazelle/manifest/hasher --deleted_packages=gazelle/manifest/test --deleted_packages=gazelle/modules_mapping --deleted_packages=gazelle/python --deleted_packages=gazelle/pythonconfig --deleted_packages=gazelle/python/private --deleted_packages=tests/integration/bzlmod_lockfile --deleted_packages=tests/integration/compile_pip_requirements --deleted_packages=tests/integration/compile_pip_requirements_test_from_external_repo --deleted_packages=tests/integration/custom_commands --deleted_packages=tests/integration/local_toolchains --deleted_packages=tests/integration/pip_parse --deleted_packages=tests/integration/pip_parse/empty --deleted_packages=tests/integration/pip_parse_isolated --deleted_packages=tests/integration/py_cc_toolchain_registered --deleted_packages=tests/integration/runtime_manifests --deleted_packages=tests/integration/toolchain_target_settings --deleted_packages=tests/integration/uv_lock --deleted_packages=tests/modules/another_module --deleted_packages=tests/modules/other --deleted_packages=tests/modules/other/nspkg_delta --deleted_packages=tests/modules/other/nspkg_gamma --deleted_packages=tests/modules/other/nspkg_single --deleted_packages=tests/modules/other/simple_v1 --deleted_packages=tests/modules/other/simple_v2 --deleted_packages=tests/modules/other/with_external_data -_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: -_bk;t=1781335828828 Inherited 'common' options: --incompatible_disallow_struct_provider_syntax --incompatible_use_plus_in_repo_names --enable_platform_specific_config --incompatible_strict_action_env=false --enable_bzlmod --disk_cache=~/.cache/bazel/bazel-disk-cache --experimental_downloader_config=downloader_config.cfg --http_timeout_scaling=10.0 --experimental_repository_downloader_retries=10 --incompatible_python_disallow_native_rules --incompatible_no_implicit_file_export -_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: -_bk;t=1781335828828 Inherited 'build' options: --incompatible_default_to_explicit_init_py --//python/config_settings:incompatible_default_to_explicit_init_py=True --enable_runfiles --lockfile_mode=update -_bk;t=1781335828828(09:30:28) INFO: Reading rc options for 'test' from /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: -_bk;t=1781335828828 'test' options: --test_output=errors -_bk;t=1781335828828(09:30:28) INFO: Found applicable config definition build:macos in file /Users/buildkite/builds/bk-macos-arm64-cv10/bazel/rules-python-python/.bazelrc: --copt=-Wno-deprecated-declarations --copt=-Wno-stringop-overread --copt=-Wno-sign-compare --host_copt=-Wno-deprecated-declarations --host_copt=-Wno-stringop-overread --host_copt=-Wno-sign-compare -_bk;t=1781335828856(09:30:28) INFO: Current date is 2026-06-13 -_bk;t=1781335828856(09:30:28) -_bk;t=1781335828856 _bk;t=1781335828856(09:30:28) Computing main repo mapping: -_bk;t=1781335828905 _bk;t=1781335828905(09:30:28) WARNING: For repository 'bazel_features', the root module requires module version bazel_features@1.21.0, but got bazel_features@1.42.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335828905(09:30:28) Computing main repo mapping: -_bk;t=1781335828906 _bk;t=1781335828906(09:30:28) WARNING: For repository 'platforms', the root module requires module version platforms@0.0.11, but got platforms@1.0.0 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335828906(09:30:28) Computing main repo mapping: -_bk;t=1781335828906 _bk;t=1781335828906(09:30:28) WARNING: For repository 'com_google_protobuf', the root module requires module version protobuf@29.0-rc2, but got protobuf@33.4 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335828906(09:30:28) Computing main repo mapping: -_bk;t=1781335828906 _bk;t=1781335828906(09:30:28) WARNING: For repository 'rules_shell', the root module requires module version rules_shell@0.3.0, but got rules_shell@0.6.1 in the resolved dependency graph. Please update the version in your MODULE.bazel or set --check_direct_dependencies=off -_bk;t=1781335828906(09:30:28) Computing main repo mapping: -_bk;t=1781335828965 _bk;t=1781335828965(09:30:28) Loading: -_bk;t=1781335828967 _bk;t=1781335828967(09:30:28) Loading: 0 packages loaded -_bk;t=1781335828995 _bk;t=1781335828995(09:30:28) Analyzing: 3 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335828997 _bk;t=1781335828997(09:30:28) Analyzing: 3 targets (0 packages loaded, 0 targets configured) -_bk;t=1781335828997 -_bk;t=1781335834001 _bk;t=1781335834001 _bk;t=1781335834001(09:30:33) Analyzing: 3 targets (114 packages loaded, 12721 targets configured) -_bk;t=1781335834001[13 / 13] no actions running -_bk;t=1781335834001 Fetching repository @@+python+python_3_11_15_aarch64-apple-darwin; starting -_bk;t=1781335834001 Fetching repository @@rules_cc++cc_configure_extension+local_config_cc; starting -_bk;t=1781335834001 Fetching module extension @@//python/extensions:pip.bzl%pip; Fetching package URLs from PyPI index -_bk;t=1781335834001 Fetching ...nal/+python+python_3_11_15_aarch64-apple-darwin; Extracting cpython-3.11.15_20260414-aarch64-apple-darwin-install_only.tar.gz -_bk;t=1781335834001 Fetching https://pypi.org/simple/macholib/ -_bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874 _bk;t=1781335840874(09:30:40) Analyzing: 3 targets (124 packages loaded, 15676 targets configured) -_bk;t=1781335840874 currently loading: @@rules_cc++cc_configure_extension+local_config_cc// -_bk;t=1781335840874[13 / 13] no actions running -_bk;t=1781335844187 _bk;t=1781335844187 _bk;t=1781335844187 _bk;t=1781335844187(09:30:44) INFO: Analyzed 3 targets (132 packages loaded, 15716 targets configured). -_bk;t=1781335844187(09:30:44) [13 / 13] no actions running -_bk;t=1781335853926 _bk;t=1781335853926(09:30:53) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 8s local, remote-cache -_bk;t=1781335858934 _bk;t=1781335858934(09:30:58) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 13s local, remote-cache -_bk;t=1781335863940 _bk;t=1781335863940(09:31:03) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 18s local, remote-cache -_bk;t=1781335867602 _bk;t=1781335867602(09:31:07) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log) -_bk;t=1781335867602(09:31:07) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 22s local, remote-cache -_bk;t=1781335868812buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=17813358688502026-06-13 09:31:08 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log" -_bk;t=17813358688502026-06-13 09:31:08 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration -_bk;t=17813358688502026-06-13 09:31:08 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358689642026-06-13 09:31:08 INFO  Uploading 019ebfe4-6b1a-4713-b0f8-e87b79f28b73 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log (4.5 KiB) -_bk;t=17813358695602026-06-13 09:31:09 INFO  Artifact uploads completed successfully -_bk;t=1781335873266 _bk;t=1781335873266(09:31:13) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 28s local, remote-cache -_bk;t=1781335873880 _bk;t=1781335873880(09:31:13) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log) -_bk;t=1781335873880(09:31:13) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 28s local, remote-cache -_bk;t=1781335874875buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=17813358749082026-06-13 09:31:14 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log" -_bk;t=17813358749082026-06-13 09:31:14 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration -_bk;t=17813358749082026-06-13 09:31:14 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358750152026-06-13 09:31:15 INFO  Uploading 019ebfe4-82b8-4cff-8645-48c520943d13 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log (4.4 KiB) -_bk;t=17813358755802026-06-13 09:31:15 INFO  Artifact uploads completed successfully -_bk;t=1781335878972 _bk;t=1781335878972(09:31:18) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 33s local, remote-cache -_bk;t=1781335881977 _bk;t=1781335881977(09:31:21) FAIL: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Exit 1) (see /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log) -_bk;t=1781335881977(09:31:21) [29 / 30] Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 36s local, remote-cache -_bk;t=1781335881986 _bk;t=1781335881986 -_bk;t=1781335881986FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335881986 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335881986 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335881986 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335881986(09:31:21) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335881986 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 36s local, remote-cache -_bk;t=1781335881994 _bk;t=1781335881994 _bk;t=1781335881994(09:31:21) INFO: From Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335881994==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=17813358819942026/06/13 07:30:45 Downloading https://releases.bazel.build/9.1.0/release/bazel-9.1.0-darwin-arm64... -_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335881994Extracting Bazel installation... -_bk;t=1781335881994Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335881994WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335881994bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335881994bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335881994bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335881994character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335881994command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/command.log -_bk;t=1781335881994committed-heap-size: 75MB -_bk;t=1781335881994execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main -_bk;t=1781335881994gc-count: 16 -_bk;t=1781335881994gc-time: 36ms -_bk;t=1781335881994install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 -_bk;t=1781335881994java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk -_bk;t=1781335881994java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335881994java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335881994local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335881994max-heap-size: 8589MB -_bk;t=1781335881994output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143 -_bk;t=1781335881994output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out -_bk;t=1781335881994package_path: %workspace% -_bk;t=1781335881994release: release 9.1.0 -_bk;t=1781335881994repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335881994server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-073049.24716 -_bk;t=1781335881994server_pid: 24716 -_bk;t=1781335881994used-heap-size: 24MB -_bk;t=1781335881994workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335881994Computing main repo mapping: -_bk;t=1781335881994Loading: -_bk;t=1781335881994Loading: 0 packages loaded -_bk;t=1781335881994Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335881994Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335881994 -_bk;t=1781335881994ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335881994INFO: Elapsed time: 0.696s, Critical Path: 0.02s -_bk;t=1781335881994INFO: 1 process: 1 internal. -_bk;t=1781335881994ERROR: Build did NOT complete successfully -_bk;t=1781335881994FAILED: -_bk;t=1781335881994ERROR: No test targets were found, yet testing was requested -_bk;t=1781335881994================================================================================ -_bk;t=1781335881994==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335881994Extracting Bazel installation... -_bk;t=1781335881994Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335881994WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335881994bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335881994bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335881994bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335881994character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335881994command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/command.log -_bk;t=1781335881994committed-heap-size: 75MB -_bk;t=1781335881994execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main -_bk;t=1781335881994gc-count: 16 -_bk;t=1781335881994gc-time: 39ms -_bk;t=1781335881994install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 -_bk;t=1781335881994java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk -_bk;t=1781335881994java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335881994java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335881994local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335881994max-heap-size: 8589MB -_bk;t=1781335881994output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143 -_bk;t=1781335881994output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out -_bk;t=1781335881994package_path: %workspace% -_bk;t=1781335881994release: release 9.1.0 -_bk;t=1781335881994repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335881994server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-073110.24845 -_bk;t=1781335881994server_pid: 24845 -_bk;t=1781335881994used-heap-size: 24MB -_bk;t=1781335881994workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335881994$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335881995Computing main repo mapping: -_bk;t=1781335881995Loading: -_bk;t=1781335881995Loading: 0 packages loaded -_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335881995 -_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335881995INFO: Elapsed time: 0.705s, Critical Path: 0.02s -_bk;t=1781335881995INFO: 1 process: 1 internal. -_bk;t=1781335881995ERROR: Build did NOT complete successfully -_bk;t=1781335881995FAILED: -_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested -_bk;t=1781335881995================================================================================ -_bk;t=1781335881995==================== Test output for //tests/integration:bzlmod_lockfile_test_bazel_9.1.0: -_bk;t=1781335881995$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335881995Extracting Bazel installation... -_bk;t=1781335881995Starting local Bazel server (9.1.0) and connecting to it... -_bk;t=1781335881995WARNING: ignoring JAVA_TOOL_OPTIONS in environment. -_bk;t=1781335881995bazel-bin: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335881995bazel-genfiles: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin -_bk;t=1781335881995bazel-testlogs: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs -_bk;t=1781335881995character-encoding: file.encoding = ISO-8859-1, defaultCharset = ISO-8859-1, sun.jnu.encoding = UTF-8 -_bk;t=1781335881995command_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/command.log -_bk;t=1781335881995committed-heap-size: 75MB -_bk;t=1781335881995execution_root: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main -_bk;t=1781335881995gc-count: 15 -_bk;t=1781335881995gc-time: 31ms -_bk;t=1781335881995install_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378 -_bk;t=1781335881995java-home: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/install/361ca53cfe6da546a2cd9cfd78b31378/embedded_tools/jdk -_bk;t=1781335881995java-runtime: OpenJDK Runtime Environment (build 25.0.2+10-LTS) by Azul Systems, Inc. -_bk;t=1781335881995java-vm: OpenJDK 64-Bit Server VM (build 25.0.2+10-LTS, mixed mode) by Azul Systems, Inc. -_bk;t=1781335881995local_resources: RAM=32768MB, CPU=6.0 -_bk;t=1781335881995max-heap-size: 8589MB -_bk;t=1781335881995output_base: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143 -_bk;t=1781335881995output_path: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/execroot/_main/bazel-out -_bk;t=1781335881995package_path: %workspace% -_bk;t=1781335881995release: release 9.1.0 -_bk;t=1781335881995repository_cache: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/cache/repos/v1 -_bk;t=1781335881995server_log: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/_tmp/02e058aa481f8dddbf733e4e8ed9135f/_bazel_buildkite/6371e3d3bcc16729d0d45123949e4143/java.log.db1eefbf-0c5a-4bb5-9118-4e3ef7bb85b0.buildkite.log.java.20260613-073116.24970 -_bk;t=1781335881995server_pid: 24970 -_bk;t=1781335881995used-heap-size: 24MB -_bk;t=1781335881995workspace: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/tests/integration/bzlmod_lockfile_test_bazel_9.1.0.runfiles/_main/tests/integration/bzlmod_lockfile -_bk;t=1781335881995$TEST_TMPDIR defined, some defaults will be overridden -_bk;t=1781335881995Computing main repo mapping: -_bk;t=1781335881995Loading: -_bk;t=1781335881995Loading: 0 packages loaded -_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 0 targets configured) -_bk;t=1781335881995Analyzing: target //:test_dummy (1 packages loaded, 1 target configured) -_bk;t=1781335881995 -_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335881995INFO: Elapsed time: 0.704s, Critical Path: 0.02s -_bk;t=1781335881995INFO: 1 process: 1 internal. -_bk;t=1781335881995ERROR: Build did NOT complete successfully -_bk;t=1781335881995FAILED: -_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested -_bk;t=1781335881995================================================================================ -_bk;t=1781335881995(09:31:21) [29 / 30] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335881995 Testing //tests/integration:bzlmod_lockfile_test_bazel_9.1.0; 36s local, remote-cache -_bk;t=1781335882969buildkite-agent artifact upload --content-type text/plain;charset=utf-8 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=17813358830062026-06-13 09:31:23 INFO  Found 1 files that match "tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log" -_bk;t=17813358830062026-06-13 09:31:23 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration -_bk;t=17813358830062026-06-13 09:31:23 INFO  Creating (0-1)/1 artifacts -_bk;t=17813358831222026-06-13 09:31:23 INFO  Uploading 019ebfe4-a25b-409d-b1f1-660ed06789f7 tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log (4.4 KiB) -_bk;t=17813358836952026-06-13 09:31:23 INFO  Artifact uploads completed successfully -_bk;t=1781335888991 _bk;t=1781335888991 _bk;t=1781335888991(09:31:28) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335888991 Testing //tests/integration:uv_lock_test_bazel_self; 6s local, remote-cache -_bk;t=1781335894002 _bk;t=1781335894002 _bk;t=1781335894002(09:31:34) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335894002 Testing //tests/integration:uv_lock_test_bazel_self; 11s local, remote-cache -_bk;t=1781335899004 _bk;t=1781335899004 _bk;t=1781335899004(09:31:39) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335899004 Testing //tests/integration:uv_lock_test_bazel_self; 16s local, remote-cache -_bk;t=1781335902431 _bk;t=1781335902431 _bk;t=1781335902431(09:31:42) WARNING: //tests/integration:uv_lock_test_bazel_self: Skipping uploading outputs because of concurrent modifications with --guard_against_concurrent_changes enabled: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/tests/integration/uv_lock/requirements.txt was modified during execution -_bk;t=1781335902431(09:31:42) [30 / 31] 1 / 3 tests, 1 failed; 1 action; last test: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 -_bk;t=1781335902431 Testing //tests/integration:uv_lock_test_bazel_self; 20s local, remote-cache -_bk;t=1781335903932 _bk;t=1781335903932 _bk;t=1781335903932(09:31:43) INFO: Found 3 test targets... -_bk;t=1781335903932(09:31:43) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self -_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: Elapsed time: 75.167s, Critical Path: 37.06s -_bk;t=1781335903968(09:31:43) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self -_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: 32 processes: 3 remote cache hit, 28 internal, 8 local. -_bk;t=1781335903968(09:31:43) [32 / 32] 3 / 3 tests, 1 failed; no actions running; last test: //tests/integration:local_toolchains_test_bazel_self -_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: Build completed, 1 test FAILED, 32 total actions -_bk;t=1781335903968(09:31:43) INFO: -_bk;t=1781335903968 _bk;t=1781335903968(09:31:43) INFO: -_bk;t=1781335903971 _bk;t=1781335903971//tests/integration:local_toolchains_test_bazel_self (cached) PASSED in 12.2s -_bk;t=1781335903972(09:31:43) INFO: -_bk;t=1781335903972 _bk;t=1781335903972//tests/integration:uv_lock_test_bazel_self PASSED in 20.1s -_bk;t=1781335903972(09:31:43) INFO: -_bk;t=1781335903972 _bk;t=1781335903972//tests/integration:bzlmod_lockfile_test_bazel_9.1.0 FAILED in 3 out of 3 in 21.6s -_bk;t=1781335903972 Stats over 3 runs: max = 21.6s, min = 5.4s, avg = 11.4s, dev = 7.2s -_bk;t=1781335903972(09:31:43) INFO: -_bk;t=1781335903972 _bk;t=1781335903972 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test.log -_bk;t=1781335903973(09:31:43) INFO: -_bk;t=1781335903973 _bk;t=1781335903973 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_1.log -_bk;t=1781335903973(09:31:43) INFO: -_bk;t=1781335903973 _bk;t=1781335903973 /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/tests/integration/bzlmod_lockfile_test_bazel_9.1.0/test_attempts/attempt_2.log -_bk;t=1781335903973(09:31:43) INFO: -_bk;t=1781335903973 _bk;t=1781335903973 -_bk;t=1781335903973(09:31:43) INFO: -_bk;t=1781335903973 _bk;t=1781335903973Executed 2 out of 3 tests: 2 tests pass and 1 fails locally. -_bk;t=1781335903973(09:31:43) INFO: -_bk;t=1781335903974 _bk;t=1781335903974There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. -_bk;t=1781335903974(09:31:43) INFO: -_bk;t=1781335904000 _bk;t=1781335904000(09:31:44) INFO: Build Event Protocol files produced successfully. -_bk;t=1781335904000bazel --host_jvm_args=-Djava.net.preferIPv6Addresses=true info output_base -_bk;t=1781335904604WARNING: Option 'experimental_downloader_config' is deprecated: Use --downloader_config instead -_bk;t=1781335904604INFO: Invocation ID: 9350ba90-5e28-44a8-8643-8bf392ffa60c -_bk;t=1781335904628 -_bk;t=1781335904628 -_bk;t=1781335904628--- :gcloud: Uploading log file: /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log -_bk;t=1781335904628 -_bk;t=1781335904628 -_bk;t=1781335904628buildkite-agent artifact upload /Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log -_bk;t=17813359046582026-06-13 09:31:44 INFO  Found 1 files that match "/Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log" -_bk;t=17813359046592026-06-13 09:31:44 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration -_bk;t=17813359046592026-06-13 09:31:44 INFO  Creating (0-1)/1 artifacts -_bk;t=17813359047742026-06-13 09:31:44 INFO  Uploading 019ebfe4-f6fa-43a4-914e-b946db6f4e88 Users/buildkite/Library/Caches/bazel/_bazel_buildkite/7264be8a06a940ae1b7d440158e5984f/java.log (120 KiB) -_bk;t=1781335904879buildkite-agent artifact upload /tmp/tmp10egavvm/test_bep.json -_bk;t=17813359049422026-06-13 09:31:44 INFO  Found 1 files that match "/tmp/tmp10egavvm/test_bep.json" -_bk;t=17813359049422026-06-13 09:31:44 INFO  Uploading to Google Cloud Storage ("gs://bazel-untrusted-buildkite-artifacts/019ebfe3-63af-4914-8a69-2794cb5a8d96"), using your agent configuration -_bk;t=17813359049422026-06-13 09:31:44 INFO  Creating (0-1)/1 artifacts -_bk;t=17813359050442026-06-13 09:31:45 INFO  Uploading 019ebfe4-f809-43ff-a0ac-efb1302b5c43 tmp/tmp10egavvm/test_bep.json (305 KiB) -_bk;t=17813359055122026-06-13 09:31:45 INFO  Artifact uploads completed successfully -_bk;t=17813359059012026-06-13 09:31:45 INFO  Artifact uploads completed successfully -_bk;t=1781335905908bazel test failed with exit code 3 -_bk;t=1781335905953^^^ +++ -_bk;t=1781335905953🚨 Error: The command exited with status 3 -_bk;t=1781335905953^^^ +++ -_bk;t=1781335905954user command error: exit status 3 diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md deleted file mode 100644 index b6c72b20ca..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64.md +++ /dev/null @@ -1,15 +0,0 @@ -# 🚨 CI Failure Analysis Report: Default: MacOS, Bazel 8.x on :darwin: macOS arm64 - -## 📁 CI Log Path -`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log` - -## 🔥 Extracted Failure Snippets -```text -_bk;t=1781335354023Traceback (most recent call last): -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__MacOS__Bazel_8_x_on__darwin__macOS_arm64_019ebfdb-e028-4d6f-970b-6f5657a65b8c.log`. -2. **Reproduce Locally**: Run `./replicate_ci "Default: MacOS, Bazel 8.x on :darwin: macOS arm64"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md deleted file mode 100644 index 9a7300a29c..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS.md +++ /dev/null @@ -1,19 +0,0 @@ -# 🚨 CI Failure Analysis Report: Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS - -## 📁 CI Log Path -`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log` - -## 🔥 Extracted Failure Snippets -```text -_bk;t=1781335881315FAILED: //tests/toolchains/transitions:test_minor_versions (Summary) -_bk;t=1781335884977FAILED: //tests/toolchains/transitions:test_full_version (Summary) -_bk;t=1781335885519FAILED: //tests/exec_toolchain_matching:test_exec_matches_target_python_version (Summary) -_bk;t=1781335895361(07:31:35) INFO: Elapsed time: 65.045s, Critical Path: 10.77s -_bk;t=1781335896500bazel test failed with exit code 3 -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_Default__Ubuntu__rolling_Bazel_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-639c-45e9-a409-b70bc82f1980.log`. -2. **Reproduce Locally**: Run `./replicate_ci "Default: Ubuntu, rolling Bazel on :ubuntu: Ubuntu 22.04 LTS"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md deleted file mode 100644 index e22c586f13..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1_.md +++ /dev/null @@ -1,33 +0,0 @@ -# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: Debian on :debian: Debian 11 Bullseye (OpenJDK 17, gcc 10.2.1) - -## 📁 CI Log Path -`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log` - -## 🔥 Extracted Failure Snippets -```text -_bk;t=1781335839968(07:30:39) INFO: Elapsed time: 8.078s, Critical Path: 0.53s -_bk;t=1781335859547FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335859549INFO: Elapsed time: 0.817s, Critical Path: 0.03s -_bk;t=1781335859549ERROR: Build did NOT complete successfully -_bk;t=1781335859549FAILED: -_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested -_bk;t=1781335859549ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335859549INFO: Elapsed time: 0.845s, Critical Path: 0.02s -_bk;t=1781335859549ERROR: Build did NOT complete successfully -_bk;t=1781335859549FAILED: -_bk;t=1781335859549ERROR: No test targets were found, yet testing was requested -_bk;t=1781335859550ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335859550INFO: Elapsed time: 0.862s, Critical Path: 0.03s -_bk;t=1781335859550ERROR: Build did NOT complete successfully -_bk;t=1781335859550FAILED: -_bk;t=1781335859550ERROR: No test targets were found, yet testing was requested -_bk;t=1781335944023(07:32:24) INFO: Elapsed time: 103.543s, Critical Path: 20.55s -_bk;t=1781335945162bazel test failed with exit code 3 -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Debian_on__debian__Debian_11_Bullseye__OpenJDK_17__gcc_10_2_1__019ebfe3-63af-485c-806c-39bfc8991bf8.log`. -2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: Debian on :debian: Debian 11 Bullseye (OpenJDK 17, gcc 10.2.1)"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md deleted file mode 100644 index a3b86dde09..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS.md +++ /dev/null @@ -1,33 +0,0 @@ -# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: Ubuntu on :ubuntu: Ubuntu 22.04 LTS - -## 📁 CI Log Path -`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log` - -## 🔥 Extracted Failure Snippets -```text -_bk;t=1781335835255(07:30:35) INFO: Elapsed time: 7.852s, Critical Path: 0.54s -_bk;t=1781335854466FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335854468ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335854469INFO: Elapsed time: 0.804s, Critical Path: 0.03s -_bk;t=1781335854469ERROR: Build did NOT complete successfully -_bk;t=1781335854469FAILED: -_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested -_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335854469INFO: Elapsed time: 0.872s, Critical Path: 0.03s -_bk;t=1781335854469ERROR: Build did NOT complete successfully -_bk;t=1781335854469FAILED: -_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested -_bk;t=1781335854469ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335854469INFO: Elapsed time: 0.882s, Critical Path: 0.02s -_bk;t=1781335854469ERROR: Build did NOT complete successfully -_bk;t=1781335854469FAILED: -_bk;t=1781335854469ERROR: No test targets were found, yet testing was requested -_bk;t=1781335934804(07:32:14) INFO: Elapsed time: 99.096s, Critical Path: 20.25s -_bk;t=1781335935695bazel test failed with exit code 3 -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Ubuntu_on__ubuntu__Ubuntu_22_04_LTS_019ebfe3-63ae-4037-a692-c008a270a756.log`. -2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: Ubuntu on :ubuntu: Ubuntu 22.04 LTS"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md deleted file mode 100644 index fc8da6c92f..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows.md +++ /dev/null @@ -1,33 +0,0 @@ -# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: Windows (subset) on :windows: Windows - -## 📁 CI Log Path -`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows_019ebfe3-63b0-4973-b6f3-2de99fee6dca.log` - -## 🔥 Extracted Failure Snippets -```text -_bk;t=1781335841820(07:30:41) INFO: Elapsed time: 1.875s, Critical Path: 0.03s -_bk;t=1781335879971FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335879971ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335879971INFO: Elapsed time: 1.167s, Critical Path: 0.03s -_bk;t=1781335879971ERROR: Build did NOT complete successfully -_bk;t=1781335879971FAILED: -_bk;t=1781335879971ERROR: No test targets were found, yet testing was requested -_bk;t=1781335879971ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335879971INFO: Elapsed time: 1.243s, Critical Path: 0.03s -_bk;t=1781335879971ERROR: Build did NOT complete successfully -_bk;t=1781335879971FAILED: -_bk;t=1781335879971ERROR: No test targets were found, yet testing was requested -_bk;t=1781335879972ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335879972INFO: Elapsed time: 1.270s, Critical Path: 0.03s -_bk;t=1781335879972ERROR: Build did NOT complete successfully -_bk;t=1781335879972FAILED: -_bk;t=1781335879972ERROR: No test targets were found, yet testing was requested -_bk;t=1781335879988(07:31:19) INFO: Elapsed time: 37.680s, Critical Path: 24.60s -_bk;t=1781335881170bazel test failed with exit code 3 -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__Windows__subset__on__windows__Windows_019ebfe3-63b0-4973-b6f3-2de99fee6dca.log`. -2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: Windows (subset) on :windows: Windows"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md b/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md deleted file mode 100644 index d58de2d41f..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/ci_logs/ci_plan_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64.md +++ /dev/null @@ -1,33 +0,0 @@ -# 🚨 CI Failure Analysis Report: tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64 - -## 📁 CI Log Path -`/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log` - -## 🔥 Extracted Failure Snippets -```text -_bk;t=1781335828082(09:30:28) INFO: Elapsed time: 2.892s, Critical Path: 0.01s -_bk;t=1781335881986FAILED: //tests/integration:bzlmod_lockfile_test_bazel_9.1.0 (Summary) -_bk;t=1781335881994ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335881994INFO: Elapsed time: 0.696s, Critical Path: 0.02s -_bk;t=1781335881994ERROR: Build did NOT complete successfully -_bk;t=1781335881994FAILED: -_bk;t=1781335881994ERROR: No test targets were found, yet testing was requested -_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335881995INFO: Elapsed time: 0.705s, Critical Path: 0.02s -_bk;t=1781335881995ERROR: Build did NOT complete successfully -_bk;t=1781335881995FAILED: -_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested -_bk;t=1781335881995ERROR: Analysis of target '//:test_dummy' failed; build aborted: MODULE.bazel.lock is no longer up-to-date because the implementation of the extension '@@rules_python+//python/uv:uv.bzl%uv' or one of its transitive .bzl files has changed. Please run `bazel mod deps --lockfile_mode=update` to update your lockfile. -_bk;t=1781335881995INFO: Elapsed time: 0.704s, Critical Path: 0.02s -_bk;t=1781335881995ERROR: Build did NOT complete successfully -_bk;t=1781335881995FAILED: -_bk;t=1781335881995ERROR: No test targets were found, yet testing was requested -_bk;t=1781335903968(09:31:43) INFO: Elapsed time: 75.167s, Critical Path: 37.06s -_bk;t=1781335905908bazel test failed with exit code 3 -``` - -## 🛠️ Suggested Plan to Fix -1. **Inspect Log**: Review the exact log snippets above or read the full log file at `/usr/local/google/home/rlevasseur/.gemini/jetski/worktrees/rules_python/register-builtin-runtimes-manifest/.agents/skills/monitor-ci-results/scripts/ci_logs/bk_tests_integration_bazel_in_bazel__macOS__subset__on__darwin__macOS_arm64_019ebfe3-63af-4914-8a69-2794cb5a8d96.log`. -2. **Reproduce Locally**: Run `./replicate_ci "tests/integration bazel-in-bazel: macOS (subset) on :darwin: macOS arm64"` or the matching `bazel build/test` command locally. -3. **Apply Fix**: Resolve the underlying Starlark or build setting issue in the relevant `BUILD.bazel` or Starlark files. -4. **Verify & Push**: Run local verification with `--config=fast-tests` and push the updated branch to trigger a clean remote pipeline. diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 6eb6a58b2e..626eb5a261 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -117,11 +117,15 @@ def main(): for job in jobs: jstate = job.get("state", "unknown") exit_status = job.get("exit_status") - is_failed = jstate in ["failed", "failing"] or ( - exit_status != 0 and exit_status is not None - ) - is_passed = jstate in ["passed", "success"] or ( - jstate == "finished" and exit_status == 0 + is_soft_failed = job.get("soft_failed") is True + is_failed = ( + jstate in ["failed", "failing"] + or (exit_status != 0 and exit_status is not None) + ) and not is_soft_failed + is_passed = ( + jstate in ["passed", "success"] + or (jstate == "finished" and exit_status == 0) + or is_soft_failed ) is_running = jstate in ["running", "scheduled"] @@ -147,10 +151,11 @@ def main(): jkey = f"bk_{jid}" exit_status = job.get("exit_status") + is_soft_failed = job.get("soft_failed") is True is_failed = ( jstate in ["failed", "failing"] or (exit_status != 0 and exit_status is not None) - ) and "rolling" not in jname.lower() + ) and not is_soft_failed if is_failed and jkey not in monitored: print( diff --git a/.agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json b/.agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json deleted file mode 100644 index f6963d42b6..0000000000 --- a/.agents/skills/monitor-ci-results/scripts/monitored_state_pr_3812.json +++ /dev/null @@ -1 +0,0 @@ -{"bk_019ebfdb-dffb-4f9a-b540-dce4625e2d98": 1781335606.0726287, "bk_019ebfdb-e00f-4bcc-bba1-9c5de8379c7e": 1781335606.6685977, "bk_019ebfdb-e010-4a46-b432-e206917cf421": 1781335607.1897428, "bk_019ebfdb-e028-4d6f-970b-6f5657a65b8c": 1781335607.649478, "bk_019ebfe2-2684-40c0-9841-fec97ed4d3f5": 1781335793.7448206, "bk_019ebfe3-63b0-4973-b6f3-2de99fee6dca": 1781335891.3656147, "bk_019ebfe3-639c-45e9-a409-b70bc82f1980": 1781335923.3640246, "bk_019ebfe3-63af-4914-8a69-2794cb5a8d96": 1781335923.56756, "bk_019ebfe3-63ae-4037-a692-c008a270a756": 1781335955.4221787, "bk_019ebfe3-63af-485c-806c-39bfc8991bf8": 1781335955.5952237} \ No newline at end of file From a7dcdae04fbcfc420814e5755b12b4b853b1424a Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:41:50 +0000 Subject: [PATCH 42/53] test(integration): Synchronize MODULE.bazel.lock in bzlmod_lockfile test Regenerates tests/integration/bzlmod_lockfile/MODULE.bazel.lock to reflect underlying Starlark implementation changes in rules_python extensions. Resolves integration test verification failures under lockfile_mode=error. --- tests/integration/bzlmod_lockfile/MODULE.bazel.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/bzlmod_lockfile/MODULE.bazel.lock b/tests/integration/bzlmod_lockfile/MODULE.bazel.lock index d21fec2d7d..2a0bc7d76b 100644 --- a/tests/integration/bzlmod_lockfile/MODULE.bazel.lock +++ b/tests/integration/bzlmod_lockfile/MODULE.bazel.lock @@ -250,7 +250,7 @@ }, "@@rules_python+//python/uv:uv.bzl%uv": { "general": { - "bzlTransitiveDigest": "Z5ZPR9z4PkJRXSyJ4KQEqM4kwiqWBCn8Ajzxy9YlS/g=", + "bzlTransitiveDigest": "46RcxJnhOapMeaxdcMm3RmVdNp1nPCewOOXoZyIbQ20=", "usagesDigest": "6yXGw7XDyXjOfqBL0SBu1YBEMMYPQzCE3jTzUCkxPgg=", "recordedInputs": [ "REPO_MAPPING:rules_python+,bazel_tools bazel_tools", From ca9730731ac4a90995bbdd9b89ec06ad9d6e9e49 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:47:48 +0000 Subject: [PATCH 43/53] feat(skills): Update failure alerts in monitor_remote_ci to instruct starting a subagent Refines the alert text dispatched by monitor_remote_ci to explicitly prompt the recipient to invoke a subagent for failure analysis, supporting fully agentic background delegation. --- .../skills/monitor-ci-results/scripts/monitor_remote_ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index 626eb5a261..f1d8611ea5 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -165,7 +165,7 @@ def main(): f"⚠️ Remote CI Buildkite Job '{jname}' completed with errors!\n\n" f"Build ID: {build_id} | Job ID: {jid}\n" f"Log URL: {job.get('log_url', link)}\n\n" - f"Please start a background task or run the analyze-ci-failure skill to analyze this failure!" + f"Please start a subagent to run the analyze-ci-failure skill and analyze this failure!" ) subprocess.run( [ @@ -185,7 +185,7 @@ def main(): msg = ( f"⚠️ Remote CI GitHub Check '{name}' completed with errors!\n\n" f"Link: {link}\n\n" - f"Please start a background task or run the analyze-ci-failure skill to analyze this failure!" + f"Please start a subagent to run the analyze-ci-failure skill and analyze this failure!" ) subprocess.run( [ From 7b28f13a67604690adc9dcd18be43dadc659e0e7 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 07:50:58 +0000 Subject: [PATCH 44/53] feat(skills): Enforce imperative tone in subagent failure analysis delegation prompts Adopts an exact imperative phrasing ("Start subagent: run analyze-ci-failure skill on this failure") in the failure alerts dispatched by monitor_remote_ci per direct code review instructions. --- .../skills/monitor-ci-results/scripts/monitor_remote_ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index f1d8611ea5..bb0af4147c 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -165,7 +165,7 @@ def main(): f"⚠️ Remote CI Buildkite Job '{jname}' completed with errors!\n\n" f"Build ID: {build_id} | Job ID: {jid}\n" f"Log URL: {job.get('log_url', link)}\n\n" - f"Please start a subagent to run the analyze-ci-failure skill and analyze this failure!" + f"Start subagent: run analyze-ci-failure skill on this failure" ) subprocess.run( [ @@ -185,7 +185,7 @@ def main(): msg = ( f"⚠️ Remote CI GitHub Check '{name}' completed with errors!\n\n" f"Link: {link}\n\n" - f"Please start a subagent to run the analyze-ci-failure skill and analyze this failure!" + f"Start subagent: run analyze-ci-failure skill on this failure" ) subprocess.run( [ From 9532d459bc36f641aeb1390458345fcae9ec018c Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 15:44:28 +0000 Subject: [PATCH 45/53] docs(agents): Prohibit Bazel copyright headers and remove from agent scripts Adds an absolute rule to AGENTS.md prohibiting the addition of Bazel copyright headers to new or existing files per user directives. Also purges existing Bazel copyright headers from our newly created analyze_ci_failure.py and monitor_remote_ci.py scripts. --- .agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py | 1 - .agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py | 1 - AGENTS.md | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py b/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py index ee766380bf..3b975acfb3 100644 --- a/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py +++ b/.agents/skills/analyze-ci-failure/scripts/analyze_ci_failure.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# Copyright 2026 The Bazel Authors. All rights reserved. import argparse import os diff --git a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py index bb0af4147c..fc1f8955d3 100755 --- a/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py +++ b/.agents/skills/monitor-ci-results/scripts/monitor_remote_ci.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# Copyright 2026 The Bazel Authors. All rights reserved. import argparse import json diff --git a/AGENTS.md b/AGENTS.md index 4e1e88aeac..e6e1733c1d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -15,6 +15,7 @@ Ask for user input and provide a justificaiton if trying to violate them. * NEVER run `bazel clean --expunge`. * Once a PR is created, do not amend or rebase. +* Do not add Bazel copyright to new or existing files. ## Style and conventions From 9ab07119af8f1697a4693e284884afd5632a34ea Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 18:12:08 +0000 Subject: [PATCH 46/53] Refactor runtimes manifest architecture and resolve architectural code reviews Refactors the runtimes manifest landscape by moving the catalog into python/private/ and establishing canonical automated synchronization tools (sort_manifest.py, sync_runtimes_manifest_workspace.py). Renames legacy manifest parsers to parse_runtime_manifest, privatizes internal tool logic, scrubs generic test mocks of hardcoded manifests, and reinforces the core diff and transition suites. --- .agents/skills/buildkite-get-results/SKILL.md | 1 - .pre-commit-config.yaml | 17 + WORKSPACE | 3 +- docs/BUILD.bazel | 2 +- downloader_config.cfg | 2 - gazelle/WORKSPACE | 6 - gazelle/downloader_config.cfg | 2 - python/BUILD.bazel | 1 - python/private/BUILD.bazel | 12 +- python/private/pbs_manifest.bzl | 8 +- python/private/print_toolchain_checksums.bzl | 4 +- python/private/python.bzl | 6 +- python/private/python_register_toolchains.bzl | 5 +- python/private/pythons_hub.bzl | 6 +- python/{ => private}/runtimes_manifest.txt | 1171 ++++++++-------- .../private/runtimes_manifest_workspace.bzl | 1173 +++++++++-------- python/private/tools/sort_manifest.py | 123 ++ .../tools/sync_runtimes_manifest_workspace.py | 80 ++ python/versions.bzl | 32 +- sphinxdocs/.bazelrc | 1 - sphinxdocs/downloader_config.cfg | 2 - tests/python/python_tests.bzl | 41 +- tests/python_bzlmod_ext/BUILD.bazel | 2 +- ...s.bzl => parse_runtime_manifest_tests.bzl} | 14 +- tests/python_bzlmod_ext/test_helpers.bzl | 12 +- tests/support/mocks/mocks.bzl | 30 +- tests/support/mocks/python_ext.bzl | 37 + tests/toolchains/BUILD.bazel | 16 + .../transitions/transitions_tests.bzl | 4 +- tools/private/sync_downloader_configs.py | 37 + 30 files changed, 1559 insertions(+), 1291 deletions(-) rename python/{ => private}/runtimes_manifest.txt (99%) create mode 100755 python/private/tools/sort_manifest.py create mode 100755 python/private/tools/sync_runtimes_manifest_workspace.py rename tests/python_bzlmod_ext/{parse_sha_manifest_tests.bzl => parse_runtime_manifest_tests.bzl} (94%) create mode 100755 tools/private/sync_downloader_configs.py diff --git a/.agents/skills/buildkite-get-results/SKILL.md b/.agents/skills/buildkite-get-results/SKILL.md index 51a5fd2086..801e51c02d 100644 --- a/.agents/skills/buildkite-get-results/SKILL.md +++ b/.agents/skills/buildkite-get-results/SKILL.md @@ -4,7 +4,6 @@ description: Gets buildkite build results --- Pass the PR number, Build URL, or Build ID to the `scripts/get_buildkite_results.py` script. -This script has been modernly updated to use the official Buildkite command line tool (`bk`). The `--jobs` flag can do glob-style filtering of jobs. diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cada605a26..e4d65c8bb6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -48,3 +48,20 @@ repos: entry: ./tools/update_deleted_packages.sh files: ^((examples|tests)/.*/(MODULE.bazel|WORKSPACE|WORKSPACE.bzlmod|BUILD.bazel)|.bazelrc)$ pass_filenames: false + - id: sort-runtimes-manifest + name: Sort runtimes manifest + language: system + entry: ./python/private/tools/sort_manifest.py + files: ^python/private/runtimes_manifest\.txt$ + - id: sync-runtimes-manifest + name: Sync runtimes manifest workspace + language: system + entry: ./python/private/tools/sync_runtimes_manifest_workspace.py + files: ^python/private/runtimes_manifest\.txt$ + pass_filenames: false + - id: sync-downloader-configs + name: Sync downloader configs + language: system + entry: ./tools/private/sync_downloader_configs.py + files: downloader_config\.cfg$ + pass_filenames: false diff --git a/WORKSPACE b/WORKSPACE index 8c4d4e08f4..077ddb5e68 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -68,12 +68,11 @@ load("//:internal_dev_setup.bzl", "rules_python_internal_setup") rules_python_internal_setup() +load("@pythons_hub//:versions.bzl", "PYTHON_VERSIONS") load("//python:repositories.bzl", "py_repositories", "python_register_multi_toolchains") py_repositories() -load("@pythons_hub//:versions.bzl", "PYTHON_VERSIONS") - python_register_multi_toolchains( name = "python", default_version = "3.11", diff --git a/docs/BUILD.bazel b/docs/BUILD.bazel index 2fd51e04ea..67f21b253b 100644 --- a/docs/BUILD.bazel +++ b/docs/BUILD.bazel @@ -170,8 +170,8 @@ sphinx_build_binary( labels.BOOTSTRAP_IMPL: "script", labels.VENVS_SITE_PACKAGES: "yes", labels.PY_FREETHREADED: "yes", + labels.PYTHON_VERSION: "3.14", }, - python_version = "3.14", target_compatible_with = _TARGET_COMPATIBLE_WITH, deps = [ "@dev_pip//myst_parser", diff --git a/downloader_config.cfg b/downloader_config.cfg index b2d0bb918b..3fa6264eda 100644 --- a/downloader_config.cfg +++ b/downloader_config.cfg @@ -19,5 +19,3 @@ rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 rewrite ^github\.com/bazelbuild/rules_java/(.*) mirror.bazel.build/github.com/bazelbuild/rules_java/$1 rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 - - diff --git a/gazelle/WORKSPACE b/gazelle/WORKSPACE index 3d96d5de82..ebb18e7a47 100644 --- a/gazelle/WORKSPACE +++ b/gazelle/WORKSPACE @@ -47,12 +47,6 @@ local_repository( path = "..", ) -load("@rules_python//python/private:internal_config_repo.bzl", "internal_config_repo") # buildifier: disable=bzl-visibility - -internal_config_repo( - name = "rules_python_internal", -) - load("@rules_python//python:repositories.bzl", "py_repositories") py_repositories() diff --git a/gazelle/downloader_config.cfg b/gazelle/downloader_config.cfg index b2d0bb918b..3fa6264eda 100644 --- a/gazelle/downloader_config.cfg +++ b/gazelle/downloader_config.cfg @@ -19,5 +19,3 @@ rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 rewrite ^github\.com/bazelbuild/rules_java/(.*) mirror.bazel.build/github.com/bazelbuild/rules_java/$1 rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 - - diff --git a/python/BUILD.bazel b/python/BUILD.bazel index c4dfcb09b4..e940e9e94b 100644 --- a/python/BUILD.bazel +++ b/python/BUILD.bazel @@ -255,7 +255,6 @@ filegroup( exports_files([ "defs.bzl", "python.bzl", # Deprecated, please use defs.bzl - "runtimes_manifest.txt", ]) # This target can be used to inspect the current Python major version. To use, diff --git a/python/private/BUILD.bazel b/python/private/BUILD.bazel index ab23dd8baa..1065713968 100644 --- a/python/private/BUILD.bazel +++ b/python/private/BUILD.bazel @@ -31,7 +31,11 @@ package( licenses(["notice"]) -exports_files(["runtime_env_toolchain_interpreter.sh"]) +exports_files([ + "runtime_env_toolchain_interpreter.sh", + "runtimes_manifest.txt", + "runtimes_manifest_workspace.bzl", +]) filegroup( name = "distribution", @@ -906,3 +910,9 @@ py_library( sentinel( name = "sentinel", ) + +py_binary( + name = "sync_runtimes_manifest_workspace", + srcs = ["tools/sync_runtimes_manifest_workspace.py"], + visibility = ["//:__subpackages__"], +) diff --git a/python/private/pbs_manifest.bzl b/python/private/pbs_manifest.bzl index 8f13f325cf..86434dc0ea 100644 --- a/python/private/pbs_manifest.bzl +++ b/python/private/pbs_manifest.bzl @@ -15,15 +15,15 @@ def parse_filename(filename): """ basename = filename.rpartition("/")[-1] if basename.endswith(".tar.zst"): - name = basename[:-8] # len(".tar.zst") == 8 + name = basename.removesuffix(".tar.zst") elif basename.endswith(".tar.gz"): - name = basename[:-7] # len(".tar.gz") == 7 + name = basename.removesuffix(".tar.gz") else: return None if not name.startswith("cpython-"): return None - name = name[8:] # len("cpython-") == 8 + name = name.removeprefix("cpython-") left, plus, tail = name.partition("+") if plus: @@ -112,7 +112,7 @@ def parse_filename(filename): "vendor": vendor, } -def parse_sha_manifest(content): +def parse_runtime_manifest(content): """Parses the SHA256SUMS file content into a list of structs. Args: diff --git a/python/private/print_toolchain_checksums.bzl b/python/private/print_toolchain_checksums.bzl index 8611e763a0..4611a6091d 100644 --- a/python/private/print_toolchain_checksums.bzl +++ b/python/private/print_toolchain_checksums.bzl @@ -1,7 +1,7 @@ """Print the toolchain versions. """ -load("//python:versions.bzl", "MANIFEST_ENTRIES", "get_release_info", "tool_versions_from_manifest_entries") +load("//python:versions.bzl", "TOOL_VERSIONS", "get_release_info") load("//python/private:text_util.bzl", "render") load("//python/private:version.bzl", "version") @@ -12,7 +12,7 @@ def print_toolchains_checksums(name): name: {type}`str`: the name of the runnable target. """ by_version = {} - tool_versions = tool_versions_from_manifest_entries(MANIFEST_ENTRIES) + tool_versions = TOOL_VERSIONS for python_version, metadata in tool_versions.items(): by_version[python_version] = _commands_for_version( diff --git a/python/private/python.bzl b/python/private/python.bzl index 57e0410c43..9c8884e9c2 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -18,7 +18,7 @@ load("@bazel_features//:features.bzl", "bazel_features") load("//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", "PLATFORMS") load(":auth.bzl", "AUTH_ATTRS") load(":full_version.bzl", "full_version") -load(":pbs_manifest.bzl", "parse_sha_manifest") +load(":pbs_manifest.bzl", "parse_runtime_manifest") load(":platform_info.bzl", "platform_info") load(":python_register_toolchains.bzl", "python_register_toolchains") load(":pythons_hub.bzl", "hub_repo") @@ -788,7 +788,7 @@ def _populate_from_pbs_manifest( entries = [] for content in manifest_contents: - entries.extend(parse_sha_manifest(content)) + entries.extend(parse_runtime_manifest(content)) # We don't model archive_flavor via flags yet, so have to pick one. # Preference is given to install_only because its smaller @@ -857,7 +857,7 @@ def _get_toolchain_config(*, mctx, modules, _fail = fail): available_versions = {} _populate_from_pbs_manifest( mctx = mctx, - add_runtime_manifest_files = [Label("//python:runtimes_manifest.txt")], + add_runtime_manifest_files = [Label("//python/private:runtimes_manifest.txt")], base_url = DEFAULT_RELEASE_BASE_URL, available_versions = available_versions, _fail = _fail, diff --git a/python/private/python_register_toolchains.bzl b/python/private/python_register_toolchains.bzl index 0513cbe218..3b92902c7e 100644 --- a/python/private/python_register_toolchains.bzl +++ b/python/private/python_register_toolchains.bzl @@ -18,11 +18,10 @@ load( "//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", - "MANIFEST_ENTRIES", "MINOR_MAPPING", "PLATFORMS", + "TOOL_VERSIONS", "get_release_info", - "tool_versions_from_manifest_entries", ) load(":coverage_deps.bzl", "coverage_dep") load(":full_version.bzl", "full_version") @@ -105,7 +104,7 @@ def python_register_toolchains( ) base_url = kwargs.pop("base_url", DEFAULT_RELEASE_BASE_URL) - tool_versions = tool_versions or tool_versions_from_manifest_entries(MANIFEST_ENTRIES) + tool_versions = tool_versions or TOOL_VERSIONS minor_mapping = minor_mapping or MINOR_MAPPING python_version = full_version(version = python_version, minor_mapping = minor_mapping) diff --git a/python/private/pythons_hub.bzl b/python/private/pythons_hub.bzl index e2e41b3b35..173c811da6 100644 --- a/python/private/pythons_hub.bzl +++ b/python/private/pythons_hub.bzl @@ -15,7 +15,7 @@ "Repo rule used by bzlmod extension to create a repo that has a map of Python interpreters and their labels" load("//python:versions.bzl", "PLATFORMS") -load(":pbs_manifest.bzl", "parse_sha_manifest") +load(":pbs_manifest.bzl", "parse_runtime_manifest") load(":text_util.bzl", "render") load(":toolchains_repo.bzl", "toolchain_suite_content") @@ -121,8 +121,8 @@ def _hub_repo_impl(rctx): python_versions = rctx.attr.python_versions if not python_versions and not rctx.attr.toolchain_python_versions: - content = rctx.read(rctx.path(Label("//python:runtimes_manifest.txt"))) - entries = parse_sha_manifest(content) + content = rctx.read(rctx.path(Label("//python/private:runtimes_manifest.txt"))) + entries = parse_runtime_manifest(content) python_versions_str = render.list(sorted({getattr(e, "python_version", ""): None for e in entries if getattr(e, "python_version", "")})) else: diff --git a/python/runtimes_manifest.txt b/python/private/runtimes_manifest.txt similarity index 99% rename from python/runtimes_manifest.txt rename to python/private/runtimes_manifest.txt index 5b5dc35a48..df02a3049c 100755 --- a/python/runtimes_manifest.txt +++ b/python/private/runtimes_manifest.txt @@ -1,618 +1,621 @@ -# Standalone runtimes manifest catalog -002c07103bfbe1b889f41eb1b9fade81651a21aed35a3512e2a916c5d7903cfe 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz -018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz -01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz -024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -0458cb9885c30df690cdf304a16ec335cbc7344792ef0e8a904614b24a61316d 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz -06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -088754e90ff22962a4ab6f7cb6bdabe5d9e7618266595df2cf7b211766e15132 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz -09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz -09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz -0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz -0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -112cf42bdf4d04f69ff4f9bf18c8ce45f494bac1645310bfdeff6f2ffb30dd9a 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz -11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +# Manifest of runtimes to make available +# Originally generated circa 2026-06 from the runtimes in TOOL_VERSIONS from the original python/versions.bzl +# To sort this file, execute: ./python/private/tools/sort_manifest.py python/private/runtimes_manifest.txt + 1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz -14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz -1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz -16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz -178d20e568c25abcca9b1dbedf77e904cc3f10a79d22e31f87ddabd2d28f87dc 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz -18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz -1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz -1a4984207974563c6aea7dc934579d058dbac7436642081113e86011114b9fdf 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1a8a4a97f33740a1cb9fa480321818cdc610c79c9137e511e76dc53635615494 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1c366767d203b722efbd5b3796d16a08436e8a328afd31e551289efba9bf56d1 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz -1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz -1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz -1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz -1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz +a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz +2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz +f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz +bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz +efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz +81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz +7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz +91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz +55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz +d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz +33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz +525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz +f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz +6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz 2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz +59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz 20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz -20d3bcd7f175e09fa08f4cb3039e5f90fe7e4ce2476534e83f5aa21eb0d7cee9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -21f297bc1e0503fa077364417e2213c60951d94fd65d837ae6d9d9201ae27483 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz -236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz +9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz 24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -2662b1c3f6d5ed4d02d877c07f9384acc0d18b9046d54cd2853dad3ca172784f 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz -278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz -27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz -27edbaad8f0c1a8814647d24df3f87eb13c89bbc2cb90e2fc23d8fa48dd64b15 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz -290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz -29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz -2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz -2d06d97e230b7f74de0fe4f661918a0ee827b08127b9372e0890e167de52a8c6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz +fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz +c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz 2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz -303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz -317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz -318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -32955ad52ec7931e76f4509134a2ba5a6ba6ea0cd55e05217c1ccca3967c4a5c 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz -33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -3788781d0f9704f91ab5f7ad2a040d26b0f9b6aba0a2535db21755aebb69e620 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz -37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz -389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz -389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz -3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz -3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz -3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -3dcee23c21e4a3518947e988e115c1d824f07540f4326d93d4ea2028918e0193 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz -3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz +878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz +bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz +14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz +fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz +4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz +916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz 3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4373553133eb4712bc10f720da29e091a23153f587fdb2c38f1fb105e70db53a 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz -43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz -46ac7e9476b938ef19f71029a77d28ed1e201335dd0aa0237fcfed2e5ce0ee61 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz 4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz -477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz -47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz -481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz -48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz -4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz +facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz +b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz 49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz -4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz -4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz -4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz -53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz -5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -54187be504ea5be2f8ed455e9377112bb04f34c9259eae263779e56b403e3e3f 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz -5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -5791a69a73b76b908f5bdf96da1928de8db696ab198f4ced04b77b22fe712ce0 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz -57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz -586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz -599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz -5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz -5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -5ccaecdb899431f393209647182def14b36d7398bd59be4fa73dd79b48b3f290 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz -5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz +236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz 60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -6070796c894ef0a25b5a944c8c0327e155df534302e1612a5ddd57d177ddadf7 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz -60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz -63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz -688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz -6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6aff211689e30889cfe90b0b2a76b6f5a7b9e6e0bb28d6a66fd5ba35d36dc78a 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz -6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz -6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -6d84fb153ccb5cb650652aadc490d99881a8d9b68cf273d44cb553e8cd087734 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz -6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz -6e69670347e3a6ac1d0cd89b9506d825bd2f2690cc51ead5dec61aec6857d08d 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz -6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz -73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz -74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz +fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz -767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz -76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz -76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz -77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz -780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz -7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz -7a1d36a1567cd747411c9c2bc7e2b5c1ac277ea7c734f74b158b94101fd5ea43 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz -7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz -7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz -803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz -81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz -81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz -8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz +389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz 844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz -84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz +b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz +e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz +1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz +ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz +c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz 872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz -874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz -88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz -8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz -8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz -8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz -8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz -8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz -8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz +f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz +39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz +f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz +74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz +eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz -913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz -91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz -929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz +803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz 92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz +647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz +bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz -95ddfe7dd52185f7e5d55524eafb48e54d1eab0b0cf013966f144a411f3ddd0f 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -9794866e9a464f349055d791ea8f14dfa7f339ecac5aa9b1084bb2ce388fc598 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz -981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -99dd7e425b3dac23e03f37787d77ee0af531e96b1c748275185342bc6642eb6b 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz -9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -9d7e5ba8020fd942a89a57179d9015eb0237c2d95cdbf8378639723663f11706 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz -9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz -a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz -a183ec7a10c38ab8c3f19968614f1e69ec697199e94525583662dfbc22b70d9a 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz -a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz -a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -a4bfd77675740a0362c137b094f3cd9995775e8e6c0a7874a095dd055fd1ea99 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz -a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz -a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz -a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -a6797ad05c7d7f74a2cea28bf012f9199f4d6c1ed6d09f7adfeb9b3c538c6258 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz +f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz +59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz +bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz -a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz -a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz +9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz +15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz +ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz +e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz +ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz +b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz +3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz +76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz +c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz +00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz +d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz +b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz +b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz +ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz +7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz +9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz +864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz +a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz -abe26a6cab523a5d00d75f1353cbad9c5dc04262dcb0dc4a2b47d02384e2a7d7 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz -ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz +a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz +a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz +ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz +00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz +552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz -b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz +f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz +cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz +5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -b3c8210674140a4c5beefa2d4afd752979222638a0fb68de672c60300b4a6642 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz +743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz +318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz -b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -b5e025e340d0faa1772ef234e320401b0aa5cf6c9d16ed63a8c44be7c531bc58 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz -b72908bce86036a0a1ba98ca9917ea0b99dc1e6c5d715d3d463c4f330880c09b 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz +54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz +34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz +4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz +cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz +6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz +ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz +8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz +6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz -bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz -bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz -bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz -bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -c1a845a79da56265dc49628bc3b9e20d34f04674fd2d637ee40cbe259d2b1b95 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz +43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz +9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +e7cf7bc717082bb38f5ca75988ecd8e5dbc1b0535192129371e30235d29d67b5 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +54187be504ea5be2f8ed455e9377112bb04f34c9259eae263779e56b403e3e3f 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +9794866e9a464f349055d791ea8f14dfa7f339ecac5aa9b1084bb2ce388fc598 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +1a8a4a97f33740a1cb9fa480321818cdc610c79c9137e511e76dc53635615494 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +178d20e568c25abcca9b1dbedf77e904cc3f10a79d22e31f87ddabd2d28f87dc 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +d23c93ea7502420c71e4acf02999c72ab80797d51843b1b6a315ca7bac3cb780 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +6aff211689e30889cfe90b0b2a76b6f5a7b9e6e0bb28d6a66fd5ba35d36dc78a 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +088754e90ff22962a4ab6f7cb6bdabe5d9e7618266595df2cf7b211766e15132 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +6070796c894ef0a25b5a944c8c0327e155df534302e1612a5ddd57d177ddadf7 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +21f297bc1e0503fa077364417e2213c60951d94fd65d837ae6d9d9201ae27483 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz +d0e355df7362d12542108f78b3f8085b21e6824420769117c262ac86569bb2a7 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +112cf42bdf4d04f69ff4f9bf18c8ce45f494bac1645310bfdeff6f2ffb30dd9a 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +9d7e5ba8020fd942a89a57179d9015eb0237c2d95cdbf8378639723663f11706 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +32955ad52ec7931e76f4509134a2ba5a6ba6ea0cd55e05217c1ccca3967c4a5c 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +7a1d36a1567cd747411c9c2bc7e2b5c1ac277ea7c734f74b158b94101fd5ea43 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +3788781d0f9704f91ab5f7ad2a040d26b0f9b6aba0a2535db21755aebb69e620 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz +99dd7e425b3dac23e03f37787d77ee0af531e96b1c748275185342bc6642eb6b 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +20d3bcd7f175e09fa08f4cb3039e5f90fe7e4ce2476534e83f5aa21eb0d7cee9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz +64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz +8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz +f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz -c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz -c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz -c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz -c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -c6c1aae3809ef585271f6f1bb3643a2c6e0c82b811b93284c6218b31f0b931d7 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz -cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz -ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz -cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz -ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz -cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz -cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz -cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz -d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -d0e355df7362d12542108f78b3f8085b21e6824420769117c262ac86569bb2a7 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz -d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz -d23c93ea7502420c71e4acf02999c72ab80797d51843b1b6a315ca7bac3cb780 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz -d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz -d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz -d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz -dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz -dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz -db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz -dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +2662b1c3f6d5ed4d02d877c07f9384acc0d18b9046d54cd2853dad3ca172784f 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +c6c1aae3809ef585271f6f1bb3643a2c6e0c82b811b93284c6218b31f0b931d7 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +46ac7e9476b938ef19f71029a77d28ed1e201335dd0aa0237fcfed2e5ce0ee61 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +abe26a6cab523a5d00d75f1353cbad9c5dc04262dcb0dc4a2b47d02384e2a7d7 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +eea71fc3625fcc2408171b17fb97e0c6286ed60ed225ca7fd6e2fc5d9cc21dce 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz dd8b6161c4af3c2f5f29b3535decdcf146ce90d7a062687c9e5229b4151198b0 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz -e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz -e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz -e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +27edbaad8f0c1a8814647d24df3f87eb13c89bbc2cb90e2fc23d8fa48dd64b15 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +002c07103bfbe1b889f41eb1b9fade81651a21aed35a3512e2a916c5d7903cfe 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +a183ec7a10c38ab8c3f19968614f1e69ec697199e94525583662dfbc22b70d9a 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e7cf7bc717082bb38f5ca75988ecd8e5dbc1b0535192129371e30235d29d67b5 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz -e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +a4bfd77675740a0362c137b094f3cd9995775e8e6c0a7874a095dd055fd1ea99 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +0458cb9885c30df690cdf304a16ec335cbc7344792ef0e8a904614b24a61316d 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +6d84fb153ccb5cb650652aadc490d99881a8d9b68cf273d44cb553e8cd087734 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +b5e025e340d0faa1772ef234e320401b0aa5cf6c9d16ed63a8c44be7c531bc58 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +4373553133eb4712bc10f720da29e091a23153f587fdb2c38f1fb105e70db53a 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz -ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz -eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz -ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz -eea71fc3625fcc2408171b17fb97e0c6286ed60ed225ca7fd6e2fc5d9cc21dce 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz -efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz -f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz -f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a6797ad05c7d7f74a2cea28bf012f9199f4d6c1ed6d09f7adfeb9b3c538c6258 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +1c366767d203b722efbd5b3796d16a08436e8a328afd31e551289efba9bf56d1 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +5ccaecdb899431f393209647182def14b36d7398bd59be4fa73dd79b48b3f290 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +c1a845a79da56265dc49628bc3b9e20d34f04674fd2d637ee40cbe259d2b1b95 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +5791a69a73b76b908f5bdf96da1928de8db696ab198f4ced04b77b22fe712ce0 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +95ddfe7dd52185f7e5d55524eafb48e54d1eab0b0cf013966f144a411f3ddd0f 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +b72908bce86036a0a1ba98ca9917ea0b99dc1e6c5d715d3d463c4f330880c09b 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +b3c8210674140a4c5beefa2d4afd752979222638a0fb68de672c60300b4a6642 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +1a4984207974563c6aea7dc934579d058dbac7436642081113e86011114b9fdf 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz f525a6244d73450e0c0a7ba125b5934894ab25ee171f7099c239d4eb7ce2f5f2 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz -f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz -f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz -f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz -f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz -f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz -facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz -fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz -fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz -fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +3dcee23c21e4a3518947e988e115c1d824f07540f4326d93d4ea2028918e0193 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +6e69670347e3a6ac1d0cd89b9506d825bd2f2690cc51ead5dec61aec6857d08d 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +2d06d97e230b7f74de0fe4f661918a0ee827b08127b9372e0890e167de52a8c6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz +9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz diff --git a/python/private/runtimes_manifest_workspace.bzl b/python/private/runtimes_manifest_workspace.bzl index 1b3e55eb66..c2da00ac46 100644 --- a/python/private/runtimes_manifest_workspace.bzl +++ b/python/private/runtimes_manifest_workspace.bzl @@ -3,624 +3,631 @@ This is the workspace equivalent of runtimes_manifest.txt. It's a bzl file to simplify loading of the data under workspace mode, which doesn't support parsing a runtimes_manifest.txt file. + +NOTE: This file is automatically generated by sync_runtimes_manifest_workspace.py. +Do not edit directly! """ + MANIFEST_TEXT = """ -# Standalone runtimes manifest catalog -002c07103bfbe1b889f41eb1b9fade81651a21aed35a3512e2a916c5d7903cfe 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz -018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz -01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz -024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -0458cb9885c30df690cdf304a16ec335cbc7344792ef0e8a904614b24a61316d 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz -06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -088754e90ff22962a4ab6f7cb6bdabe5d9e7618266595df2cf7b211766e15132 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz -09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz -09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz -0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz -0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -112cf42bdf4d04f69ff4f9bf18c8ce45f494bac1645310bfdeff6f2ffb30dd9a 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz -11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +# Manifest of runtimes to make available +# Originally generated circa 2026-06 from the runtimes in TOOL_VERSIONS from the original python/versions.bzl +# To sort this file, execute: ./python/private/tools/sort_manifest.py python/private/runtimes_manifest.txt + 1409acd9a506e2d1d3b65c1488db4e40d8f19d09a7df099667c87a506f71c0ef 20220227/cpython-3.10.2+20220227-aarch64-apple-darwin-install_only.tar.gz -14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz -1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz -1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz -16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz -178d20e568c25abcca9b1dbedf77e904cc3f10a79d22e31f87ddabd2d28f87dc 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz -18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz -1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz -1a4984207974563c6aea7dc934579d058dbac7436642081113e86011114b9fdf 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1a8a4a97f33740a1cb9fa480321818cdc610c79c9137e511e76dc53635615494 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -1c366767d203b722efbd5b3796d16a08436e8a328afd31e551289efba9bf56d1 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz -1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz -1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz -1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz -1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz +8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz +a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz +2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz +d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz +f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz +bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz +efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz +81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz +7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz +91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz +55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz +d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz +33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz +525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz +f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz +6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz +018d05a779b2de7a476f3b3ff2d10f503d69d14efcedd0774e6dab8c22ef84ff 20230116/cpython-3.10.9+20230116-aarch64-apple-darwin-install_only.tar.gz 2003750f40cd09d4bf7a850342613992f8d9454f03b3c067989911fb37e7a4d1 20230116/cpython-3.10.9+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +0e685f98dce0e5bc8da93c7081f4e6c10219792e223e4b5886730fd73a7ba4c6 20230116/cpython-3.10.9+20230116-x86_64-apple-darwin-install_only.tar.gz +59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz 20a4203d069dc9b710f70b09e7da2ce6f473d6b1110f9535fb6f4c469ed54733 20230116/cpython-3.11.1+20230116-x86_64-apple-darwin-install_only.tar.gz -20d3bcd7f175e09fa08f4cb3039e5f90fe7e4ce2476534e83f5aa21eb0d7cee9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -21f297bc1e0503fa077364417e2213c60951d94fd65d837ae6d9d9201ae27483 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz -236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz +02a551fefab3750effd0e156c25446547c238688a32fabde2995c941c03a6423 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz +9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz +c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +09e412506a8d63edbb6901742b54da9aa7faf120b8dbdce56c57b303fc892c86 20230507/cpython-3.11.3+20230507-aarch64-apple-darwin-install_only.tar.gz +8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz +767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz +f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz 24741066da6f35a7ff67bee65ce82eae870d84e1181843e64a7076d1571e95af 20230507/cpython-3.11.3+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -2662b1c3f6d5ed4d02d877c07f9384acc0d18b9046d54cd2853dad3ca172784f 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz -278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz -27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz -27edbaad8f0c1a8814647d24df3f87eb13c89bbc2cb90e2fc23d8fa48dd64b15 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz -290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz -29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz -2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -2c99983d1e83e4b6e7411ed9334019f193fba626344a50c36fba6c25d4de78a2 20220502/cpython-3.10.4+20220502-aarch64-apple-darwin-install_only.tar.gz -2d06d97e230b7f74de0fe4f661918a0ee827b08127b9372e0890e167de52a8c6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz +bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz +fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz +bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz +c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz 2e84fc53f4e90e11963281c5c871f593abcb24fc796a50337fa516be99af02fb 20230726/cpython-3.11.4+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz -303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz -317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz -318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -32955ad52ec7931e76f4509134a2ba5a6ba6ea0cd55e05217c1ccca3967c4a5c 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -33170bef18c811906b738be530f934640491b065bf16c4d276c6515321918132 20221106/cpython-3.10.8+20221106-aarch64-unknown-linux-gnu-install_only.tar.gz -33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -3788781d0f9704f91ab5f7ad2a040d26b0f9b6aba0a2535db21755aebb69e620 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz -37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz -389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz -389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz -3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz -3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz -3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz -3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -3dcee23c21e4a3518947e988e115c1d824f07540f4326d93d4ea2028918e0193 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz -3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz +47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz +878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz +dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz +bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz +14121b53e9c8c6d0741f911ae00102a35adbcf5c3cdf732687ef7617b7d7304d 20230826/cpython-3.11.5+20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz +fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz +4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +00f002263efc8aea896bcfaaf906b1f4dab3e5cd3db53e2b69ab9a10ba220b97 20230826/cpython-3.11.5+20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz +916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz 3e26a672df17708c4dc928475a5974c3fb3a34a9b45c65fb4bd1e50504cc84ec 20231002/cpython-3.11.6+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4373553133eb4712bc10f720da29e091a23153f587fdb2c38f1fb105e70db53a 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz -43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz -46ac7e9476b938ef19f71029a77d28ed1e201335dd0aa0237fcfed2e5ce0ee61 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +178cb1716c2abc25cb56ae915096c1a083e60abeba57af001996e8bc6ce1a371 20231002/cpython-3.11.6+20231002-x86_64-apple-darwin-install_only.tar.gz +3933545e6d41462dd6a47e44133ea40995bc6efeed8c2e4cbdf1a699303e95ea 20231002/cpython-3.11.6+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz 4734a2be2becb813830112c780c9879ac3aff111a0b0cd590e65ec7465774d02 20231002/cpython-3.12.0+20231002-aarch64-apple-darwin-install_only.tar.gz -477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -47e1557d93a42585972772e82661047ca5f608293158acb2778dccf120eabb00 20230726/cpython-3.11.4+20230726-x86_64-apple-darwin-install_only.tar.gz -47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz -481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz -48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz -4918cdf1cab742a90f85318f88b8122aeaa2d04705803c7b6e78e81a3dd40f80 20230116/cpython-3.11.1+20230116-aarch64-apple-darwin-install_only.tar.gz +bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz +b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz +5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz +5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz +facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz +b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz +b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz 49520e3ff494708020f306e30b0964f079170be83e956be4504f850557378a22 20240107/cpython-3.11.7+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -4a4efa7378c72f1dd8ebcce1afb99b24c01b07023aa6b8fea50eaedb50bf2bfc 20230826/cpython-3.11.5+20230826-x86_64-apple-darwin-install_only.tar.gz +a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz +67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 4a51ce60007a6facf64e5495f4cf322e311ba9f39a8cd3f3e4c026eae488e140 20240107/cpython-3.11.7+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz -4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz -4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz -4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -525b79c7ce5de90ab66bd07b0ac1008bafa147ddc8a41bef15ffb7c9c1e9e7c5 20221106/cpython-3.10.8+20221106-x86_64-apple-darwin-install_only.tar.gz -53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz -540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz -5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -54187be504ea5be2f8ed455e9377112bb04f34c9259eae263779e56b403e3e3f 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -55aa2190d28dcfdf414d96dc5dcea9fe048fadcd583dc3981fec020869826111 20220802/cpython-3.10.6+20220802-x86_64-unknown-linux-gnu-install_only.tar.gz -5681621349dd85d9726d1b67c84a9686ce78f72e73a6f9e4cc4119911655759e 20231002/cpython-3.12.0+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -5791a69a73b76b908f5bdf96da1928de8db696ab198f4ced04b77b22fe712ce0 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz -57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz -586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz -58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz -599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -59c6970cecb357dc1d8554bd0540eb81ee7f6d16a07acf3d14ed294ece02c035 20230116/cpython-3.10.9+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz -5a9e88c8aa52b609d556777b52ebde464ae4b4f77e4aac4eb693af57395c9abf 20231002/cpython-3.12.0+20231002-x86_64-apple-darwin-install_only.tar.gz -5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -5ccaecdb899431f393209647182def14b36d7398bd59be4fa73dd79b48b3f290 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz -5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz +236533ef20e665007a111c2f36efb59c87ae195ad7dca223b6dc03fb07064f0b 20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz +78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz 60631211c701f8d2c56e5dd7b154e68868128a019b9db1d53a264f56c0d4aee2 20240107/cpython-3.12.1+20240107-s390x-unknown-linux-gnu-install_only.tar.gz -6070796c894ef0a25b5a944c8c0327e155df534302e1612a5ddd57d177ddadf7 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz -60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz -63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz -66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -67077e6fa918e4f4fd60ba169820b00be7c390c497bf9bc9cab2c255ea8e6f3e 20240107/cpython-3.11.7+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz -688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz -6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6aff211689e30889cfe90b0b2a76b6f5a7b9e6e0bb28d6a66fd5ba35d36dc78a 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz -6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -6c8db44ae0e18e320320bbaaafd2d69cde8bfea171ae2d651b7993d1396260b7 20221106/cpython-3.10.8+20221106-x86_64-unknown-linux-gnu-install_only.tar.gz -6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -6d84fb153ccb5cb650652aadc490d99881a8d9b68cf273d44cb553e8cd087734 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz -6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz -6e69670347e3a6ac1d0cd89b9506d825bd2f2690cc51ead5dec61aec6857d08d 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz -6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz -6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz -73a9d4c89ed51be39dd2de4e235078281087283e9fdedef65bec02f503e906ee 20230507/cpython-3.10.11+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz -74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz +fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz 74e330b8212ca22fd4d9a2003b9eec14892155566738febc8e5e572f267b9472 20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-install_only.tar.gz -7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz -76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz -767d24f3570b35fedb945f5ac66224c8983f2d556ab83c5cfaa5f3666e9c212c 20230507/cpython-3.11.3+20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz -76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz -76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz -76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz -76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -7718411adf3ea1480f3f018a643eb0550282aefe39e5ecb3f363a4a566a9398c 20220802/cpython-3.10.6+20220802-x86_64-apple-darwin-install_only.tar.gz -77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz -78051f0d1411ee62bc2af5edfccf6e8400ac4ef82887a2affc19a7ace6a05267 20240107/cpython-3.12.1+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz -780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz -7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz -7937035f690a624dba4d014ffd20c342e843dd46f89b0b0a1e5726b85deb8eaf 20231002/cpython-3.11.6+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz -7a1d36a1567cd747411c9c2bc7e2b5c1ac277ea7c734f74b158b94101fd5ea43 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz -7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz -7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz -803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz -81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -8146ad4390710ec69b316a5649912df0247d35f4a42e2aa9615bffd87b3e235a 20220227/cpython-3.10.2+20220227-x86_64-apple-darwin-install_only.tar.gz -81625f5c97f61e2e3d7e9f62c484b1aa5311f21bd6545451714b949a29da5435 20220802/cpython-3.10.6+20220802-aarch64-unknown-linux-gnu-install_only.tar.gz -8190accbbbbcf7620f1ff6d668e4dd090c639665d11188ce864b62554d40e5ab 20230507/cpython-3.11.3+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -8348bc3c2311f94ec63751fb71bd0108174be1c4def002773cf519ee1506f96f 20230507/cpython-3.10.11+20230507-aarch64-apple-darwin-install_only.tar.gz +5fdc0f6a5b5a90fd3c528e8b1da8e3aac931ea8690126c2fdb4254c84a3ff04a 20240224/cpython-3.10.13+20240224-aarch64-apple-darwin-install_only.tar.gz +a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +09be8fb2cdfbb4a93d555f268f244dbe4d8ff1854b2658e8043aa4ec08aede3e 20240224/cpython-3.10.13+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +6378dfd22f58bb553ddb02be28304d739cd730c1f95c15c74955c923a1bc3d6a 20240224/cpython-3.10.13+20240224-x86_64-apple-darwin-install_only.tar.gz +086f7fe9156b897bb401273db8359017104168ac36f60f3af4e31ac7acd6634e 20240224/cpython-3.10.13+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +389a51139f5abe071a0d70091ca5df3e7a3dfcfcbe3e0ba6ad85fb4c5638421e 20240224/cpython-3.11.8+20240224-aarch64-apple-darwin-install_only.tar.gz +389b9005fb78dd5a6f68df5ea45ab7b30d9a4b3222af96999e94fd20d4ad0c6a 20240224/cpython-3.11.8+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz 844f64f4c16e24965778281da61d1e0e6cd1358a581df1662da814b1eed096b9 20240224/cpython-3.11.8+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz -84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz -864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +097f467b0c36706bfec13f199a2eaf924e668f70c6e2bd1f1366806962f7e86e 20240224/cpython-3.11.8+20240224-x86_64-apple-darwin-install_only.tar.gz +b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +01c064c00013b0175c7858b159989819ead53f4746d40580b5b0b35b6e80fba6 20240224/cpython-3.12.2+20240224-aarch64-apple-darwin-install_only.tar.gz +e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz +74bc02c4bbbd26245c37b29b9e12d0a9c1b7ab93477fed8b651c988b6a9a6251 20240224/cpython-3.12.2+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz +a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz +1e5655a6ccb1a64a78460e4e3ee21036c70246800f176a6c91043a3fe3654a3b 20240224/cpython-3.12.2+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz +57a37b57f8243caa4cdac016176189573ad7620f0b6da5941c5e40660f9468ab 20240224/cpython-3.12.2+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz +ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz +c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz 872fc321363b8cdd826fd2cb1adfd1ceb813bc1281f9d410c1c2c4e177e8df86 20240415/cpython-3.12.3+20240415-s390x-unknown-linux-gnu-install_only.tar.gz -874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -878614c03ea38538ae2f758e36c85d2c0eb1eaaca86cd400ff8c76693ee0b3e1 20230726/cpython-3.11.4+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz -88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz -8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz -8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz -8a6e3ed973a671de468d9c691ed9cb2c3a4858c5defffcf0b08969fba9c1dd04 20230726/cpython-3.10.12+20230726-x86_64-apple-darwin-install_only.tar.gz -8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz -8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz -8d33d435ae6fb93ded7fc26798cc0a1a4f546a4e527012a1e2909cc314b332df 20230726/cpython-3.10.12+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -8f351a8cc348bb45c0f95b8634c8345ec6e749e483384188ad865b7428342703 20220227/cpython-3.10.2+20220227-aarch64-unknown-linux-gnu-install_only.tar.gz -8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz +f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz +164d89f0df2feb689981864ecc1dffb19e6aa3696c8880166de555494fe92607 20240726/cpython-3.10.14+20240726-aarch64-apple-darwin-install_only.tar.gz +39bcd46b4d70e40da177c55259be16d5c2be7a3f7f93f1e3bde47e71b4833f29 20240726/cpython-3.10.14+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +549d38b9ef59cba9ab2990025255231bfa1cb32b4bc5eac321667640fdee19d1 20240726/cpython-3.10.14+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +1a1455838cd1e8ed0da14a152a2d559a2fd3a6047ba7013e841db4a35a228c1d 20240726/cpython-3.10.14+20240726-x86_64-apple-darwin-install_only.tar.gz +7f68821a8b5445267eca480660364ebd06ec84632b336770c6e39de07ac0f6c3 20240726/cpython-3.10.14+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +32b34cd13d9d745b3db3f3b8398ab2c07de74544829915dbebd8dce39bdc405e 20240726/cpython-3.10.14+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz +4d17cf988abe24449d649aad3ef974091ab76807904d41839907061925b4c9e3 20240726/cpython-3.11.9+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz +e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz +dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz +f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +1801025e825c04b3907e4ef6220a13607bc0397628c9485897073110ef7fde15 20240726/cpython-3.12.4+20240726-aarch64-apple-darwin-install_only.tar.gz +a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz +04011c4c5b7fe34b0b895edf4ad8748e410686c1d69aaee11d6688d481023bcb 20240726/cpython-3.12.4+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz 8f8f3e29cf0c2facdbcfee70660939fda7667ac24fee8656d3388fc72f3acc7c 20240726/cpython-3.12.4+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +4c325838c1b0ed13698506fcd515be25c73dcbe195f8522cf98f9148a97601ed 20240726/cpython-3.12.4+20240726-x86_64-apple-darwin-install_only.tar.gz +74309b0f322716409883d38c621743ea7fa0376eb00927b8ee1e1671d3aff450 20240726/cpython-3.12.4+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz +e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz +eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +0c45af4e7525e2db59901606db32b2896ac1e9830c6f95551402207f537c2ce4 20241016/cpython-3.10.15+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz 90b46dfb1abd98d45663c7a2a8c45d3047a59391d8586d71b459cec7b75f662b 20241016/cpython-3.10.15+20241016-x86_64-apple-darwin-install_only.tar.gz -913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -916c35125b5d8323a21526d7a9154ca626453f63d0878e95b9f613a95006c990 20231002/cpython-3.11.6+20231002-aarch64-apple-darwin-install_only.tar.gz -91889a7dbdceea585ff4d3b7856a6bb8f8a4eca83a0ff52a73542c2e67220eaa 20220802/cpython-3.10.6+20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz -929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +3db2171e03c1a7acdc599fba583c1b92306d3788b375c9323077367af1e9d9de 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +5a69382da99c4620690643517ca1f1f53772331b347e75f536088c42a4cf6620 20241016/cpython-3.11.10+20241016-aarch64-apple-darwin-install_only.tar.gz +803e49259280af0f5466d32829cd9d65a302b0226e424b3f0b261f9daf6aee8f 20241016/cpython-3.11.10+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz 92b666d103902001322f42badbd68da92adc5cebb826af9c1c906c33166e2f34 20241016/cpython-3.11.10+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +6d584317651c1ad4a857cb32d1999707e8bb3046fcb2f156d80381814fa19fde 20241016/cpython-3.11.10+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +1e23ffe5bc473e1323ab8f51464da62d77399afb423babf67f8e13c82b69c674 20241016/cpython-3.11.10+20241016-x86_64-apple-darwin-install_only.tar.gz +647b66ff4552e70aec3bf634dd470891b4a2b291e8e8715b3bdb162f577d4c55 20241016/cpython-3.11.10+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +8b50a442b04724a24c1eebb65a36a0c0e833d35374dbdf9c9470d8a97b164cd9 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +4c18852bf9c1a11b56f21bcf0df1946f7e98ee43e9e4c0c5374b2b3765cf9508 20241016/cpython-3.12.7+20241016-aarch64-apple-darwin-install_only.tar.gz +bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +0a1d1d92e33a969bd2f40a80af53c97b6c0cc1060d384ceff50ff801593bf9d6 20241016/cpython-3.12.7+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz 935676a0c960b552f95e9ac2e1e385de5de4b34038ff65ffdc688838f1189c17 20241016/cpython-3.12.7+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -94e13d0e5ad417035b80580f3e893a72e094b0900d5d64e7e34ab08e95439987 20240224/cpython-3.11.8+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz -95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz -95ddfe7dd52185f7e5d55524eafb48e54d1eab0b0cf013966f144a411f3ddd0f 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz -9794866e9a464f349055d791ea8f14dfa7f339ecac5aa9b1084bb2ce388fc598 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz -981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -99dd7e425b3dac23e03f37787d77ee0af531e96b1c748275185342bc6642eb6b 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz -99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -9b64eca2a94f7aff9409ad70bdaa7fbbf8148692662e764401883957943620dd 20220227/cpython-3.10.2+20220227-x86_64-unknown-linux-gnu-install_only.tar.gz -9c2d3604a06fcd422289df73015cd00e7271d90de28d2c910f0e2309a7f73a68 20230507/cpython-3.10.11+20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz -9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz -9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -9d7e5ba8020fd942a89a57179d9015eb0237c2d95cdbf8378639723663f11706 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +60c5271e7edc3c2ab47440b7abf4ed50fbc693880b474f74f05768f5b657045a 20241016/cpython-3.12.7+20241016-x86_64-apple-darwin-install_only.tar.gz +f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +43576f7db1033dd57b900307f09c2e86f371152ac8a2607133afa51cbfc36064 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +5ed4a4078db3cbac563af66403aaa156cd6e48831d90382a1820db2b120627b5 20241016/cpython-3.12.7+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +31397953849d275aa2506580f3fa1cb5a85b6a3d392e495f8030e8b6412f5556 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-install_only.tar.gz +59b50df9826475d24bb7eff781fa3949112b5e9c92adb29e96a09cdf1216d5bd 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +1217efa5f4ce67fcc9f7eb64165b1bd0912b2a21bc25c1a7e2cb174a21a5df7e 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz +6c3e1e4f19d2b018b65a7e3ef4cd4225c5b9adfbc490218628466e636d5c4b8c 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +66b19e6a07717f6cfcd3a8ca953f0a2eaa232291142f3d26a8d17c979ec0f467 20241016/cpython-3.13.0+20241016-s390x-unknown-linux-gnu-install_only.tar.gz +2e07dfea62fe2215738551a179c87dbed1cc79d1b3654f4d7559889a6d5ce4eb 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz +bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +2c8cb15c6a2caadaa98af51df6fe78a8155b8471cb3dd7b9836038e0d3657fb4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2f61ee3b628a56aceea63b46c7afe2df3e22a61da706606b0c8efda57f953cf4 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-musl-install_only.tar.gz +08f05618bdcf8064a7960b25d9ba92155447c9b08e0cf2f46a981e4c6a1bb5a5 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +88b88b609129c12f4b3841845aca13230f61e97ba97bd0fb28ee64b0e442a34f 20241205/cpython-3.13.1+20241205-aarch64-apple-darwin-install_only.tar.gz 9f2fcb809f9ba6c7c014a8803073a88786701a98971135bce684355062e4bb35 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz -a098b18b7e9fea0c66867b76c0124fce9465765017572b2e7b522154c87c78d7 20240726/cpython-3.12.4+20240726-aarch64-unknown-linux-gnu-install_only.tar.gz -a0e615eef1fafdc742da0008425a9030b7ea68a4ae4e73ac557ef27b112836d4 20240107/cpython-3.11.7+20240107-x86_64-apple-darwin-install_only.tar.gz -a183ec7a10c38ab8c3f19968614f1e69ec697199e94525583662dfbc22b70d9a 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -a1d9a594cd3103baa24937ad9150c1a389544b4350e859200b3e5c036ac352bd 20220227/cpython-3.10.2+20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz +fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz +15ceea78dff78ca8ccaac8d9c54b808af30daaa126f1f561e920a6896e098634 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +27b20b3237c55430ca1304e687d021f88373f906249f9cd272c5ff2803d5e5c3 20241205/cpython-3.13.1+20241205-ppc64le-unknown-linux-gnu-install_only.tar.gz +ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7d0187e20cb5e36c689eec27e4d3de56d8b7f1c50dc5523550fc47377801521f 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-install_only.tar.gz +dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +47eef6efb8664e2d1d23a7cdaf56262d784f8ace48f3bfca1b183e95a49888d6 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-install_only.tar.gz +7537b2ab361c0eabc0eabfca9ffd9862d7f5f6576eda13b97e98aceb5eea4fd3 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst +f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +9ec1b81213f849d91f5ebe6a16196e85cd6ff7c05ca823ce0ab7ba5b0e9fee84 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +242b2727df6c1e00de6a9f0f0dcb4562e168d27f428c785b0eb41a6aeb34d69a 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +76b30c6373b9c0aa2ba610e07da02f384aa210ac79643da38c66d3e6171c6ef5 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-musl-install_only.tar.gz +e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz +ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz +b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz +73102f5dbd7d1e7e9c2f2c80aedf2893d99a7fa407f6674ec8b2f57ba07daee5 20241206/cpython-3.12.8+20241206-s390x-unknown-linux-gnu-install_only.tar.gz +3ba35c706577d755e8e52a4c161a042464577c0e695e2a605362fa469e26de10 20241206/cpython-3.12.8+20241206-x86_64-apple-darwin-install_only.tar.gz +767b4be3ddf6b99e5ade519789c1615c191d8cf99d5aff4685cc18b48931f1e6 20241206/cpython-3.12.8+20241206-x86_64-pc-windows-msvc-shared-install_only.tar.gz +b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +6f305888703691dd04cfff85284d23ea0b0146ed7c4415e472f1fb72b3f32cdf 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-musl-install_only.tar.gz +e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz +76d0f04d2444e77200fdc70d1c57480e29cca78cb7420d713bc1c523709c198d 20250317/cpython-3.10.16+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +39c9b3486de984fe1d72d90278229c70d6b08bcf69cd55796881b2d75077b603 20250317/cpython-3.10.16+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +9b2fc0b7f1c75b48e799b6fa14f7e24f5c61f2db82e3c65d13ed25e08f7f0857 20250317/cpython-3.10.16+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz +c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +6ed64923ee4fbea4c5780f1a5a66651d239191ac10bd23420db4f5e4e0bf79c4 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +7c7fd9809da0382a601a79287b5d62d61ce0b15f5a5ee836233727a516e85381 20250317/cpython-3.12.9+20250317-aarch64-apple-darwin-install_only.tar.gz +00c6bf9acef21ac741fea24dc449d0149834d30e9113429e50a95cce4b00bb80 20250317/cpython-3.12.9+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +25d77599dfd5849f17391d92da0da99079e4e94f19a881f763f5cc62530ef7e1 20250317/cpython-3.12.9+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +7492d079ffa8425c8f6c58e43b237c37e3fb7b31e2e14635927bb4d3397ba21e 20250317/cpython-3.12.9+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +1ee1b1bb9fbce5c145c4bec9a3c98d7a4fa22543e09a7c1d932bc8599283c2dc 20250317/cpython-3.12.9+20250317-x86_64-apple-darwin-install_only.tar.gz +d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +94e3837da1adf9964aab2d6047b33f70167de3096d1f9a2d1fa9340b1bbf537d 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz +b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +9c67260446fee6ea706dad577a0b32936c63f449c25d66e4383d5846b2ab2e36 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-install_only.tar.gz +6ae8fa44cb2edf4ab49cff1820b53c40c10349c0f39e11b8cd76ce7f3e7e1def 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +345b53d2f86c9dbd7f1320657cb227ff9a42ef63ff21f129abbbc8c82a375147 20250317/cpython-3.13.2+20250317-ppc64le-unknown-linux-gnu-install_only.tar.gz +2af1b8850c52801fb6189e7a17a51e0c93d9e46ddefcca72247b76329c97d02a 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +172d22b2330737f3a028ea538ffe497c39a066a8d3200b22dd4d177a3332ad85 20250317/cpython-3.13.2+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz +c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz +0d73e4348d8d4b5159058609d2303705190405b485dd09ad05d870d7e0f36e0f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz +c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +84d7b52f3558c8e35c670a4fa14080c75e3ec584adfae49fec8b51008b75b21e 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-install_only.tar.gz +1aea5062614c036904b55c1cc2fb4b500b7f6f7a4cacc263f4888889d355eef8 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz +00bb2d629f7eacbb5c6b44dc04af26d1f1da64cee3425b0d8eb5135a93830296 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-musl-install_only.tar.gz +278dccade56b4bbeecb9a613b77012cf5c1433a5e9b8ef99230d5e61f31d9e02 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz +b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +3c2596ece08ffe17e11bc1f27aeb4ce1195d2490a83d695d36ef4933d5c5ca53 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-install_only.tar.gz +ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +913264545215236660e4178bc3e5b57a20a444a8deb5c11680c95afc960b4016 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz +7556a38ab5e507c1ec22bc38f9859982bc956cab7f4de05a2faac114feb306db 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz +64ab7ac8c88002d9ba20a92f72945bfa350268e944a7922500af75d20330574d 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +79feb6ca68f3921d07af52d9db06cf134e6f36916941ea850ab0bc20f5ff638b 20250610/cpython-3.13.4+20250610-x86_64-apple-darwin-install_only.tar.gz +9457504547edb2e0156bf76b53c7e4941c7f61c0eff9fd5f4d816d3df51c58e3 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +29ac3585cc2dcfd79e3fe380c272d00e9d34351fc456e149403c86d3fea34057 20250610/cpython-3.13.4+20250610-x86_64-pc-windows-msvc-install_only.tar.gz +864df6e6819e8f8e855ce30f34410fdc5867d0616e904daeb9a40e5806e970d7 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +44e5477333ebca298a7a0a316985c6c3533b8645f92a83f7f73c44033832bf32 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-gnu-install_only.tar.gz a3afbfa94b9ff4d9fc426b47eb3c8446cada535075b8d51b7bdc9d9ab9911fc2 20250610/cpython-3.13.4+20250610-x86_64-unknown-linux-musl-install_only.tar.gz -a476dbca9184df9fc69fe6309cda5ebaf031d27ca9e529852437c94ec1bc43d3 20230726/cpython-3.10.12+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -a4bfd77675740a0362c137b094f3cd9995775e8e6c0a7874a095dd055fd1ea99 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz -a53a6670a202c96fec0b8c55ccc780ea3af5307eb89268d5b41a9775b109c094 20240224/cpython-3.12.2+20240224-x86_64-apple-darwin-install_only.tar.gz -a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz -a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz -a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -a6797ad05c7d7f74a2cea28bf012f9199f4d6c1ed6d09f7adfeb9b3c538c6258 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz -a73adeda301ad843cce05f31a2d3e76222b656984535a7b87696a24a098b216c 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -a73ba777b5d55ca89edef709e6b8521e3f3d4289581f174c8699adfb608d09d6 20240415/cpython-3.12.3+20240415-x86_64-unknown-linux-gnu-install_only.tar.gz -a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz -a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -a898a88705611b372297bb8fe4d23cc16b8603ce5f24494c3a8cfa65d83787f9 20240224/cpython-3.10.13+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz a94c02b2d597cd6b075a713fe4e9a909cc97ca6a3b2b2ce86eda21be2062d48e 20250808/cpython-3.10.18+20250808-aarch64-apple-darwin-install_only.tar.gz -abe26a6cab523a5d00d75f1353cbad9c5dc04262dcb0dc4a2b47d02384e2a7d7 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz -ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0d7e460e30203a9225b6f417ae972f66415a1cc0e32b37ebc48d195816282669 20250808/cpython-3.10.18+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz +a648f3c9d136985ccfe57a5507e73d9d0839f7fd09eebd7c247857f2feaecb2a 20250808/cpython-3.10.18+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +0b310a73bb9e7a495dbcad5f685e508ca2e7b36ee8f29301a52285730c425789 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +9cecf6ea2effbe183faebcf7e1160425a4ee17a68e49f2eefe5e1c59c51fa7ee 20250808/cpython-3.10.18+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz +a632857c966237e7fd38b44c47c350f6e30d8ec54dcad6c832865ad670f0f22f 20250808/cpython-3.11.13+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +16a0165b0744940702b8fff80b8bf973ac914f78cb6fca28d389583f675e84de 20250808/cpython-3.11.13+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +4e302a4514a73baefdd9b327062bdafeb4115a799deec91c185f6ab45a857241 20250808/cpython-3.11.13+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz +ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +3ad988c702cbb017fef1208d47dea4138a2e85fd0f7f01ec5e1e335e597131b9 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +3a5810f0696f844289aa06d5c3a1efeab66eee999c25196b7d1954192a2c2100 20250808/cpython-3.11.13+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +8792c4a84c364ab975feca0c27d3157a5435b7baab325a346ae56b223893b661 20250808/cpython-3.12.11+20250808-aarch64-apple-darwin-install_only.tar.gz +00bf7d7e8bcf5d1e9c4dfca0247d8e035147777cd57ee9d4c64dedca86b0a464 20250808/cpython-3.12.11+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +4d7ba5314fab02130d6538f074961ffbf61310cade9180e59026074f9a8939cb 20250808/cpython-3.12.11+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +2c862eb40a81549d9c11e6bf5a7f07c3406310b14e6a4d16dcdf1c4763ef7090 20250808/cpython-3.12.11+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +0bb729b95fabd49c7b495f7c44a9086e3970ea57daf66365741574bd36a17e81 20250808/cpython-3.12.11+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +99e465882d217d24ac90e99fac8f32e6a644d0340ac05ee510fb5cdf53f0cfb8 20250808/cpython-3.12.11+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz +81214ef71964a40ec269a79067ca490d45298c350583bc3af0e5781451a05c3c 20250808/cpython-3.12.11+20250808-x86_64-pc-windows-msvc-install_only.tar.gz +63d78840bf209af8da8f24e335d910f88387b892ca9187be571d481c071751bb 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +8a1efa6af4e80f08e2c97dda822a3d6c24d6c98e518242f802c6a43ae8401488 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-install_only.tar.gz +552cfabcc3b103f4b1c4036d2592d5f0373c9554a2c4d2b6631b04ef7e592067 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8e1617bd407ec1a874499daab26ae95080d1e0267ae616d34490137a28705827 20250808/cpython-3.13.6+20250808-aarch64-pc-windows-msvc-install_only.tar.gz +d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +11fa0591ae2211c08a42ae54944260e36ddf88a1d5604ea0c49e2477be4e5388 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz +e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +8dcf34ae1a685fe1893b52917ae04f23328edadc4acae28499d43850c2bdd26c 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz +24e08a39ba4fc77753e61541e52eed39cc871f4a92a80a3c5dd495056bd8eff9 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz +1609b223fd38a4a7a4d20e7173d7d9390fe2258f7dd9a15dc9ef0fa49613735d 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7707ee5d19a78bc64ef8a66751ec7f97b64ea06714c7b1b52e8b321c2923ead8 20250808/cpython-3.13.6+20250808-s390x-unknown-linux-gnu-install_only.tar.gz +4360a1278dd0a96b526d108c8fd23498a9d2028dd7791e510fd51ff5ea3f462a 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +27badce7201321a8363219e438a6205165e5b4884012b1046532203df2ec9379 20250808/cpython-3.13.6+20250808-x86_64-apple-darwin-install_only.tar.gz +4e727cdbe4057b16a170f887c0fa4227a825ac59bcda84ae946c77cc932af78c 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst af5cc733c33b9aa9f1d74c81a59351e9b27215486d8b6cdbc06d97646a58c953 20250808/cpython-3.13.6+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz -b042c966920cf8465385ca3522986b12d745151a72c060991088977ca36d3883 20240107/cpython-3.11.7+20240107-aarch64-apple-darwin-install_only.tar.gz -b102eaf865eb715aa98a8a2ef19037b6cc3ae7dfd4a632802650f29de635aa13 20240107/cpython-3.11.7+20240107-aarch64-unknown-linux-gnu-install_only.tar.gz -b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz +70076dea0ff65b3c05aae1a97b4a556bf613cc73db30309e59134f9d318f4f7b 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-musl-install_only.tar.gz +43bda24c2fc073bc308bf631203b917a72640d59b59fdad4ba14503d84727012 20251031/cpython-3.10.19+20251031-aarch64-apple-darwin-install_only.tar.gz +f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +1c55d160fc4c3b93528cd6aaa2bb4ca6018a99e5a45919d33dc761a43a69f860 20251031/cpython-3.10.19+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +21134d35721cdad4c881f35d0957cc19df9a45d194afb38a099faded3c1cfb4d 20251031/cpython-3.10.19+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +76c12e633c09c2a790f8a958a55df4495527e0718d1875310c836e757c0c7b55 20251031/cpython-3.10.19+20251031-x86_64-apple-darwin-install_only.tar.gz +cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +6de5572b33c65af1c9b7caf00ec593fb04cffb7e14fa393a98261bb9bc464713 20251031/cpython-3.11.14+20251031-aarch64-apple-darwin-install_only.tar.gz +38d0d1466561e15965e8d2c20f5e5be649598f55c761ecab553d087fbd217337 20251031/cpython-3.11.14+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +510edb027527413c4249256194cb8ad2590b52dd93f7123b4cb341aff5d05894 20251031/cpython-3.11.14+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +4e0bc6a818e0c6a9d7d3ebe1a95591fd84440520577aa837facc96a4b7a80e35 20251031/cpython-3.11.14+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +16519e69297144f81b2421333bc9e0b6466cf3c84749b216b695cfb4c9deb32f 20251031/cpython-3.11.14+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +5f9c1b203cdf34c8bff1aef69b63bbf11309bd16ca6e429d8c3651eaa2b3d080 20251031/cpython-3.11.14+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +4891cbf34e8652b7bd1054b9502395e4b7e048e2e517c040fbf6c8297cb954d6 20251031/cpython-3.11.14+20251031-x86_64-apple-darwin-install_only.tar.gz +5223b83ed9e2aa5e9e17d2ebcf767956e998876339b9cde1980a47e9d4655fb6 20251031/cpython-3.11.14+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +60f0bd473d861cc45d3401d9914e47ccb9fa037f88a91879ed517a62042b8477 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +25e82d1e85b90a8ab724ee633a1811b1921797f5c25ee69c6595052371b91a87 20251031/cpython-3.11.14+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +5e110cb821d2eb8246065d3b46faa655180c976c4e17250f7883c634a629bc63 20251031/cpython-3.12.12+20251031-aarch64-apple-darwin-install_only.tar.gz b190fed7c2b0f6e1010f554a0d1fd191c0754c4c0718e69d9d795ae559613780 20251031/cpython-3.12.12+20251031-aarch64-pc-windows-msvc-install_only.tar.gz -b1c1bd6ab9ef95b464d92a6a911cef1a8d9f0b0f6a192f694ef18ed15d882edf 20250610/cpython-3.13.4+20250610-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b25926e8ce4164cf103bacc4f4d154894ea53e07dd3fdd5ebb16fb1a82a7b1a0 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz -b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -b350c7e63956ca8edb856b91316328e0fd003a840cbd63d08253af43b2c63643 20250317/cpython-3.10.16+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -b3c8210674140a4c5beefa2d4afd752979222638a0fb68de672c60300b4a6642 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -b3cc13ee177b8db1d3e9b2eac413484e3c6a356f97d91dc59de8d3fd8cf79d6b 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-install_only.tar.gz +81b644d166e0bfb918615af8a2363f8fcf26eccdcc60a5334b6a62c088470bac 20251031/cpython-3.12.12+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +024f5e5678c9768d45cc24d37a8e9d265aae86c4a4602352dee3d7deba367052 20251031/cpython-3.12.12+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +b13c57fc372c131e667a99b9680f41c0b4da571cf99ed412103c2fe9ad5ed1fb 20251031/cpython-3.12.12+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +2bf05bdd56cdf5ea4fd9f2faf151ea4211be96a0d1f4230b85f5dcae620d6400 20251031/cpython-3.12.12+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +687052a046d33be49dc95dd671816709067cf6176ed36c93ea61b1fe0b883b0f 20251031/cpython-3.12.12+20251031-x86_64-apple-darwin-install_only.tar.gz +cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +80c3882f14e15cef8260ef5257d198e8f4371ca265887431d939e0d561de3253 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +0a461330b9b89f2ea3088dde10d7a3f96aa65897b7c5ce2404fa3b5c4b8daa14 20251031/cpython-3.12.12+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +1f3568d17383426d52350c2ef7c93c1a5a043198b860cb05e5d19b35f9c25cef 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-install_only.tar.gz +743ff69935ef28834621647dab30f032dfcd80315732917531eea333210941c7 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +20db43873d3c4c2175d866806545e4ad4ec6bb72ca95e60082a4df6c24567e8c 20251031/cpython-3.13.9+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +a6e72f9de5d9b46cf6968d6a492f2401a919f9b959f8da2d87f43484b80169ee 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0a56d11b0fb1662e67f892b9d5d1717aef06f24dbb8362bc25b8f784e620d44e 20251031/cpython-3.13.9+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +0ed5c65437f875c58ba1bee2b8d261d18698d3d0347a2e66f8902fce022a2cda 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +99492123902bd5e9a6b1a30135061e93a2e6a11d25107a741d5a756e91054448 20251031/cpython-3.13.9+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +584e481d9b5225ffaf02f158fb26d2818207e65fc3c6dc21a6d500277f739220 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst b3dce3e4ef508773521e1ee1be989fff6118f8fd1fbbd0491d7ff7dfbc98ef06 20251031/cpython-3.13.9+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -b44e1b74afe75c7b19143413632c4386708ae229117f8f950c2094e9681d34c7 20240107/cpython-3.11.7+20240107-ppc64le-unknown-linux-gnu-install_only.tar.gz +7fa7fb912ca989ceac026a332d56a2c7d6d16ab0e94d89e690de5aade26103e2 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +48c0f3ca5d31e90658ef99138dc21865bb62f388ab97a1ce72cac176da194ab0 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-install_only.tar.gz +318a9a1e43dd52054327de3bccc0c5b7afde7b7f2a398ccb4d38e03d28b05386 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +874593f641f31ea101440c70f81768c35d4d7d6df111fde63094db67465ef787 20251031/cpython-3.13.9+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +6f05b91ee8c7e6dd0f9c60b95bb29130e2d623961de6578b643e80ddd83f96b6 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +ad987197034185e628715da504a50613af213dc21ba6d5ccaeab3db2c464aa6c 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst b4bcd3c6c24cab32ae99e1b05c89312b783b4d69431d702e5012fe1fdcad4087 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-install_only.tar.gz -b5dae075467ace32c594c7877fe6ebe0837681f814601d5d90ba4c0dfd87a1f2 20231002/cpython-3.12.0+20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz -b5e025e340d0faa1772ef234e320401b0aa5cf6c9d16ed63a8c44be7c531bc58 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz -b618f1f047349770ee1ef11d1b05899840abd53884b820fd25c7dfe2ec1664d4 20240224/cpython-3.11.8+20240224-x86_64-pc-windows-msvc-shared-install_only.tar.gz -b7214790b273de9ed0532420054b72ba1393d62d2fc844ec55ade193771bd90c 20241206/cpython-3.12.8+20241206-ppc64le-unknown-linux-gnu-install_only.tar.gz -b72908bce86036a0a1ba98ca9917ea0b99dc1e6c5d715d3d463c4f330880c09b 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +40266e60f655e49cd1d5303295255909a4b593b08b88be6e6a55b2c9fe6ed13d 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +599a8b7e12439cd95a201dbdfe95cf363146b1ff91f379555dafd86b170caab9 20251031/cpython-3.14.0+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +128a9cbfb9645d5237ec01704d9d1d2ac5f084464cc43c37a4cd96aa9c3b1ad5 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +929223470d11a55cd75f880ac3bd4969e42407e2cdf08d4e7e38ba721cf4abec 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +613fb1f7b249f798b52af957d181305244e936c8e5c94c84688fcdf93fe14253 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +b3196f6b57bbb3dc2ee07f348f1d51117ffa376979eceafbf50c15f0f7980bf8 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +4e71a3ce973be377ef18637826648bb936e2f9490f64a9e4f33a49bcc431d344 20251031/cpython-3.14.0+20251031-x86_64-apple-darwin-install_only.tar.gz b81de5fc9e783ea6dfcf1098c28a278c874999c71afbb0309f6a8b4276c769d0 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -b8635e59e3143fd17f19a3dfe8ccc246ee6587c87da359bd1bcab35eefbb5f19 20250317/cpython-3.13.2+20250317-aarch64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -b9d6ee5ddac1198e72d53112698773fc8bb597de095592eb849ca794306699ba 20241206/cpython-3.12.8+20241206-x86_64-unknown-linux-gnu-install_only.tar.gz +39acfcb3857d83eab054a3de11756ffc16b3d49c31393b9800dd2704d1f07fdf 20251031/cpython-3.14.0+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +3dec1ab70758a3467ac3313bbcdabf7a9b3016db5c072c4537e3cf0a9e6290f6 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +12f1b16be4017181ad67904caf9e59e525b9b5d62f49105017d837e27b832959 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +3acf7aa3559b746498b18929456c5cacb84bae4e09249834cbc818970d71de87 20251031/cpython-3.15.0a1+20251031-aarch64-apple-darwin-install_only.tar.gz +54ca78dae455ece6fefbd7f5f287cc55d5ce197caf51921f6d871d15069d9489 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +1508bcd7195008479ed156aad3afbb3a3793097ed530690f0304a8107f0e53e8 20251031/cpython-3.15.0a1+20251031-aarch64-pc-windows-msvc-install_only.tar.gz +981fe8dfc6e7e1d0ffefa945a18d5c4c759bbe21722acf3a5cc7e62f16aa5f3c 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +088400dec25139f38eeecb48f090ff2ce06a96a1dd79fa8f1dfec1cd1786f5ef 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +938061a0a31a06672526885de36037ddefd8c4acdb09424691b7000a8c8f8d01 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +36619f576b8154e4b56643c5c4a85c352f152df2989c4e602cbbe9c2b7ded870 20251031/cpython-3.15.0a1+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +2003e7e40bb44b3db7bca81087bfb738fe6af40e5db61cda8e23b59bf55d409e 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5ea47be2a3a563ddd87ff510dae26b7aa7f3855ca00c5f1056ff8114c067c4e4 20251031/cpython-3.15.0a1+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +64fc29e6c7a2f02a18645d968f1b3fc1d00d12a5ef3fcbb0d077fa8c62c08904 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +0ab19d3ac25f99da438b088751e5ec2421f9f6aa4292fd2dc0f8e49eb3e16bdf 20251031/cpython-3.15.0a1+20251031-x86_64-apple-darwin-install_only.tar.gz +34abc5603e1b4131f753d29b7deac865b9277912b851cbed5a149cf3e6745d3d 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +5f5d6bec2b381cfc771c49972d2a6f7b7e7ab6a1651d8fb6ef3983f3571722b3 20251031/cpython-3.15.0a1+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +0e0272186d9f5169394dbc4d4d72a3f4a5762a04c2e5ac2ab1e23aa41fc8538a 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1f356288c2b2713619cb7a4e453d33bf8882f812af2987e21e01e7ae382fefba 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-aarch64-apple-darwin-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20251031/cpython-3.9.25+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz +828364b6f54fa45ac2dc91f8e45d5b74306372af374a9ef16eeb2ea81253ed3f 20251031/cpython-3.9.25+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz +17467e0158e5ad04453c447d6773c23b044172276441e22e23058fd3ea053e27 20251031/cpython-3.9.25+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz +3e9539f83e67faa813fd06171199b2d33c89821dfa9a33bf6e27ad67f1b6932d 20251031/cpython-3.9.25+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +ace63cfe27a9487c4d72e1cb518be01c1d985271da0b2158e813801f7d3e5503 20251031/cpython-3.9.25+20251031-x86_64-apple-darwin-install_only.tar.gz +4fb1b416482ce94d73cfa140317a670c596c830671d137b07c26afe8c461768a 20251031/cpython-3.9.25+20251031-x86_64-pc-windows-msvc-install_only.tar.gz +42834f61eb6df43432c3dd6ab9ca3fdf8c06d10a404ebdb53d6902e6b9570b08 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +76593e8c889e81e82db5fe117fe15b69466f85100ab2ec0e4035aa86242b4e93 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-musl-install_only.tar.gz +3c9fdd76447c1549a0d3bc2a70c63f1daec997ab034206ac0260a03237166dbb 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +37afe4e77ab62ac50f197b1cb1f3bc02c82735c6be893da0996afcde5dc41048 20251202/cpython-3.13.10+20251202-aarch64-apple-darwin-install_only.tar.gz +cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +9060d644bd32ac0e0af970d0b21e207e6ff416b7c4dc26ffc4f9b043fb45b463 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +6d277221fa4b172e00b29c7158ca9661917bc8db9a0084b1a0ff5c3a0ba8b648 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +1507e5528bd88131dc742a2941176aceea1838bc09860c21f179285b7865133b 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +70169e916860b2e5b34c37c302d699eb2b8f24f28090968881942a37aeb7ed08 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +4fc6443948bf5b729481ea02cc5c68e80cd0da42631f6936587a2b8fd45bc62c 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +6ce608684df0f90350c7a1742e9685a7782d9b26ec99d1bd9d55c8cf9a405040 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +a02761a4f189f71c0512e88df7ca2843696d61da659e47f8a5c8a9bd2c0d16f4 20251202/cpython-3.13.10+20251202-x86_64-apple-darwin-install_only.tar.gz +6a8b0372ded655e0d55318089fbce3122a446e69bcd120c79aaadfe9b017299c 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +8b00014c7c35f9ad4cb1c565f067500bacc4125c8bc30e4389ee0be9fd6ffa3d 20251202/cpython-3.13.10+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +0cac1495fff920219904b1d573aaec0df54d549c226cb45f5c60cb6d2c72727a 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +04108190972ac98e13098abd972ec3f4f8b0880f83c0bb68249ce1a6164fa041 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +61f38e947449cf00f32f0838e813358f6bf61025d0797531e5b8b8b175c617f0 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz +ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +19129cf8b4d68c4e64c25bae43bca139d871267b59cf7f02b9dcf25f0bf59497 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-install_only.tar.gz +1a88a1fe21eb443d280999464b1a397605a7ca950d8ab73813ca6868835439a2 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +5dde7dba0b8ef34c0d5cb8a721254b1e11028bfc09ff06664879c245fe8df73f 20251202/cpython-3.14.1+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz +7207b736ed2569f307649ffd4b615a5346631bc244730b8702babee377cef528 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz +d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +af840506efbcd5026d9140c0a0230e45e46bb1f339a65c10a22875930b2c0159 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-install_only.tar.gz +477758eabc06dbc7e5e5d16e97c4672478acd409f420dd2e1b84d3452c0668d1 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +43f8f79bf4c66689d2019f193671d1df3e5e5dbb293382036285e8ce55fc55bb 20251202/cpython-3.14.1+20251202-s390x-unknown-linux-gnu-install_only.tar.gz +c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz +8ef7048315cac6d26bdbef18512a87b1a24fffa21cec86e32f9a9425f2af9bf6 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz +c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +a72f313bad49846e5e9671af2be7476033a877c80831cf47f431400ccb520090 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-install_only.tar.gz +15d50b15713097c38c67b1a06a0498ad102377f9b3999e98e4eefd6bf91bd82d 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-musl-install_only.tar.gz +4213058b7fcd875596c12b58cd46a399358b0a87ecde4b349cbdd00cf87ed79a 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +295a9f7bc899ea1cc08baf60bbf511bdd1e4a29b2dd7e5f59b48f18bfa6bf585 20251209/cpython-3.13.11+20251209-aarch64-apple-darwin-install_only.tar.gz +6daf6d092c7294cfe68c4c7bf2698ac134235489c874b3bf796c7972b9dbba30 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst ba646d0c3b7dd7bdfb770d9b2ebd6cd2df02a37fda90c9c79a7cf59c7df6f165 20251209/cpython-3.13.11+20251209-aarch64-pc-windows-msvc-install_only.tar.gz -ba85013ed5ac7733fc6840168cc33ed19e9959b363dc80227d54f8fd9c92c0f4 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -bb5c5d1ea0f199fe2d3f0996fff4b48ca6ddc415a3dbd98f50bff7fce48aac80 20230826/cpython-3.11.5+20230826-aarch64-unknown-linux-gnu-install_only.tar.gz -bb5e8cb0d2e44241725fa9b342238245503e7849917660006b0246a9c97b1d6c 20230726/cpython-3.10.12+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +290ca3bd0007db9e551f90b08dfcb6c1b2d62c33b2fc3e9a43e77d385d94f569 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +09d4b50f8abb443f7e3af858c920aa61c2430b0954df465e861caa7078e55e69 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +7660e53aad9d35ee256913c6d98427f81f078699962035c5fa8b5c3138695109 20251209/cpython-3.13.11+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +5406f2a7cacafbd2aac3ce2de066a0929aab55423824276c36e04cb83babc36c 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +763fa1548e6a432e9402916e690c74ea30f26dcd2e131893dd506f72b87c27c9 20251209/cpython-3.13.11+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +3984b67c4292892eaccdd1c094c7ec788884c4c9b3534ab6995f6be96d5ed51d 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz bb9a29a7ba8f179273b79971da6aaa7be592d78c606a63f99eff3e4c12fb0fae 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -bba3c6be6153f715f2941da34f3a6a69c2d0035c9c5396bc5bb68c6d2bd1065a 20241016/cpython-3.12.7+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -bc57105f8a16acd57b71d926143c7f6ecf61729b40c8b4656f1b98bebd47c710 20250808/cpython-3.11.13+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -bc66c706ea8c5fc891635fda8f9da971a1a901d41342f6798c20ad0b2a25d1d6 20230726/cpython-3.10.12+20230726-aarch64-apple-darwin-install_only.tar.gz -bccfe67cf5465a3dfb0336f053966e2613a9bc85a6588c2fcf1366ef930c4f88 20231002/cpython-3.12.0+20231002-aarch64-unknown-linux-gnu-install_only.tar.gz -bd3fc6e4da6f4033ebf19d66704e73b0804c22641ddae10bbe347c48f82374ad 20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz -bee24a3a5c83325215521d261d73a5207ab7060ef3481f76f69b4366744eb81d 20220502/cpython-3.10.4+20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz -bfd89f9acf866463bc4baf01733da5e767d13f5d0112175a4f57ba91f1541310 20241016/cpython-3.13.0+20241016-x86_64-pc-windows-msvc-shared-freethreaded+pgo-full.tar.zst -c074144cc80c2af32c420b79a9df26e8db405212619990c1fbdd308bd75afe3f 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -c1a31c353ca44de7d1b1a3b6c55a823e9c1eed0423d4f9f66e617bdb1b608685 20230726/cpython-3.10.12+20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -c1a845a79da56265dc49628bc3b9e20d34f04674fd2d637ee40cbe259d2b1b95 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz -c23706e138a0351fc1e9def2974af7b8206bac7ecbbb98a78f5aa9e7535fee42 20240224/cpython-3.10.13+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz +87822417007045a28a7eccc47fe67b8c61265b99b10dbbfa24d231a3622b1c27 20251209/cpython-3.13.11+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +33f89c957d986d525529b8a980103735776f4d20cf52f55960a057c760188ac3 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +1ffa06d714a44aea14c0c54c30656413e5955a6c92074b4b3cb4351dcc28b63b 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +969fe24017380b987c4e3ce15e9edf82a4618c1e61672b2cc9b021a1c98eae78 20251209/cpython-3.13.11+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +2f74bd26bd16487aca357c879d11f7b16c0521328e5148a1930ab6357bcb89fe 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-install_only.tar.gz +43aac5bb4cdba71fc6775d26f47348d573a0b1210911438be71d7d96f4b18b51 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +0be0d2557d73efa7f6f3f99679f05252d57fe2aad2d81cac3cad410a9b1eacbd 20251209/cpython-3.14.2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +adfcb90f3a7e1b3fbc6a99f9c8c8dce1f2e26ea72b724bbe4e9fa39e81e2b0db 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +869af31b2963194e8a2ecfadc36027c4c1c86a10f4960baec36dadb41b2acf02 20251209/cpython-3.14.2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +2b1ce0c5a5f5e5add7e4f934f5bd35ac41660895a30b3098db7f7303d6952a4f 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +86129976403fb5d64cf576329f94148f28cf6f82834e94df81ff31e9d5f404e0 20251209/cpython-3.14.2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +4efb610fa07a6ee2639d14d78fc3b6ecb47431c14e1e4bda03c7f7dd60a5c1e5 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +318dceecf119ea903aef1fb03a552cc592ecd61c08da891b68f5755e21e13511 20251209/cpython-3.14.2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +53875c849a14194344ead1d9cd1e128cadd42a4b83c35eeb212417909ef05a6a 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +1fd76c79f7fc1753e8d2ed2f71406c0b65776c75f3e95ed99ffde8c95af2adc1 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +58fa3e17d13ab956fd11055fb774c98ecfddcdf3b588e5f2369bdbc14ef9d76a 20251209/cpython-3.14.2+20251209-x86_64-apple-darwin-install_only.tar.gz +9927951e3997c186d2813ca1a0f4a8f5a2f771463f7f8ad0752fd3d2be2b74e4 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +0d660bba9f58cb552e7e99e1f96a9c67b41618c9b8d29f9f3515fe2b5ad1966e 20251209/cpython-3.14.2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +3728872ffd74989a7b4bbf3f0c629ae8fe821cda2bd6544012c1b92b9f5d5a5b 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +121c3249bef497adf601df76a4d89aed6053fc5ec2f8c0ec656b86f0142e8ddd 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +71639cc5d1fb79840467531c5b53ca77170a58edd3f7e2d29330dd736e477469 20251209/cpython-3.14.2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +5b34488580df13df051a2e84e43cfca2ab28fdd7a61052f35988eb8b481b894a 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +5851f3744fbd39e3e323844cf4f68d7763fb25546aa5ffbb71b1b5ab69c56616 20251209/cpython-3.15.0a2+20251209-aarch64-apple-darwin-install_only.tar.gz +3d99152b4e29b947fb1cfc8d035d1d511e50aeed72886ff4a5fd0a3694bd0b51 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +39bc2fcac13aeba7d650f76badf63350a81c86167a62174cb092eab7a749f4a5 20251209/cpython-3.15.0a2+20251209-aarch64-pc-windows-msvc-install_only.tar.gz +0c2c83236f6e28c103e2660a82be94b2459ee8cfdd90f5dd82f0d503ca2aec09 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +17ba65d669be3052524e03b4d1426c072ef38df2a9065ff4525d1f4d1bc9f82c 20251209/cpython-3.15.0a2+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz +216842df2377fd032f279ded7fd23d7bdbd92d4c1fa7619523bc0dbdef5bd212 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst +5585bd7c5eefe28b9bf544d902cad9a2f81f33c618f2a1d3c006cbfcdec77abc 20251209/cpython-3.15.0a2+20251209-ppc64le-unknown-linux-gnu-install_only.tar.gz +2a8b56f318d2e21b01b54909554c53d81871b9bb05d23ea7808dde9acec4dc7e 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst +bb7252edaffd422bd1c044a4764dfcf83a5d7159942f445abbef524e54ea79a0 20251209/cpython-3.15.0a2+20251209-riscv64-unknown-linux-gnu-install_only.tar.gz +06c4ca3983aad20723f68786e3663ab49fee1bf09326f341649205ed79d34fc6 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst +03a90ffa9f92d4cf4caeefb9d15f0b39c05c1e60ade6688f32165f957db4f8f3 20251209/cpython-3.15.0a2+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +4d8102b70ea9fe726ee3ae9ad9e9bc4cbe0b6ed18f7989c81aef81de578f0163 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst +cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz +6ff71bac78d650ce621fe6db49f06290e48bcceb61f69cccc7728584f70b6346 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst +e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz +70f552e213734c0e260a57603bee504dd7ed0e78a10558b591e724ea8730fef5 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst +58addaabfab2de422180d32543fb3878ffc984c8a2e4005ff658a5cd83b31fc7 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-gnu-install_only.tar.gz +dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +e7cf7bc717082bb38f5ca75988ecd8e5dbc1b0535192129371e30235d29d67b5 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz +688da81bcaa6ed91792397c7d5433b13a4f02f021f940637c3972639bc516dca 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-install_only.tar.gz +54187be504ea5be2f8ed455e9377112bb04f34c9259eae263779e56b403e3e3f 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +9794866e9a464f349055d791ea8f14dfa7f339ecac5aa9b1084bb2ce388fc598 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +31c6e61eed48ca4e156d0e473025a792338641109e8277a63518ded438390c96 20260325/cpython-3.13.12+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +1a8a4a97f33740a1cb9fa480321818cdc610c79c9137e511e76dc53635615494 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +654939bc40d5f76f08eb17335bb19e9efa11eb48a0818eda2293a3f7c3570ae7 20260325/cpython-3.13.12+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +178d20e568c25abcca9b1dbedf77e904cc3f10a79d22e31f87ddabd2d28f87dc 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +d23c93ea7502420c71e4acf02999c72ab80797d51843b1b6a315ca7bac3cb780 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +7d7919358e88fcc672b061be8c2316c3a604c7074200515d7104166ed611f7f9 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +6aff211689e30889cfe90b0b2a76b6f5a7b9e6e0bb28d6a66fd5ba35d36dc78a 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz +7411e47939783708381017a90944a69641ac84d43f74fb6e2d52576c599a2717 20260325/cpython-3.13.12+20260325-x86_64-apple-darwin-install_only.tar.gz +088754e90ff22962a4ab6f7cb6bdabe5d9e7618266595df2cf7b211766e15132 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +5b4093f92d9bffcb0d92aea050f3d77d5a4fc8e918b31cea000ee4b3ca751f1d 20260325/cpython-3.13.12+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +6070796c894ef0a25b5a944c8c0327e155df534302e1612a5ddd57d177ddadf7 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +b2e9400731c7f18069ec2804ba87a404385fe440f93b7dcb59004b9f56651202 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +21f297bc1e0503fa077364417e2213c60951d94fd65d837ae6d9d9201ae27483 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz +80c996c23aab828134821f078a8a77a6f33f3f2c14000f071718c540e20c64d4 20260325/cpython-3.14.3+20260325-aarch64-apple-darwin-install_only.tar.gz +d0e355df7362d12542108f78b3f8085b21e6824420769117c262ac86569bb2a7 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +b35fe7c2fe169574f382cef125e95cbd904ddcb98fc337167356371b6d2e8c60 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-install_only.tar.gz +112cf42bdf4d04f69ff4f9bf18c8ce45f494bac1645310bfdeff6f2ffb30dd9a 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +6faf5478f910741c477830f5fd842011208af0f9678faf77106c9421b325bfc1 20260325/cpython-3.14.3+20260325-aarch64-unknown-linux-gnu-install_only.tar.gz +9d7e5ba8020fd942a89a57179d9015eb0237c2d95cdbf8378639723663f11706 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +5eafe32e12f33f98c40de920482b013170dcf97d8c7f5dc780271ccf4cded76a 20260325/cpython-3.14.3+20260325-ppc64le-unknown-linux-gnu-install_only.tar.gz +32955ad52ec7931e76f4509134a2ba5a6ba6ea0cd55e05217c1ccca3967c4a5c 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +481d3faef258964e57b7102c63de12b2bb388c7ed07cfe456f33e63b4e061202 20260325/cpython-3.14.3+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz +7a1d36a1567cd747411c9c2bc7e2b5c1ac277ea7c734f74b158b94101fd5ea43 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz +3788781d0f9704f91ab5f7ad2a040d26b0f9b6aba0a2535db21755aebb69e620 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-freethreaded-install_only.tar.gz +847a49fea36c066f8df7a57cd8c4c02d17667e25d30b7930e8f8ba15e72d7efc 20260325/cpython-3.14.3+20260325-x86_64-apple-darwin-install_only.tar.gz +99dd7e425b3dac23e03f37787d77ee0af531e96b1c748275185342bc6642eb6b 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +8b4e1329c4901ce2c0f1c20ac5d2ffa62fc13f12e26b5d1e5a1000f910f980d4 20260325/cpython-3.14.3+20260325-x86_64-pc-windows-msvc-install_only.tar.gz +20d3bcd7f175e09fa08f4cb3039e5f90fe7e4ce2476534e83f5aa21eb0d7cee9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +18270c5a7b1a572599df5e68b497ba5254811dac43ba6f542245807d821fcb44 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz +726a28734d2878a637b0d16ce07ce24c7d6ca1043d8e6f4a23b1b0a3478eedb9 20260325/cpython-3.14.3+20260325-x86_64-unknown-linux-musl-install_only.tar.gz +f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz +64932c8e8bbdf9d6b66ee85934f6f8ad1d18218b51a87ea06cefd3b84554a3e4 20260414/cpython-3.10.20+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +76b48eb26ef274045772186e63431419294c41baf6d5a372b722d4c9e711082e 20260414/cpython-3.10.20+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +76e1ec72717d17493976fc176ec661f02412666d4f19e50908d8e4303c0511d5 20260414/cpython-3.10.20+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +2edf241199d11a3ef79a312737c1bcdb86908352c585ca14b667539080630e85 20260414/cpython-3.10.20+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +95a2d794b8981723095190fa94b574ceb4272bb49d83b9e418bb90341e304d09 20260414/cpython-3.10.20+20260414-x86_64-apple-darwin-install_only.tar.gz +0d828683d30185ab9f1110ad2194ef384cef0533b8e0da7e03ce837548841788 20260414/cpython-3.10.20+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +303047011b2c9f58504a930fc974d84547477cf69a3f2962f25552e2395c13af 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +84eb198d318f8b1b8bf59eef5d30d742e13afd97c213fa229578f8fdab0c406f 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb 20260414/cpython-3.11.15+20260414-aarch64-apple-darwin-install_only.tar.gz +a882abe4876985c9dc3d433420548506fb0cc9bb9d9fe336a2d3aaf28922aa45 20260414/cpython-3.11.15+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +77836944ae15b74e0b25bdc68a4703a340f2ccb684effc0f45fbd7910e1a1f39 20260414/cpython-3.11.15+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +30a2107f000dbe304820627cbe2cc257027c20f3241d96e6c7df796b69ac2062 20260414/cpython-3.11.15+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +373b98fbf2d04099139a2f6be57593714382ed790be7e7419e358830c23ddd0f 20260414/cpython-3.11.15+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz +7838efa839158c80568de35ac78d438f564f4c32272a2fe7d9e14a9b351d1a62 20260414/cpython-3.11.15+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +317055d80e553764feeaef432d833dd8385c14b83465a8b3fa7c2b7819cba681 20260414/cpython-3.11.15+20260414-x86_64-apple-darwin-install_only.tar.gz +8e69ecf1d9fc194e029aafa608d483bf24ccaa8f56d456d7009f20462d62ad23 20260414/cpython-3.11.15+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +8966b2bcd9fa03ba22c080ad15a86bc12e41a00122b16f4b3740e302261124d9 20260414/cpython-3.12.13+20260414-aarch64-apple-darwin-install_only.tar.gz +f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +355d981eafb9b2870af79ddc106ced7266b6f6d2101d8fbcb05620fa386642b9 20260414/cpython-3.12.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +4aef4cffe73c4a65ea486f14d684a9ad3f831a354174d163bb531b5baa70fc49 20260414/cpython-3.12.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz c2629d69324155132343913f064be93509bd162531e08a292e50c3973ec8b5db 20260414/cpython-3.12.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -c28beda791c499b16f06256339522f0002a3e9acba003e6b8374755d7be1def2 20251031/cpython-3.15.0a1+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -c2cb2a9b44285fbc13c3c9b7eea813db6ed8d94909406b059db7afd39b32e786 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -c2ce6601b2668c7bd1f799986af5ddfbff36e88795741864aba6e578cb02ed7f 20250610/cpython-3.13.4+20250610-aarch64-apple-darwin-install_only.tar.gz -c37a22fca8f57d4471e3708de6d13097668c5f160067f264bb2b18f524c890c8 20240415/cpython-3.12.3+20240415-x86_64-apple-darwin-install_only.tar.gz -c51b4845fda5421e044067c111192f645234081d704313f74ee77fa013a186ea 20250317/cpython-3.13.2+20250317-x86_64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -c5448863b64aacae62f3a213a6e6cf94ec63f96ee4d518491cd62fd3c81d952f 20251202/cpython-3.13.10+20251202-s390x-unknown-linux-gnu-install_only.tar.gz -c5803644970eee931bb0581b3b64511d1a8612f67bc98951a7f7ab5581a9ed04 20251031/cpython-3.14.0+20251031-s390x-unknown-linux-gnu-install_only.tar.gz +e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +801b03fbe004181d55a02ebd8b4e04d74973e70d716062aebe3b3cf32e9be297 20260414/cpython-3.12.13+20260414-x86_64-apple-darwin-install_only.tar.gz c5a9e011e284c49c48106ca177342f3e3f64e95b4c6652d4a382cc7c9bb1cc46 20260414/cpython-3.12.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -c5bcaac91bc80bfc29cf510669ecad12d506035ecb3ad85ef213416d54aecd79 20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -c5d5b89aab7de683e465e36de2477a131435076badda775ef6e9ea21109c1c32 20251202/cpython-3.14.1+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -c5dcf08b8077e617d949bda23027c49712f583120b3ed744f9b143da1d580572 20240415/cpython-3.12.3+20240415-ppc64le-unknown-linux-gnu-install_only.tar.gz -c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz -c68280591cda1c9515a04809fa6926020177e8e5892300206e0496ea1d10290e 20251202/cpython-3.13.10+20251202-aarch64-unknown-linux-gnu-install_only.tar.gz -c6c1aae3809ef585271f6f1bb3643a2c6e0c82b811b93284c6218b31f0b931d7 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz -c7573fdb00239f86b22ea0e8e926ca881d24fde5e5890851339911d76110bc35 20230507/cpython-3.10.11+20230507-aarch64-unknown-linux-gnu-install_only.tar.gz -c7e0eb0ff5b36758b7a8cacd42eb223c056b9c4d36eded9bf5b9fe0c0b9aeb08 20250317/cpython-3.10.16+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -c98c9c977e6fa05c3813bd49f3553904d89d60fed27e2e36468da7afa1d6d5e2 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -ca92d3a68a39fa330498b09714733f347bead7313ba9d9b7fbed837aa4ba7796 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -caf5311f333eef082dd69a669ca65aceba09a08fc1e78aad602ad649106f294c 20251031/cpython-3.15.0a1+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -cb0e4ff781b856a47f0f461ceb41c78c7eeff65effd0957857ec4702ef1e1bd3 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -cb478a5a37eb93ce4d3c27ae64d211d6a5a42475ae53f666a8d1570e71fcf409 20251202/cpython-3.14.1+20251202-x86_64-pc-windows-msvc-install_only.tar.gz -cb6d2948384a857321f2aa40fa67744cd9676a330f08b6dad7070bda0b6120a4 20230726/cpython-3.11.4+20230726-aarch64-apple-darwin-install_only.tar.gz -cbdac9462bab9671c8e84650e425d3f43b775752a930a2ef954a0d457d5c00c3 20240726/cpython-3.11.9+20240726-aarch64-apple-darwin-install_only.tar.gz -ccc40e5af329ef2af81350db2a88bbd6c17b56676e82d62048c15d548401519e 20240415/cpython-3.12.3+20240415-aarch64-apple-darwin-install_only.tar.gz -cdb7141327bdc244715b25752593e2c9eeb3cc2764f37dfe81cfbc92db9d6d57 20251202/cpython-3.13.10+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst cdcf8724d46e4857f8db5ee9f4252dc2f5da34f7940294ec6b312389dd3f41e0 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -cdf1ba0789f529fa34bb5b5619c5da9757ac1067d6b8dd0ee8b78e50078fc561 20251202/cpython-3.14.1+20251202-aarch64-apple-darwin-install_only.tar.gz -ce674b55442b732973afb2932c281bb1ded4ad7e22bcf9b07071165770758c7e 20241206/cpython-3.12.8+20241206-aarch64-unknown-linux-gnu-install_only.tar.gz -cee576de4919cd422dbc31eb85d3c145ee82acec84f651daaf32dc669b5149c9 20251209/cpython-3.15.0a2+20251209-x86_64-apple-darwin-install_only.tar.gz -cfa08a4caf2df1b43551b843c052d6a8814e2ea0c97268b021f0423646c244c3 20251031/cpython-3.10.19+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -cff1b7e7cd26f2d47acac1ad6590e27d29829776f77e8afa067e9419f2f6ce77 20241016/cpython-3.13.0+20241016-x86_64-apple-darwin-install_only.tar.gz -cff398b3f520c442a1b085dd347126c10c1b03f01ccc0decd8c897a687e893f1 20251031/cpython-3.12.12+20251031-x86_64-pc-windows-msvc-install_only.tar.gz -d089bfd2c7b98a0942750a195e70d3172beda76d7747097b8afd87028b6e59b6 20250808/cpython-3.11.13+20250808-aarch64-apple-darwin-install_only.tar.gz -d0a2a6d3b1bb00dce2105377fda8aa79675d187f8d6d7010a42f651af25018dc 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-musl-install_only.tar.gz -d0e355df7362d12542108f78b3f8085b21e6824420769117c262ac86569bb2a7 20260325/cpython-3.14.3+20260325-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz d10e971238c130fdf25e577c6538a3effa5589d5fcf53665e3c711edd6a6ff2f 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz -d1356ccd279920edc31bf0350674d966beb9522f9503846ed7855dbb109ccc14 20251202/cpython-3.14.1+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d15361fd202dd74ae9c3eece1abdab7655f1eba90bf6255cad1d7c53d463ed4d 20250317/cpython-3.12.9+20250317-x86_64-pc-windows-msvc-install_only.tar.gz -d196347aeb701a53fe2bb2b095abec38d27d0fa0443f8a1c2023a1bed6e18cdf 20230116/cpython-3.10.9+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -d1b989e57a9ce29f6c945eeffe0e9750c222fdd09e99d2f8d6b0d8532a523053 20250610/cpython-3.13.4+20250610-riscv64-unknown-linux-gnu-install_only.tar.gz -d1d19fb01961ac6476712fdd6c5031f74c83666f6f11aa066207e9a158f7e3d8 20250610/cpython-3.13.4+20250610-s390x-unknown-linux-gnu-install_only.tar.gz -d23c93ea7502420c71e4acf02999c72ab80797d51843b1b6a315ca7bac3cb780 20260325/cpython-3.13.12+20260325-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -d265d8d1c51e25ed70279540223589f79cf99ad00b50d28b6150c2658c973885 20251202/cpython-3.13.10+20251202-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -d2774701d53e2ac06f8c8c8e52dfa4ff346890de9b417c9a7664195443a4c766 20251202/cpython-3.14.1+20251202-ppc64le-unknown-linux-gnu-install_only.tar.gz -d2c8b00044cd2e4c5fc7e697e63d5e481ed44b87c2def0beb42991d59f65d930 20260325/cpython-3.13.12+20260325-aarch64-pc-windows-msvc-install_only.tar.gz -d36fc77a8dd76155a7530f6235999a693b9e7c48aa11afeb5610a091cae5aa6f 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -d4ada974daadb08a0184c19232ee3b03b3137aa70609760e1a94aaf7b12989ef 20250808/cpython-3.10.18+20250808-s390x-unknown-linux-gnu-install_only.tar.gz -d52b03817bd245d28e0a8b2f715716cd0fcd112820ccff745636932c76afa20a 20221106/cpython-3.10.8+20221106-aarch64-apple-darwin-install_only.tar.gz -d55c2aeece827e6bec83fd18515ee281d9ea0efaa3e2d20130db8f1c7cbb71c6 20251031/cpython-3.15.0a1+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -d633d070780590aa03ac5575cd9d7b9e17682d80f14b400313c009c387cf706b 20250808/cpython-3.12.11+20250808-x86_64-unknown-linux-musl-install_only.tar.gz -d6d17b8ef28326552cdeb2a7541c8a0cb711b378df9b93ebdb461dca065edfea 20251209/cpython-3.14.2+20251209-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d6f489464045d6895ae68b0a04a9e16477e74fe3185a75f3a9a0af8ccd25eade 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -d706eae2f4d963187b7c866603aed75d7eb3ea59590b06fb34f5fd7d0fe8e432 20260325/cpython-3.14.3+20260325-s390x-unknown-linux-gnu-install_only.tar.gz -d8098c0c54546637e7516f93b13403b11f9db285def8d7abd825c31407a13d7e 20220502/cpython-3.10.4+20220502-aarch64-unknown-linux-gnu-install_only.tar.gz -d84a7d64c284be387386b9f5da273f6d05486eb6bd8f9e86e2575cb59604cb22 20250808/cpython-3.13.6+20250808-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -d8e62306be8f41c46bcd62ca68f91a1467f47adff632a35ff413dc1043ed56e8 20250808/cpython-3.11.13+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -d946d618f8bba8308b67e460a30612a71e2ccc309f85f6628aaae24e2b816981 20250808/cpython-3.11.13+20250808-x86_64-apple-darwin-install_only.tar.gz -d995d032ca702afd2fc3a689c1f84a6c64972ecd82bba76a61d525f08eb0e195 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -d9c7b430b25bd3837dbb03f945dbe6b7bc526c5940ca96f5db7cdc42f6b2b801 20251031/cpython-3.14.0+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -da50b87d1ec42b3cb577dfd22a3655e43a53150f4f98a4bfb40757c9d7839ab5 20230507/cpython-3.11.3+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz -da96fe2ba841640215788ddb9f151f03629360e37fcb94d4f76e5095b87df0d4 20250808/cpython-3.10.18+20250808-x86_64-apple-darwin-install_only.tar.gz -dab64b3580118ad2073babd7c29fd2053b616479df5c107d31fe2af1f45e948b 20230826/cpython-3.11.5+20230826-aarch64-apple-darwin-install_only.tar.gz -dac4a0a0a9b71f6b02a8b0886547fa22814474239bffb948e3e77185406ea136 20251209/cpython-3.13.11+20251209-x86_64-apple-darwin-install_only.tar.gz -db011f0cd29cab2291584958f4e2eb001b0e6051848d89b38a2dc23c5c54e512 20250317/cpython-3.13.2+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -dc3174666a30f4c38d04e79a80c3159b4b3aa69597c4676701c8386696811611 20240726/cpython-3.11.9+20240726-x86_64-apple-darwin-install_only.tar.gz -dc780fecd215d2cc9e573abf1e13a175fcfa8f6efd100ef888494a248a16cda8 20241205/cpython-3.13.1+20241205-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -dcc29b069d0588fbd4ea29c6df840c8d1207d2a3bce8cd5cd57d1b85373b6048 20251031/cpython-3.13.9+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -dcf844400dc2e7f5f3604e994532e4d49db45f4deefe9afdf6809ca1bc6532ee 20251209/cpython-3.15.0a2+20251209-x86_64-unknown-linux-musl-install_only.tar.gz +2662b1c3f6d5ed4d02d877c07f9384acc0d18b9046d54cd2853dad3ca172784f 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +c652dad552122cd2e76968ec41c803f8222038169b11310dba0c85928265f5c1 20260414/cpython-3.13.13+20260414-aarch64-apple-darwin-install_only.tar.gz +c6c1aae3809ef585271f6f1bb3643a2c6e0c82b811b93284c6218b31f0b931d7 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +586ba71c75f341e1d111399b7f719ae784dc11e8672e93e017388f28684226d0 20260414/cpython-3.13.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +46ac7e9476b938ef19f71029a77d28ed1e201335dd0aa0237fcfed2e5ce0ee61 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +6a65f68043d7fadcd580415493d2929d1fd686013f9ae44ddbd3a81307ab256d 20260414/cpython-3.13.13+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +abe26a6cab523a5d00d75f1353cbad9c5dc04262dcb0dc4a2b47d02384e2a7d7 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +aef73894107300264222b19e357baf5bad616b1c4bf5daa5c3b97cfee8f5ed7b 20260414/cpython-3.13.13+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +eea71fc3625fcc2408171b17fb97e0c6286ed60ed225ca7fd6e2fc5d9cc21dce 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz dd8b6161c4af3c2f5f29b3535decdcf146ce90d7a062687c9e5229b4151198b0 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -ddb10b645de2b1f6f2832a80b115a9cd34a4a760249983027efe46618a8efc48 20251202/cpython-3.14.1+20251202-aarch64-pc-windows-msvc-freethreaded+pgo-full.tar.zst -de205896b070e6f5259ac0f2b3379eead875ea84e6a6ef533b89886fcbb46a4c 20241016/cpython-3.10.15+20241016-s390x-unknown-linux-gnu-install_only.tar.gz -de4bc878a8666c734f983db971610980870148f333bda8b0c34abfaeae88d7ec 20240726/cpython-3.10.14+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -debf15783bdcb5530504f533d33fda75a7b905cec5361ae8f33da5ba6599f8b4 20230116/cpython-3.11.1+20230116-aarch64-unknown-linux-gnu-install_only.tar.gz -df0db070f1eb73ab4e371eea32213ddb3500737ea5560a6f0ffd65c82af64ddc 20251031/cpython-3.10.19+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -df7b92ed9cec96b3bb658fb586be947722ecd8e420fb23cee13d2e90abcfcf25 20230726/cpython-3.11.4+20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz -e03e62dbe95afa2f56b7344ff3bd061b180a0b690ff77f9a1d7e6601935e05ca 20250317/cpython-3.10.16+20250317-x86_64-apple-darwin-install_only.tar.gz -e0c932709dafb05f00e528a7560ef8ee559ac82b75faca60dd1245bca1c1553f 20250808/cpython-3.12.11+20250808-x86_64-apple-darwin-install_only.tar.gz -e133dd6fc6a2d0033e2658637cc22e9c95f9d7073b80115037ee1f16417a54ac 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -e16ca51f018e99a609faf953bd3a3aea31f45ee84262d1a517fb3abd98f1f4af 20251031/cpython-3.14.0+20251031-ppc64le-unknown-linux-gnu-install_only.tar.gz -e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -e26247302bc8e9083a43ce9e8dd94905b40d464745b1603041f7bc9a93c65d05 20230726/cpython-3.11.4+20230726-x86_64-unknown-linux-gnu-install_only.tar.gz -e2bf5fa6a3ef443ade362e08b0a19bbc172f7bfe34dabe933ccaad31d53af5da 20251031/cpython-3.13.9+20251031-x86_64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -e39127fbe8d2ae7d86099f18b4da0918f9b60ce73ed491774d6dcfaa42b5c9ae 20251202/cpython-3.13.10+20251202-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e3c4aa607717b23903ca2650d5c3ee24f89b97543e2db2b0f463bddc7a9e92f3 20241206/cpython-3.12.8+20241206-aarch64-apple-darwin-install_only.tar.gz -e477f0749161f9aa7887964f089d9460a539f6b4a8fdab5166f898210e1a87a4 20230726/cpython-3.11.4+20230726-s390x-unknown-linux-gnu-install_only.tar.gz -e48952619796c66ec9719867b87be97edca791c2ef7fbf87d42c417c3331609e 20241016/cpython-3.10.15+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -e48c13c59cc3c01b79f63c8bccec27d2db6e97f64213b8731e2077b6ed8ed52c 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -e51a5293f214053ddb4645b2c9f84542e2ef86870b8655704367bd4b29d39fe9 20231002/cpython-3.12.0+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -e52550379e7c4ac27a87de832d172658bc04150e4e27d4e858e6d8cbb96fd709 20240224/cpython-3.12.2+20240224-aarch64-unknown-linux-gnu-install_only.tar.gz -e538475ee249eacf63bfdae0e70af73e9c47360e6dd3d6825e7a35107e177de5 20251209/cpython-3.15.0a2+20251209-x86_64-pc-windows-msvc-install_only.tar.gz -e5baafd64180f45165d2751b25d1bcc89254eefc7926f3ab341fc61b541d7606 20260414/cpython-3.12.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +4d205af9654e1f33cefd23ff798af470e565f3ac0eba18d2f98f18a2abd07166 20260414/cpython-3.13.13+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +27edbaad8f0c1a8814647d24df3f87eb13c89bbc2cb90e2fc23d8fa48dd64b15 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +540337412d2c4220e99280f741dbf45c1e3da3a39edaaab20c6ba1d53e1692ef 20260414/cpython-3.13.13+20260414-x86_64-apple-darwin-install_only.tar.gz +002c07103bfbe1b889f41eb1b9fade81651a21aed35a3512e2a916c5d7903cfe 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +a183ec7a10c38ab8c3f19968614f1e69ec697199e94525583662dfbc22b70d9a 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz e5ec3b2c5693215d153c434ac018e75511b2c4f96d2bce30468a477cb3a89d5e 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -e62f3bb3e66dac6c459690f9e9cd8cc2f6fe1dcf8bfed452af4c3df24cd7874f 20251209/cpython-3.14.2+20251209-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e69b66e53e926460df044f44846eef3fea642f630e829719e1a4112fc370dc56 20240726/cpython-3.11.9+20240726-s390x-unknown-linux-gnu-install_only.tar.gz -e76fcaf1bf80a615520dbe7f85ca0bb557fad96d132d836b0ac721e7cc1e2a37 20250808/cpython-3.13.6+20250808-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -e7cf7bc717082bb38f5ca75988ecd8e5dbc1b0535192129371e30235d29d67b5 20260325/cpython-3.13.12+20260325-aarch64-apple-darwin-freethreaded-install_only.tar.gz -e8378c0162b2e0e4cc1f62b29443a3305d116d09583304dbb0149fecaff6347b 20241016/cpython-3.13.0+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz +24ac6bf80dd2991c8be348f777c96c6eb69b71e78d8fa28c09beb3ddca015a47 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +a4bfd77675740a0362c137b094f3cd9995775e8e6c0a7874a095dd055fd1ea99 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +8b7865e511b17093e090449bf71eb52933c17d45ad5257ddeacaffbb2c7239df 20260414/cpython-3.14.4+20260414-aarch64-apple-darwin-install_only.tar.gz +0458cb9885c30df690cdf304a16ec335cbc7344792ef0e8a904614b24a61316d 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +82613380d582d806e562d7701496c34c87753ab13c37aa0afe2039003651f389 20260414/cpython-3.14.4+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +6d84fb153ccb5cb650652aadc490d99881a8d9b68cf273d44cb553e8cd087734 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +5c8db1c21023316adad827a46d917bbbd6a85ae4e39bc3a58febda712c2f963d 20260414/cpython-3.14.4+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +b5e025e340d0faa1772ef234e320401b0aa5cf6c9d16ed63a8c44be7c531bc58 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +055977a09de092744bbb22db64144e6afef8592eaac5e2bce4cca33f2592281a 20260414/cpython-3.14.4+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +4373553133eb4712bc10f720da29e091a23153f587fdb2c38f1fb105e70db53a 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz e959df167c502fb0bbcacc31a997e25c6b0ff6b5e496321b691955aa702d0c09 20260414/cpython-3.14.4+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -e97ab0fdf443b302c56a52b4fd08f513bf3be66aa47263f0f9df3c6e60e05f2e 20250317/cpython-3.12.9+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -e99f8457d9c79592c036489c5cfa78df76e4762d170665e499833e045d82608f 20250317/cpython-3.10.16+20250317-aarch64-apple-darwin-install_only.tar.gz -ea1e678e6e82301bb32bf3917732125949b6e46d541504465972024a3f165343 20251209/cpython-3.13.11+20251209-aarch64-unknown-linux-gnu-install_only.tar.gz -eae1272a72ccce601590a10a9ca2a58199b5fcdf022aa603a527e3e2a04de9bc 20251031/cpython-3.13.9+20251031-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -eb2b31f8e50309aae493c6a359c32b723a676f07c641f5e8fe4b6aa4dbb50946 20240224/cpython-3.11.8+20240224-ppc64le-unknown-linux-gnu-install_only.tar.gz -eb58581f85fde83d1f3e8e1f8c6f5a15c7ae4fdbe3b1d1083931f9167fdd8dbc 20241016/cpython-3.10.15+20241016-aarch64-unknown-linux-gnu-install_only.tar.gz -ebb1051ca2822b9803f46a5f10b6d51d153189ef1b1f1e142f733c0cbeaf86eb 20260325/cpython-3.13.12+20260325-x86_64-unknown-linux-gnu-install_only.tar.gz -ebe949ada9293581c17d9bcdaa8f645f67d95f73eac65def760a71ef9dd6600d 20250317/cpython-3.10.16+20250317-riscv64-unknown-linux-gnu-install_only.tar.gz -ec3b16ea8a97e3138acec72bc5ff35949950c62c8994a8ec8e213fd93f0e806b 20250317/cpython-3.13.2+20250317-s390x-unknown-linux-gnu-install_only.tar.gz -ec411b4a2d167c3be0a9aeb3905e045d62c8e3c3db0caeade5d47d5f60b98dd0 20251202/cpython-3.13.10+20251202-riscv64-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ec8126de97945e629cca9aedc80a29c4ae2992c9d69f2655e27ae73906ba187d 20240415/cpython-3.12.3+20240415-aarch64-unknown-linux-gnu-install_only.tar.gz -eca96158c1568dedd9a0b3425375637a83764d1fa74446438293089a8bfac1f8 20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-install_only.tar.gz -ecd6b0285e5eef94deb784b588b4b425a15a43ae671bf206556659dc141a9825 20240224/cpython-3.12.2+20240224-s390x-unknown-linux-gnu-install_only.tar.gz -ed3c6118d1d12603309c930e93421ac7a30a69045ffd43006f63ecf71d72c317 20241205/cpython-3.13.1+20241205-s390x-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed519c47d9620eb916a6f95ec2875396e7b1a9ab993ee40b2f31b837733f318c 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-musl-install_only.tar.gz -ed66ae213a62b286b9b7338b816ccd2815f5248b7a28a185dc8159fe004149ae 20250610/cpython-3.13.4+20250610-ppc64le-unknown-linux-gnu-freethreaded+lto-full.tar.zst -ed963aee33d29ad8abfbb5fe63e42f57a2638a4a11a88e11d8bb66e61f20a6e5 20250808/cpython-3.11.13+20250808-x86_64-pc-windows-msvc-install_only.tar.gz -edc08979cb0666a597466176511529c049a6f0bba8adf70df441708f766de5bf 20230116/cpython-3.11.1+20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz -ee0cb26453d6e025d36502d765c1639c34830355e46ab3ad31c0360bc4cd9b79 20260414/cpython-3.13.13+20260414-x86_64-pc-windows-msvc-install_only.tar.gz -ee37a7eae6e80148c7e3abc56e48a397c1664f044920463ad0df0fc706eacea8 20231002/cpython-3.11.6+20231002-x86_64-unknown-linux-gnu-install_only.tar.gz -ee4526e84b5ce5b11141c50060b385320f2773616249a741f90c96d460ce8e8f 20250317/cpython-3.13.2+20250317-x86_64-apple-darwin-install_only.tar.gz -eea71fc3625fcc2408171b17fb97e0c6286ed60ed225ca7fd6e2fc5d9cc21dce 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz -ef382fb88cbb41a3b0801690bd716b8a1aec07a6c6471010bcc6bd14cd575226 20250317/cpython-3.12.9+20250317-x86_64-unknown-linux-gnu-install_only.tar.gz -ef7de3b715d519e246d98ff7856247f7f7b357068705f09c6f300b7e7b76c701 20250808/cpython-3.10.18+20250808-aarch64-unknown-linux-gnu-install_only.tar.gz -efaf66acdb9a4eb33d57702607d2e667b1a319d58c167a43c96896b97419b8b7 20220802/cpython-3.10.6+20220802-aarch64-apple-darwin-install_only.tar.gz -efc2e71c0e05bc5bedb7a846e05f28dd26491b1744ded35ed82f8b49ccfa684b 20241016/cpython-3.13.0+20241016-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -f05531bff16fa77b53be0776587b97b466070e768e6d5920894de988bdcd547a 20241016/cpython-3.12.7+20241016-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f10e34aaa856c1b8a69c2ea4a9a6723d520443d1a957bf66dc55491334ca0c1e 20251031/cpython-3.13.9+20251031-s390x-unknown-linux-gnu-install_only.tar.gz -f2143304012e021a603bf1807bf3e4ce163832e43ab9a9829e53cb136497f207 20250808/cpython-3.13.6+20250808-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst -f25ce050e1d370f9c05c9623b769ffa4b269a6ae17e611b435fd2b8b09972a88 20251202/cpython-3.14.1+20251202-x86_64-apple-darwin-install_only.tar.gz -f2711eaffff3477826a401d09a013c6802f11c04c63ab3686aa72664f1216a05 20220502/cpython-3.10.4+20220502-x86_64-apple-darwin-install_only.tar.gz -f2b6d2f77118f06dd2ca04dae1175e44aaa5077a5ed8ddc63333c15347182bfe 20221106/cpython-3.10.8+20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f383ef50d1da6ca511212e5ae601923b56636b87351fd5fc847e0ea0a19fa9b3 20251031/cpython-3.14.0+20251031-aarch64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f47c09f8e7f2fb0bc4afe52422705af4016c8d3ec1cf004b67bb56a86caa62cb 20260414/cpython-3.13.13+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz -f4acbef0fbfaf7ab31ac63986da1d93dfa1c5cb797de1dcdc1a988aa18670120 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-freethreaded+pgo+lto-full.tar.zst -f51f0493a5f979ff0b8d8c598a8d74f2a4d86a190c2729c85e0af65c36a9cbbe 20241205/cpython-3.13.1+20241205-x86_64-pc-windows-msvc-shared-install_only.tar.gz +a6797ad05c7d7f74a2cea28bf012f9199f4d6c1ed6d09f7adfeb9b3c538c6258 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz +35f70ad05b2c4045889ee0c3d93f61b012654c1d91e10e671f0e5b4d4a6c6637 20260414/cpython-3.14.4+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +1c366767d203b722efbd5b3796d16a08436e8a328afd31e551289efba9bf56d1 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +9ecb2b942e6698c04af10a63a3d73c0b2e8d8e11ce44933fbffe8651bef4577d 20260414/cpython-3.14.4+20260414-x86_64-apple-darwin-install_only.tar.gz +5ccaecdb899431f393209647182def14b36d7398bd59be4fa73dd79b48b3f290 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +9647bb46d3c236e34c1c11bbb7113444d9711811f0d11c39956168807a955b1a 20260414/cpython-3.14.4+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +c1a845a79da56265dc49628bc3b9e20d34f04674fd2d637ee40cbe259d2b1b95 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +e17275eaf95ceb5877aa6816e209b7733f41fee401d39c3921b88fb73fc4a4ba 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +12687a989a2384665577e1ef9864f33d4c074a1e69b38a8bac8d656531aefa3e 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-musl-install_only.tar.gz +5791a69a73b76b908f5bdf96da1928de8db696ab198f4ced04b77b22fe712ce0 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-freethreaded-install_only.tar.gz +780d46b3da0e58e15c620d9e7dfd29b54c8359c195f625858f85df9c2c7ecc32 20260414/cpython-3.15.0a8+20260414-aarch64-apple-darwin-install_only.tar.gz +95ddfe7dd52185f7e5d55524eafb48e54d1eab0b0cf013966f144a411f3ddd0f 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-freethreaded-install_only.tar.gz +10fb470e900e65df4e37f8deaf1726397c914861ffc37b43ae3743a7eee88377 20260414/cpython-3.15.0a8+20260414-aarch64-pc-windows-msvc-install_only.tar.gz +b72908bce86036a0a1ba98ca9917ea0b99dc1e6c5d715d3d463c4f330880c09b 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-freethreaded-install_only.tar.gz +8f6dda4d8ff44976f1aa6a94674a09a503dc50b015297e1b62c8cdc591c90f4f 20260414/cpython-3.15.0a8+20260414-aarch64-unknown-linux-gnu-install_only.tar.gz +b3c8210674140a4c5beefa2d4afd752979222638a0fb68de672c60300b4a6642 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-freethreaded-install_only.tar.gz +09f076c63fadbf675143674aa3b23229482b9a44840b8b1808a216def2a9af15 20260414/cpython-3.15.0a8+20260414-ppc64le-unknown-linux-gnu-install_only.tar.gz +1a4984207974563c6aea7dc934579d058dbac7436642081113e86011114b9fdf 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-freethreaded-install_only.tar.gz +9d41ce752e8b731872f0f5c9c48199e63c789d24ce3ae9e91d6c8008f36e7c51 20260414/cpython-3.15.0a8+20260414-riscv64-unknown-linux-gnu-install_only.tar.gz f525a6244d73450e0c0a7ba125b5934894ab25ee171f7099c239d4eb7ce2f5f2 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-freethreaded-install_only.tar.gz -f55326c894fde76fc0faffe95d2bce60be533c88a8c44c1b88bbbc17bf6a5cd5 20260414/cpython-3.12.13+20260414-aarch64-pc-windows-msvc-install_only.tar.gz -f580efed11cc54e1a221c052e8bc88bfbc12844d3ca8949da828351a1232386e 20250808/cpython-3.10.18+20250808-ppc64le-unknown-linux-gnu-install_only.tar.gz -f64776f455a44c24d50f947c813738cfb7b9ac43732c44891bc831fa7940a33c 20241016/cpython-3.10.15+20241016-aarch64-apple-darwin-install_only.tar.gz -f694be48bdfec1dace6d69a19906b6083f4dd7c7c61f1138ba520e433e5598f8 20240726/cpython-3.11.9+20240726-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f6e955dc9ddfcad74e77abe6f439dac48ebca14b101ed7c85a5bf3206ed2c53d 20240726/cpython-3.11.9+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -f6f871e53a7b1469c13f9bd7920ad98c4589e549acad8e5a1e14760fff3dd5c9 20220502/cpython-3.10.4+20220502-x86_64-unknown-linux-gnu-install_only.tar.gz -f710b8d60621308149c100d5175fec39274ed0b9c99645484fd93d1716ef4310 20230507/cpython-3.11.3+20230507-x86_64-apple-darwin-install_only.tar.gz -f76cc83c7db16cfc8794bf6e44d834152b57d8bab4e04e823cbc59ed23ec22f8 20260414/cpython-3.10.20+20260414-aarch64-apple-darwin-install_only.tar.gz -f77a8a8aa77f3f943126fa9215a25309da4bf20398fc8f4b4eec54b5fc7570ef 20251031/cpython-3.10.19+20251031-aarch64-unknown-linux-gnu-install_only.tar.gz -f7cfa4ad072feb4578c8afca5ba9a54ad591d665a441dd0d63aa366edbe19279 20240415/cpython-3.12.3+20240415-x86_64-pc-windows-msvc-shared-install_only.tar.gz -f844e8c8b6847628b472f7e97d8893a4e93acd5382a902b465776063668c4d64 20250808/cpython-3.13.6+20250808-x86_64-unknown-linux-gnu-install_only.tar.gz -f8ed75aa6cc2011a046be00b629c3c8295267f34280324feaff34c73e7afce39 20250808/cpython-3.13.6+20250808-riscv64-unknown-linux-gnu-install_only.tar.gz -f93f8375ca6ac0a35d58ff007043cbd3a88d9609113f1cb59cf7c8d215f064af 20240107/cpython-3.12.1+20240107-aarch64-apple-darwin-install_only.tar.gz -f9f19823dba3209cedc4647b00f46ed0177242917db20fb7fb539970e384531c 20231002/cpython-3.11.6+20231002-s390x-unknown-linux-gnu-install_only.tar.gz -faa44274a331eb39786362818b21b3a4e74514e8805000b20b0e55c590cecb94 20250317/cpython-3.13.2+20250317-aarch64-apple-darwin-install_only.tar.gz -facfaa1fbc8653f95057f3c4a0f8aa833dab0e0b316e24ee8686bc761d4b4f8d 20231002/cpython-3.12.0+20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz -fb1caac917d7b6497bb6f5950da5f1e48d05c43a498948dd97f85760c4382d9f 20251031/cpython-3.10.19+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -fbed6f7694b2faae5d7c401a856219c945397f772eea5ca50c6eb825cbc9d1e1 20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz -fc4b7f27c4e84c78f3c8e6c7f8e4023e4638d11f1b36b6b5ce457b1926cebb53 20241016/cpython-3.13.0+20241016-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc4f3c9ef9bfac2ed0282126ff376e544697ad04a5408d6429d46899d7d3bf21 20240726/cpython-3.11.9+20240726-ppc64le-unknown-linux-gnu-install_only.tar.gz -fc7e1fb553c47b831ed7fa529575145207f000f967513f7b9ea809cce006ed79 20260325/cpython-3.13.12+20260325-riscv64-unknown-linux-gnu-install_only.tar.gz -fca340d8fb7a05cd90e216ce601b25d492ed8c1a3b6a6d77703e0f15ab3711a7 20251031/cpython-3.14.0+20251031-riscv64-unknown-linux-gnu-install_only.tar.gz -fd5a9e0f41959d0341246d3643f2b8794f638adc0cec8dd5e1b6465198eae08a 20240107/cpython-3.12.1+20240107-x86_64-pc-windows-msvc-shared-install_only.tar.gz -fdfa86c2746d2ae700042c461846e6c37f70c249925b58de8cd02eb8d1423d4e 20241205/cpython-3.13.1+20241205-aarch64-unknown-linux-gnu-install_only.tar.gz -fe459da39874443579d6fe88c68777c6d3e331038e1fb92a0451879fb6beb16d 20230826/cpython-3.11.5+20230826-s390x-unknown-linux-gnu-install_only.tar.gz -fee80e221663eca5174bd794cb5047e40d3910dbeadcdf1f09d405a4c1c15fe4 20230726/cpython-3.10.12+20230726-aarch64-unknown-linux-gnu-install_only.tar.gz -ffb6af51fbfabfc6fbc4e7379bdec70c2f51e972b1d2f45c053493b9da3a1bbe 20251209/cpython-3.13.11+20251209-s390x-unknown-linux-gnu-install_only.tar.gz +1de2593c40cce2d8ea883f8c8580223bfa1478cbd9d0191ba3640aed083c2202 20260414/cpython-3.15.0a8+20260414-s390x-unknown-linux-gnu-install_only.tar.gz +3dcee23c21e4a3518947e988e115c1d824f07540f4326d93d4ea2028918e0193 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-freethreaded-install_only.tar.gz +a7744d34148969a2ec010da6f0a46ddeceda7c02e5cdfa2b4e1811487381491a 20260414/cpython-3.15.0a8+20260414-x86_64-apple-darwin-install_only.tar.gz +6e69670347e3a6ac1d0cd89b9506d825bd2f2690cc51ead5dec61aec6857d08d 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-freethreaded-install_only.tar.gz +3ded476f676fdf260d56a5e49aa083d5ffd218fc3390e4480ed42bee1acfb3fb 20260414/cpython-3.15.0a8+20260414-x86_64-pc-windows-msvc-install_only.tar.gz +2d06d97e230b7f74de0fe4f661918a0ee827b08127b9372e0890e167de52a8c6 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-freethreaded-install_only.tar.gz +c93f4b15287ac48d7e3a475b245cb59cc51079382747e3e6213d6406c158969d 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +0568e953f837f09689eb4dd1af0043ba5e2ebae0c6395b8b9f8344a53b1f1da5 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-freethreaded-install_only.tar.gz +9fbd6f243a424d4ae973e72aa0075122a7cfe05ac8f6cfde986e7b00d0dbc0bf 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-musl-install_only.tar.gz """ diff --git a/python/private/tools/sort_manifest.py b/python/private/tools/sort_manifest.py new file mode 100755 index 0000000000..41bf4181e5 --- /dev/null +++ b/python/private/tools/sort_manifest.py @@ -0,0 +1,123 @@ +#!/usr/bin/env python3 + +"""Sorts python-build-standalone manifest files by filename.""" + +import argparse +import sys +from pathlib import Path + + +def sort_manifest(manifest_path: Path) -> bool: + """Sorts a manifest file in place by filename. Returns True if modified.""" + # Read using pathlib.Path + lines = manifest_path.read_text(encoding="utf-8").splitlines(keepends=True) + + if not lines: + return False + + first_entry_idx = -1 + last_entry_idx = -1 + for idx, line in enumerate(lines): + stripped = line.strip() + if stripped and not stripped.startswith("#"): + if first_entry_idx == -1: + first_entry_idx = idx + last_entry_idx = idx + + if first_entry_idx == -1: + return False + + # Extract top-level comments (comments at the top followed by a blank newline) + top_level_comments = [] + pre_entry_lines = lines[:first_entry_idx] + + last_blank_idx = -1 + for idx, line in enumerate(pre_entry_lines): + if not line.strip(): + last_blank_idx = idx + + if last_blank_idx != -1: + top_level_comments = pre_entry_lines[: last_blank_idx + 1] + remaining_pre = pre_entry_lines[last_blank_idx + 1 :] + else: + remaining_pre = pre_entry_lines + + # Extract bottom-level comments + bottom_level_comments = lines[last_entry_idx + 1 :] + + # Group middle lines into actual catalog entries with their attached comments/blank lines + middle_lines = remaining_pre + lines[first_entry_idx : last_entry_idx + 1] + + entries = [] + current_attached = [] + + for line in middle_lines: + stripped = line.strip() + if stripped and not stripped.startswith("#"): + parts = [p for p in stripped.split(" ") if p] + if len(parts) == 2: + sha256, filename = parts[0], parts[1] + normalized_line = f"{sha256} {filename}\n" + else: + filename = parts[0] if parts else "" + normalized_line = line + + block = current_attached + [normalized_line] + entries.append((filename, block)) + current_attached = [] + else: + current_attached.append(line) + + if current_attached: + bottom_level_comments = current_attached + bottom_level_comments + + # Sort entries lexicographically by filename + entries.sort(key=lambda e: e[0]) + + new_lines = top_level_comments + for _, block in entries: + new_lines.extend(block) + new_lines.extend(bottom_level_comments) + + if new_lines == lines: + return False + + manifest_path.write_text("".join(new_lines), encoding="utf-8") + return True + + +def main(): + parser = argparse.ArgumentParser(description="Sort manifest files by filename.") + parser.add_argument( + "manifests", + nargs="*", + type=Path, + help="Path to manifest files to sort.", + ) + args = parser.parse_args() + + manifests = args.manifests + if not manifests: + repo_root = Path(__file__).resolve().parent.parent.parent.parent + default_manifest = repo_root / "python" / "private" / "runtimes_manifest.txt" + if default_manifest.exists(): + manifests = [default_manifest] + else: + print("No manifests provided.", file=sys.stderr) + sys.exit(1) + + changed = False + for m in manifests: + if m.exists(): + if sort_manifest(m): + print(f"Sorted {m}") + changed = True + else: + print(f"Warning: Manifest not found: {m}", file=sys.stderr) + + if changed: + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/python/private/tools/sync_runtimes_manifest_workspace.py b/python/private/tools/sync_runtimes_manifest_workspace.py new file mode 100755 index 0000000000..9493ca9a66 --- /dev/null +++ b/python/private/tools/sync_runtimes_manifest_workspace.py @@ -0,0 +1,80 @@ +#!/usr/bin/env python3 + +"""Synchronizes runtimes_manifest_workspace.bzl with runtimes_manifest.txt.""" + +import argparse +import sys +from pathlib import Path + + +def sync_workspace_manifest(txt_path: Path, bzl_path: Path) -> bool: + with open(txt_path, "r", encoding="utf-8") as f: + txt_content = f.read() + header = '''"""Manifest of runtimes for workspace mode builds. + +This is the workspace equivalent of runtimes_manifest.txt. It's a bzl file +to simplify loading of the data under workspace mode, which doesn't +support parsing a runtimes_manifest.txt file. + +NOTE: This file is automatically generated by sync_runtimes_manifest_workspace.py. +Do not edit directly! +""" + +MANIFEST_TEXT = """ +''' + + new_content = header + txt_content + '"""\n' + + if bzl_path.exists(): + with open(bzl_path, "r", encoding="utf-8") as f: + old_content = f.read() + else: + old_content = "" + + if new_content != old_content: + with open(bzl_path, "w", encoding="utf-8") as f: + f.write(new_content) + return True + + return False + + +def main(): + parser = argparse.ArgumentParser( + description="Sync runtimes workspace bzl file with runtimes manifest text file." + ) + parser.add_argument( + "txt_path", + nargs="?", + type=Path, + help="Path to runtimes_manifest.txt", + ) + parser.add_argument( + "bzl_path", + nargs="?", + type=Path, + help="Path to runtimes_manifest_workspace.bzl", + ) + args = parser.parse_args() + + txt_path = args.txt_path + bzl_path = args.bzl_path + + if not txt_path or not bzl_path: + repo_root = Path(__file__).resolve().parent.parent.parent.parent + txt_path = repo_root / "python" / "private" / "runtimes_manifest.txt" + bzl_path = repo_root / "python" / "private" / "runtimes_manifest_workspace.bzl" + + if not txt_path.exists(): + print(f"Error: Manifest not found: {txt_path}", file=sys.stderr) + sys.exit(1) + + if sync_workspace_manifest(txt_path, bzl_path): + print(f"Updated {bzl_path}") + if not args.bzl_path: + # Exit 1 for pre-commit mode (in-place modification) + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/python/versions.bzl b/python/versions.bzl index 08604c8500..b654f0a93f 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -15,7 +15,7 @@ """The Python versions we use for the toolchains. """ -load("//python/private:pbs_manifest.bzl", "parse_sha_manifest") +load("//python/private:pbs_manifest.bzl", "parse_runtime_manifest") load("//python/private:platform_info.bzl", "platform_info") ##load("@rules_python_internal//:manifest_tool_versions.bzl", "MANIFEST_ENTRIES") @@ -36,30 +36,6 @@ _GITHUB_PREFIX = "https://github.com/astral-sh/python-build-standalone/releases/ _LEGACY_GITHUB_PREFIX = "https://github.com/indygreg/python-build-standalone/releases/download" _ASTRAL_PREFIX = "https://releases.astral.sh/github/python-build-standalone/releases/download" -# When updating the versions and releases, run the following command to get -# the hashes: -# bazel run //python/private:print_toolchains_checksums --//python/config_settings:python_version={major}.{minor}.{patch} -# -# To print hashes for all of the specified versions, run: -# bazel run //python/private:print_toolchains_checksums --//python/config_settings:python_version="" -# -# Note, to users looking at how to specify their tool versions, coverage_tool version for each -# interpreter can be specified by: -# "3.8.10": { -# "url": "20210506/cpython-{python_version}-{platform}-pgo+lto-20210506T0943.tar.zst", -# "sha256": { -# "x86_64-apple-darwin": "8d06bec08db8cdd0f64f4f05ee892cf2fcbc58cfb1dd69da2caab78fac420238", -# "x86_64-unknown-linux-gnu": "aec8c4c53373b90be7e2131093caa26063be6d9d826f599c935c0e1042af3355", -# }, -# "coverage_tool": { -# "x86_64-apple-darwin": """, -# "x86_64-unknown-linux-gnu": """, -# }, -# "strip_prefix": "python", -# }, -# -# It is possible to provide lists in "url". It is also possible to provide patches or patch_strip. - # buildifier: disable=unsorted-dict-items MINOR_MAPPING = { "3.9": "3.9.25", @@ -344,7 +320,7 @@ def _manifest_entry_sort_key(entry): microarch_rank = 999 return (flavor_rank, microarch_rank) -def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE_URL): +def _tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE_URL): """Converts parsed manifest entries into the TOOL_VERSIONS dictionary format. Args: @@ -395,6 +371,4 @@ def tool_versions_from_manifest_entries(entries, base_url = DEFAULT_RELEASE_BASE return available_versions -MANIFEST_ENTRIES = parse_sha_manifest(MANIFEST_TEXT) - -TOOL_VERSIONS = tool_versions_from_manifest_entries(MANIFEST_ENTRIES) +TOOL_VERSIONS = _tool_versions_from_manifest_entries(parse_runtime_manifest(MANIFEST_TEXT)) diff --git a/sphinxdocs/.bazelrc b/sphinxdocs/.bazelrc index a6326e33e7..65c996c678 100644 --- a/sphinxdocs/.bazelrc +++ b/sphinxdocs/.bazelrc @@ -19,7 +19,6 @@ common --experimental_downloader_config=downloader_config.cfg common --http_timeout_scaling=10.0 common --experimental_repository_downloader_retries=10 - common --incompatible_python_disallow_native_rules common --incompatible_no_implicit_file_export diff --git a/sphinxdocs/downloader_config.cfg b/sphinxdocs/downloader_config.cfg index b2d0bb918b..3fa6264eda 100644 --- a/sphinxdocs/downloader_config.cfg +++ b/sphinxdocs/downloader_config.cfg @@ -19,5 +19,3 @@ rewrite ^github\.com/bazelbuild/rules_kotlin/(.*) mirror.bazel.build/github.com/ rewrite ^github\.com/bazelbuild/rules_shell/(.*) mirror.bazel.build/github.com/bazelbuild/rules_shell/$1 rewrite ^github\.com/bazelbuild/rules_java/(.*) mirror.bazel.build/github.com/bazelbuild/rules_java/$1 rewrite ^github\.com/bazelbuild/stardoc/(.*) mirror.bazel.build/github.com/bazelbuild/stardoc/$1 - - diff --git a/tests/python/python_tests.bzl b/tests/python/python_tests.bzl index cd7383942c..d8cf4915da 100644 --- a/tests/python/python_tests.bzl +++ b/tests/python/python_tests.bzl @@ -19,7 +19,6 @@ load("@rules_testing//lib:test_suite.bzl", "test_suite") load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility load("//python/private:python.bzl", "parse_modules") # buildifier: disable=bzl-visibility load("//python/private:repo_utils.bzl", "repo_utils") # buildifier: disable=bzl-visibility -load("//tests/support/mocks:mocks.bzl", "mocks") load("//tests/support/mocks:python_ext.bzl", "python_ext") _tests = [] @@ -36,7 +35,7 @@ def _rules_python_module(is_root = False): def _test_default_from_rules_python_when_rules_python_is_root(env): """Verify that rules_python (as root module) default is applied.""" py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( _rules_python_module(is_root = True), ), logger = repo_utils.logger(verbosity_level = 0, name = "python"), @@ -66,7 +65,7 @@ _tests.append(_test_default_from_rules_python_when_rules_python_is_root) def _test_default_from_rules_python_when_rules_python_is_not_root(env): """Verify that rules_python default applies when rules_python is not the root module.""" py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( _rules_python_module(), ), logger = repo_utils.logger(verbosity_level = 0, name = "python"), @@ -85,7 +84,7 @@ _tests.append(_test_default_from_rules_python_when_rules_python_is_not_root) def _test_default_with_patch_version(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( modules = [ python_ext.module( name = "alpha", @@ -111,7 +110,7 @@ _tests.append(_test_default_with_patch_version) def _test_toolchain_ordering(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -161,7 +160,7 @@ _tests.append(_test_toolchain_ordering) def _test_default_from_defaults(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_root_module", defaults = [python_ext.defaults(python_version = "3.11")], @@ -192,7 +191,7 @@ _tests.append(_test_default_from_defaults) def _test_default_from_defaults_env(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_root_module", defaults = [ @@ -229,7 +228,7 @@ _tests.append(_test_default_from_defaults_env) def _test_default_from_defaults_file(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_root_module", defaults = [ @@ -265,7 +264,7 @@ _tests.append(_test_default_from_defaults_file) def _test_default_from_single_toolchain(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_root_module", is_root = True, @@ -281,7 +280,7 @@ _tests.append(_test_default_from_single_toolchain) def _test_defaults_overrides_single_toolchain(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_root_module", defaults = [ @@ -301,7 +300,7 @@ _tests.append(_test_defaults_overrides_single_toolchain) def _test_defaults_overrides_toolchains_setting_is_default(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_root_module", defaults = [python_ext.defaults(python_version = "3.13")], @@ -324,7 +323,7 @@ _tests.append(_test_defaults_overrides_toolchains_setting_is_default) def _test_first_occurance_of_the_toolchain_wins(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( modules = [ python_ext.module( name = "my_module", @@ -380,7 +379,7 @@ _tests.append(_test_first_occurance_of_the_toolchain_wins) def _test_auth_overrides(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -422,7 +421,7 @@ _tests.append(_test_auth_overrides) def _test_add_target_settings(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -448,7 +447,7 @@ _tests.append(_test_add_target_settings) def _test_add_new_version(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -534,7 +533,7 @@ _tests.append(_test_add_new_version) def _test_register_all_versions(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -605,7 +604,7 @@ _tests.append(_test_register_all_versions) def _test_ignore_unsupported_versions(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -683,7 +682,7 @@ _tests.append(_test_ignore_unsupported_versions) def _test_add_patches(env): py = parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -762,7 +761,7 @@ _tests.append(_test_add_patches) def _test_fail_two_overrides(env): errors = [] parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -800,7 +799,7 @@ def _test_single_version_override_errors(env): ]: errors = [] parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, @@ -853,7 +852,7 @@ def _test_single_version_platform_override_errors(env): ]: errors = [] parse_modules( - module_ctx = mocks.mctx( + module_ctx = python_ext.mctx( python_ext.module( name = "my_module", is_root = True, diff --git a/tests/python_bzlmod_ext/BUILD.bazel b/tests/python_bzlmod_ext/BUILD.bazel index 0add4e7690..e266c01b9c 100644 --- a/tests/python_bzlmod_ext/BUILD.bazel +++ b/tests/python_bzlmod_ext/BUILD.bazel @@ -2,6 +2,6 @@ load(":test_helpers.bzl", "register_python_bzlmod_ext_tests") register_python_bzlmod_ext_tests( name = "python_bzlmod_ext_tests", - parse_sha_manifest_name = "parse_sha_manifest_tests", + parse_runtime_manifest_name = "parse_runtime_manifest_tests", runtime_manifests_name = "runtime_manifests_tests", ) diff --git a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl b/tests/python_bzlmod_ext/parse_runtime_manifest_tests.bzl similarity index 94% rename from tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl rename to tests/python_bzlmod_ext/parse_runtime_manifest_tests.bzl index 176054d34c..4493576147 100644 --- a/tests/python_bzlmod_ext/parse_sha_manifest_tests.bzl +++ b/tests/python_bzlmod_ext/parse_runtime_manifest_tests.bzl @@ -4,7 +4,7 @@ load("@bazel_skylib//lib:structs.bzl", "structs") load("@rules_testing//lib:analysis_test.bzl", "analysis_test") load("@rules_testing//lib:test_suite.bzl", "test_suite") load("@rules_testing//lib:util.bzl", rt_util = "util") -load("//python/private:pbs_manifest.bzl", "parse_filename", "parse_sha_manifest") # buildifier: disable=bzl-visibility +load("//python/private:pbs_manifest.bzl", "parse_filename", "parse_runtime_manifest") # buildifier: disable=bzl-visibility _tests = [] @@ -97,7 +97,7 @@ def _test_parse_filename_baseline_impl(env, target): _tests.append(_test_parse_filename_baseline) -def _test_parse_sha_manifest(name): +def _test_parse_runtime_manifest(name): """Sets up the manifest file parsing test. Args: @@ -110,10 +110,10 @@ def _test_parse_sha_manifest(name): analysis_test( name = name, target = name + "_subject", - impl = _test_parse_sha_manifest_impl, + impl = _test_parse_runtime_manifest_impl, ) -def _test_parse_sha_manifest_impl(env, target): +def _test_parse_runtime_manifest_impl(env, target): _ = target # @unused content = """ 8b14030dd3af9ea7f7c51b4c90feb04afd8a8f45435727e67b875270bd08f3bc cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz @@ -121,7 +121,7 @@ a57ffd435652092d16b30e783f9826c55e9c64b0f0a72cbae0a9f39e663137fb cpython-3 ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://example.com/cpython-3.10.20+20260414-x86_64_v2-unknown-linux-musl-lto-full.tar.zst 1111111111111111111111111111111111111111111111111111111111111111 cpython-3.13.13+20260414-aarch64-apple-darwin-freethreaded+pgo+lto-full.tar.zst """ - parsed = parse_sha_manifest(content) + parsed = parse_runtime_manifest(content) env.expect.that_collection(parsed).has_size(4) env.expect.that_dict(structs.to_dict(parsed[0])).contains_exactly({ @@ -169,9 +169,9 @@ ce18fdfd47c66830a40ea9b9e314a14b1636bbfd684501bc5ca1fc6d55a7933f https://exampl "vendor": "apple", }) -_tests.append(_test_parse_sha_manifest) +_tests.append(_test_parse_runtime_manifest) -def parse_sha_manifest_test_suite(name): +def parse_runtime_manifest_test_suite(name): """Defines the test suite for manifest parsing. Args: diff --git a/tests/python_bzlmod_ext/test_helpers.bzl b/tests/python_bzlmod_ext/test_helpers.bzl index f6c177650a..78ad57c110 100644 --- a/tests/python_bzlmod_ext/test_helpers.bzl +++ b/tests/python_bzlmod_ext/test_helpers.bzl @@ -15,23 +15,23 @@ """Helpers to conditionally register tests depending on Bzlmod enablement.""" load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility -load(":parse_sha_manifest_tests.bzl", "parse_sha_manifest_test_suite") +load(":parse_runtime_manifest_tests.bzl", "parse_runtime_manifest_test_suite") load(":runtime_manifests_tests.bzl", "runtime_manifests_test_suite") -def register_python_bzlmod_ext_tests(name, parse_sha_manifest_name, runtime_manifests_name): +def register_python_bzlmod_ext_tests(name, parse_runtime_manifest_name, runtime_manifests_name): """Registers the Bzlmod extension tests if Bzlmod is enabled, otherwise defines empty test_suites. Args: name: The name of the master test_suite target. - parse_sha_manifest_name: The name of the parse_sha_manifest test target. + parse_runtime_manifest_name: The name of the parse_runtime_manifest test target. runtime_manifests_name: The name of the runtime_manifests test target. """ if BZLMOD_ENABLED: - parse_sha_manifest_test_suite(name = parse_sha_manifest_name) + parse_runtime_manifest_test_suite(name = parse_runtime_manifest_name) runtime_manifests_test_suite(name = runtime_manifests_name) else: native.test_suite( - name = parse_sha_manifest_name, + name = parse_runtime_manifest_name, tests = [], ) native.test_suite( @@ -42,7 +42,7 @@ def register_python_bzlmod_ext_tests(name, parse_sha_manifest_name, runtime_mani native.test_suite( name = name, tests = [ - parse_sha_manifest_name, + parse_runtime_manifest_name, runtime_manifests_name, ], ) diff --git a/tests/support/mocks/mocks.bzl b/tests/support/mocks/mocks.bzl index cfbb3c4148..84d39fa6e2 100644 --- a/tests/support/mocks/mocks.bzl +++ b/tests/support/mocks/mocks.bzl @@ -102,33 +102,15 @@ def _module_new(name, *, is_root = False, **tags): is_root = is_root, ) -_DEFAULT_RUNTIMES_MANIFEST = """ -87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -1111111111111111111111111111111111111111111111111111111111111111 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -2222222222222222222222222222222222222222222222222222222222222222 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz -0000000000000000000000000000000000000000000000000000000000000000 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -3333333333333333333333333333333333333333333333333333333333333333 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -4444444444444444444444444444444444444444444444444444444444444444 20230116/cpython-3.11.2+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -5555555555555555555555555555555555555555555555555555555555555555 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz -6666666666666666666666666666666666666666666666666666666666666666 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -7777777777777777777777777777777777777777777777777777777777777777 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz -8888888888888888888888888888888888888888888888888888888888888888 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -9999999999999999999999999999999999999999999999999999999999999999 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz -cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz -dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz -""" - def _mctx_read(self, x, watch = None): _ = watch # @unused path_str = x._path if hasattr(x, "_path") else str(x) - if path_str not in self.mock_files: - if "runtimes_manifest.txt" in path_str: - return _DEFAULT_RUNTIMES_MANIFEST - fail("File not found in mock_files: " + path_str) - return self.mock_files[path_str] + if path_str in self.mock_files: + return self.mock_files[path_str] + for k, v in self.mock_files.items(): + if k in path_str or k in path_str.replace(":", "/"): + return v + fail("File not found in mock_files: " + path_str) def _mctx_path(self, x): return _path_new(str(x), self.mock_files) diff --git a/tests/support/mocks/python_ext.bzl b/tests/support/mocks/python_ext.bzl index f7b5b0ee02..f6f99b1b26 100644 --- a/tests/support/mocks/python_ext.bzl +++ b/tests/support/mocks/python_ext.bzl @@ -93,8 +93,45 @@ def _toolchain(**kwargs): attrs.update(kwargs) return mocks.tag(**attrs) +_DEFAULT_RUNTIMES_MANIFEST = """ +87275619c2706affa4d1090d2ca3dad354b6d69f8b85dbfafe38785870751b9a 20251031/cpython-3.9.25+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +6112d46355857680b81849764a6cf9f38cc4cd0d1cf29d432bc12fe5aeedf9d0 20260414/cpython-3.10.20+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +1111111111111111111111111111111111111111111111111111111111111111 20241016/cpython-3.10.15+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +2222222222222222222222222222222222222222222222222222222222222222 20240224/cpython-3.10.13+20240224-x86_64-unknown-linux-gnu-install_only.tar.gz +0000000000000000000000000000000000000000000000000000000000000000 20260414/cpython-3.11.15+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +3333333333333333333333333333333333333333333333333333333333333333 20241016/cpython-3.11.10+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +4444444444444444444444444444444444444444444444444444444444444444 20230116/cpython-3.11.2+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +5555555555555555555555555555555555555555555555555555555555555555 20230116/cpython-3.11.1+20230116-x86_64-unknown-linux-gnu-install_only.tar.gz +6666666666666666666666666666666666666666666666666666666666666666 20260414/cpython-3.12.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +7777777777777777777777777777777777777777777777777777777777777777 20240726/cpython-3.12.4+20240726-x86_64-unknown-linux-gnu-install_only.tar.gz +8888888888888888888888888888888888888888888888888888888888888888 20260414/cpython-3.13.13+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +9999999999999999999999999999999999999999999999999999999999999999 20241016/cpython-3.13.0+20241016-x86_64-unknown-linux-gnu-install_only.tar.gz +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 20260414/cpython-3.14.4+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 20251031/cpython-3.14.0+20251031-x86_64-unknown-linux-gnu-install_only.tar.gz +cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc 20260414/cpython-3.15.0a8+20260414-x86_64-unknown-linux-gnu-install_only.tar.gz +dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd 20241205/cpython-3.13.1+20241205-x86_64-unknown-linux-gnu-install_only.tar.gz +""" + +def _mctx(*args, **kwargs): + """Creates a mock module_ctx pre-populated with the default runtimes manifest. + + Args: + *args: Positional arguments to pass to mocks.mctx. + **kwargs: Keyword arguments to pass to mocks.mctx. + + Returns: + A mock module_ctx struct. + """ + mock_files = { + "python/private/runtimes_manifest.txt": _DEFAULT_RUNTIMES_MANIFEST, + } + mock_files.update(kwargs.pop("mock_files", {})) + kwargs["mock_files"] = mock_files + return mocks.mctx(*args, **kwargs) + python_ext = struct( defaults = _defaults, + mctx = _mctx, module = _module, override = _override, single_version_override = _single_version_override, diff --git a/tests/toolchains/BUILD.bazel b/tests/toolchains/BUILD.bazel index f32ab6f056..b336a06269 100644 --- a/tests/toolchains/BUILD.bazel +++ b/tests/toolchains/BUILD.bazel @@ -13,6 +13,7 @@ # limitations under the License. load("@bazel_skylib//rules:build_test.bzl", "build_test") +load("@bazel_skylib//rules:diff_test.bzl", "diff_test") load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility load("//tests/support:py_reconfig.bzl", "py_reconfig_test") load(":defs.bzl", "define_toolchain_tests") @@ -38,3 +39,18 @@ build_test( "@python_3_11//:python_headers", ], ) + +# Verify that runtimes_manifest_workspace.bzl exactly matches runtimes_manifest.txt +genrule( + name = "gen_expected_runtimes_manifest_workspace", + srcs = ["//python/private:runtimes_manifest.txt"], + outs = ["expected_runtimes_manifest_workspace.bzl"], + cmd = "$(execpath //python/private:sync_runtimes_manifest_workspace) $(location //python/private:runtimes_manifest.txt) $@", + tools = ["//python/private:sync_runtimes_manifest_workspace"], +) + +diff_test( + name = "runtimes_manifest_workspace_sync_test", + file1 = "//python/private:runtimes_manifest_workspace.bzl", + file2 = ":expected_runtimes_manifest_workspace.bzl", +) diff --git a/tests/toolchains/transitions/transitions_tests.bzl b/tests/toolchains/transitions/transitions_tests.bzl index 01eb564c03..81ce1e68cc 100644 --- a/tests/toolchains/transitions/transitions_tests.bzl +++ b/tests/toolchains/transitions/transitions_tests.bzl @@ -14,7 +14,7 @@ "" -load("@pythons_hub//:versions.bzl", "DEFAULT_PYTHON_VERSION", "MINOR_MAPPING") +load("@pythons_hub//:versions.bzl", "DEFAULT_PYTHON_VERSION", "MINOR_MAPPING", "PYTHON_VERSIONS") load("@rules_testing//lib:analysis_test.bzl", "analysis_test") load("@rules_testing//lib:test_suite.bzl", "test_suite") load("@rules_testing//lib:util.bzl", rt_util = "util") @@ -141,7 +141,7 @@ def _test_full_version(name): name = name, tests = { v.replace(".", "_"): (v, v) - for v in MINOR_MAPPING.values() + for v in PYTHON_VERSIONS }, ) diff --git a/tools/private/sync_downloader_configs.py b/tools/private/sync_downloader_configs.py new file mode 100755 index 0000000000..7e8527b989 --- /dev/null +++ b/tools/private/sync_downloader_configs.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python3 + +"""Synchronizes downloader_config.cfg across subworkspaces.""" + +import sys +from pathlib import Path + + +def main(): + repo_root = Path(__file__).resolve().parent.parent.parent + canonical = repo_root / "downloader_config.cfg" + + subworkspaces = [ + repo_root / "gazelle" / "downloader_config.cfg", + repo_root / "sphinxdocs" / "downloader_config.cfg", + ] + + with open(canonical, "r", encoding="utf-8") as f: + canonical_content = f.read() + + changed = False + for sub in subworkspaces: + if sub.exists(): + with open(sub, "r", encoding="utf-8") as f: + old_content = f.read() + if old_content != canonical_content: + with open(sub, "w", encoding="utf-8") as f: + f.write(canonical_content) + print(f"Updated {sub.relative_to(repo_root)}") + changed = True + + if changed: + sys.exit(1) + + +if __name__ == "__main__": + main() From e5e10f819d71f81ec0d97d2f906b957a35e04a3b Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 18:14:52 +0000 Subject: [PATCH 47/53] Fix runtime manifest tests by switching to pre-populated mock mctx Updates runtime_manifests_tests.bzl to use python_ext.mctx instead of mocks.mctx to ensure the default runtimes manifest is available during test analysis. --- tests/python_bzlmod_ext/runtime_manifests_tests.bzl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl index c46cab1958..91fbed4b39 100644 --- a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl +++ b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl @@ -5,7 +5,6 @@ load("@rules_testing//lib:test_suite.bzl", "test_suite") load("@rules_testing//lib:util.bzl", rt_util = "util") load("//python/private:python.bzl", "parse_modules") # buildifier: disable=bzl-visibility load("//python/private:repo_utils.bzl", "repo_utils") # buildifier: disable=bzl-visibility -load("//tests/support/mocks:mocks.bzl", "mocks") # buildifier: disable=bzl-visibility load("//tests/support/mocks:python_ext.bzl", "python_ext") # buildifier: disable=bzl-visibility _tests = [] @@ -52,7 +51,7 @@ def _test_dynamic_manifest_toolchains_impl(env, target): ) # Pre-populate mock_files directly to bypass download output struct key mismatch in mock read lookups. - mock_mctx = mocks.mctx( + mock_mctx = python_ext.mctx( modules = [root_module], mock_files = { "runtime_manifest": """ @@ -121,7 +120,7 @@ def _test_dynamic_manifest_files_impl(env, target): ], ) - mock_mctx = mocks.mctx( + mock_mctx = python_ext.mctx( modules = [root_module], mock_files = { str(Label("//:SHA256SUMS")): """ From bfaaccfb5cb9585012fc4917977ed298e434dbed Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 18:15:51 +0000 Subject: [PATCH 48/53] Resolve Bazel 10 flag transition and toolchain matching anomalies in tests Adds macos execution platform constraints to py_exec_tools_toolchain test rules and splits flag transition tests into driver and consumer rules to ensure Bazel 10 toolchain resolution propagates correctly. --- tests/exec_toolchain_matching/BUILD.bazel | 1 + .../transitions/transitions_tests.bzl | 43 +++++++++++++++---- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/tests/exec_toolchain_matching/BUILD.bazel b/tests/exec_toolchain_matching/BUILD.bazel index ce04bf7897..f8a446ac76 100644 --- a/tests/exec_toolchain_matching/BUILD.bazel +++ b/tests/exec_toolchain_matching/BUILD.bazel @@ -65,6 +65,7 @@ define_py_runtime( # call that was being evaluated. py_exec_tools_toolchain( name = "exec_3.12", + exec_compatible_with = ["@platforms//os:macos"], ) py_exec_tools_toolchain( diff --git a/tests/toolchains/transitions/transitions_tests.bzl b/tests/toolchains/transitions/transitions_tests.bzl index 81ce1e68cc..c002ce6a76 100644 --- a/tests/toolchains/transitions/transitions_tests.bzl +++ b/tests/toolchains/transitions/transitions_tests.bzl @@ -49,7 +49,7 @@ TestInfo = provider( fields = {"got": "", "want": ""}, ) -def _impl(ctx): +def _subject_impl(ctx): if ctx.attr.skip: return [TestInfo(got = "", want = "")] @@ -74,8 +74,29 @@ def _impl(ctx): ), ] +_transition_subject = rule( + implementation = _subject_impl, + attrs = { + "skip": attr.bool( + doc = "Whether to skip the test", + ), + "want_version": attr.string( + doc = "The python version that we actually expect to receive.", + ), + }, + toolchains = [ + config_common.toolchain_type( + EXEC_TOOLS_TOOLCHAIN_TYPE, + mandatory = False, + ), + ], +) + +def _driver_impl(ctx): + return [ctx.attr.subject[0][TestInfo]] + _simple_transition = rule( - implementation = _impl, + implementation = _driver_impl, attrs = { "python_version": attr.string( doc = "The input python version which we transition on.", @@ -83,6 +104,9 @@ _simple_transition = rule( "skip": attr.bool( doc = "Whether to skip the test", ), + "subject": attr.label( + cfg = _python_version_transition, + ), "want_version": attr.string( doc = "The python version that we actually expect to receive.", ), @@ -90,27 +114,28 @@ _simple_transition = rule( default = "@bazel_tools//tools/allowlists/function_transition_allowlist", ), }, - toolchains = [ - config_common.toolchain_type( - EXEC_TOOLS_TOOLCHAIN_TYPE, - mandatory = False, - ), - ], - cfg = _python_version_transition, ) def _test_transitions(*, name, tests, skip = False): """A reusable rule so that we can split the tests.""" targets = {} for test_name, (input_version, want_version) in tests.items(): + subject_name = "{}_{}_subject".format(name, test_name) target_name = "{}_{}".format(name, test_name) targets["python_" + test_name] = target_name + rt_util.helper_target( + _transition_subject, + name = subject_name, + want_version = want_version, + skip = skip, + ) rt_util.helper_target( _simple_transition, name = target_name, python_version = input_version, want_version = want_version, skip = skip, + subject = subject_name, ) analysis_test( From d4e4363c238c94b79488c2f8566a060e91b2946a Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 18:17:58 +0000 Subject: [PATCH 49/53] Revert "Resolve Bazel 10 flag transition and toolchain matching anomalies in tests" This reverts commit bfaaccfb5cb9585012fc4917977ed298e434dbed. --- tests/exec_toolchain_matching/BUILD.bazel | 1 - .../transitions/transitions_tests.bzl | 43 ++++--------------- 2 files changed, 9 insertions(+), 35 deletions(-) diff --git a/tests/exec_toolchain_matching/BUILD.bazel b/tests/exec_toolchain_matching/BUILD.bazel index f8a446ac76..ce04bf7897 100644 --- a/tests/exec_toolchain_matching/BUILD.bazel +++ b/tests/exec_toolchain_matching/BUILD.bazel @@ -65,7 +65,6 @@ define_py_runtime( # call that was being evaluated. py_exec_tools_toolchain( name = "exec_3.12", - exec_compatible_with = ["@platforms//os:macos"], ) py_exec_tools_toolchain( diff --git a/tests/toolchains/transitions/transitions_tests.bzl b/tests/toolchains/transitions/transitions_tests.bzl index c002ce6a76..81ce1e68cc 100644 --- a/tests/toolchains/transitions/transitions_tests.bzl +++ b/tests/toolchains/transitions/transitions_tests.bzl @@ -49,7 +49,7 @@ TestInfo = provider( fields = {"got": "", "want": ""}, ) -def _subject_impl(ctx): +def _impl(ctx): if ctx.attr.skip: return [TestInfo(got = "", want = "")] @@ -74,29 +74,8 @@ def _subject_impl(ctx): ), ] -_transition_subject = rule( - implementation = _subject_impl, - attrs = { - "skip": attr.bool( - doc = "Whether to skip the test", - ), - "want_version": attr.string( - doc = "The python version that we actually expect to receive.", - ), - }, - toolchains = [ - config_common.toolchain_type( - EXEC_TOOLS_TOOLCHAIN_TYPE, - mandatory = False, - ), - ], -) - -def _driver_impl(ctx): - return [ctx.attr.subject[0][TestInfo]] - _simple_transition = rule( - implementation = _driver_impl, + implementation = _impl, attrs = { "python_version": attr.string( doc = "The input python version which we transition on.", @@ -104,9 +83,6 @@ _simple_transition = rule( "skip": attr.bool( doc = "Whether to skip the test", ), - "subject": attr.label( - cfg = _python_version_transition, - ), "want_version": attr.string( doc = "The python version that we actually expect to receive.", ), @@ -114,28 +90,27 @@ _simple_transition = rule( default = "@bazel_tools//tools/allowlists/function_transition_allowlist", ), }, + toolchains = [ + config_common.toolchain_type( + EXEC_TOOLS_TOOLCHAIN_TYPE, + mandatory = False, + ), + ], + cfg = _python_version_transition, ) def _test_transitions(*, name, tests, skip = False): """A reusable rule so that we can split the tests.""" targets = {} for test_name, (input_version, want_version) in tests.items(): - subject_name = "{}_{}_subject".format(name, test_name) target_name = "{}_{}".format(name, test_name) targets["python_" + test_name] = target_name - rt_util.helper_target( - _transition_subject, - name = subject_name, - want_version = want_version, - skip = skip, - ) rt_util.helper_target( _simple_transition, name = target_name, python_version = input_version, want_version = want_version, skip = skip, - subject = subject_name, ) analysis_test( From 425b9071717608f1d80c75cce7a45e04d82dc7a6 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 18:20:41 +0000 Subject: [PATCH 50/53] Delete deprecated print_toolchains_checksums genrule target and Starlark rule Removes print_toolchains_checksums from python/private/BUILD.bazel and purges print_toolchain_checksums.bzl as it is legacy functionality replaced by the public TOOL_VERSIONS map. --- python/private/BUILD.bazel | 3 - python/private/print_toolchain_checksums.bzl | 91 -------------------- 2 files changed, 94 deletions(-) delete mode 100644 python/private/print_toolchain_checksums.bzl diff --git a/python/private/BUILD.bazel b/python/private/BUILD.bazel index 1065713968..e4b38c2d1d 100644 --- a/python/private/BUILD.bazel +++ b/python/private/BUILD.bazel @@ -17,7 +17,6 @@ load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") load("//python:py_binary.bzl", "py_binary") load("//python:py_library.bzl", "py_library") load(":bazel_config_mode.bzl", "bazel_config_mode") -load(":print_toolchain_checksums.bzl", "print_toolchains_checksums") load(":py_exec_tools_toolchain.bzl", "current_interpreter_executable") load(":sentinel.bzl", "sentinel") load(":stamp.bzl", "stamp_build_setting") @@ -867,8 +866,6 @@ bool_flag( visibility = ["//visibility:public"], ) -print_toolchains_checksums(name = "print_toolchains_checksums") - # Used for py_console_script_gen rule py_binary( name = "py_console_script_gen_py", diff --git a/python/private/print_toolchain_checksums.bzl b/python/private/print_toolchain_checksums.bzl deleted file mode 100644 index 4611a6091d..0000000000 --- a/python/private/print_toolchain_checksums.bzl +++ /dev/null @@ -1,91 +0,0 @@ -"""Print the toolchain versions. -""" - -load("//python:versions.bzl", "TOOL_VERSIONS", "get_release_info") -load("//python/private:text_util.bzl", "render") -load("//python/private:version.bzl", "version") - -def print_toolchains_checksums(name): - """A macro to print checksums for a particular Python interpreter version. - - Args: - name: {type}`str`: the name of the runnable target. - """ - by_version = {} - tool_versions = TOOL_VERSIONS - - for python_version, metadata in tool_versions.items(): - by_version[python_version] = _commands_for_version( - python_version = python_version, - metadata = metadata, - tool_versions = tool_versions, - ) - - all_commands = sorted( - by_version.items(), - key = lambda x: version.key(version.parse(x[0], strict = True)), - ) - all_commands = [x[1] for x in all_commands] - - template = """\ -cat > "$@" <<'EOF' -#!/usr/bin/env bash -set -euo pipefail - -set -o errexit -o nounset -o pipefail - -echo "Fetching hashes..." - -{commands} -EOF - """ - - native.genrule( - name = name, - srcs = [], - outs = ["print_toolchains_checksums.sh"], - cmd = select({ - "//python/config_settings:is_python_{}".format(version_str): template.format( - commands = commands, - ) - for version_str, commands in by_version.items() - } | { - "//conditions:default": template.format(commands = "\n".join(all_commands)), - }), - executable = True, - ) - -def _commands_for_version(*, python_version, metadata, tool_versions): - lines = [] - first_platform = metadata["sha256"].keys()[0] - root, _, _ = get_release_info(first_platform, python_version, tool_versions = tool_versions)[1][0].rpartition("/") - sha_url = "{}/{}".format(root, "SHA256SUMS") - prefix = metadata["strip_prefix"] - prefix = render.indent( - render.dict(prefix) if type(prefix) == type({}) else repr(prefix), - indent = " " * 8, - ).lstrip() - - lines += [ - "sha256s=$$(curl --silent --show-error --location --fail {})".format(sha_url), - "cat < Date: Sat, 13 Jun 2026 19:35:35 +0000 Subject: [PATCH 51/53] Refactor base_url to base_urls list and establish triple mirror configuration Renames base_url attribute to base_urls on module extension override tags and defaults to provide multi-mirror download fallback. Outfits get_release_info with DEFAULT_RELEASE_BASE_URLS (GitHub astral-sh, releases.astral.sh, indygreg) to guarantee duplicate-free fallback resolution across all registered runtimes. --- python/private/python.bzl | 24 +++++------ python/private/python_register_toolchains.bzl | 11 +++-- python/versions.bzl | 40 ++++++++++++++----- .../get_release_info_tests.bzl | 3 +- tests/python/python_tests.bzl | 14 +++---- .../runtime_manifests_tests.bzl | 2 +- tests/support/mocks/python_ext.bzl | 2 +- 7 files changed, 60 insertions(+), 36 deletions(-) diff --git a/python/private/python.bzl b/python/private/python.bzl index 9c8884e9c2..1ae2477a56 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -15,7 +15,7 @@ "Python toolchain module extensions for use with bzlmod." load("@bazel_features//:features.bzl", "bazel_features") -load("//python:versions.bzl", "DEFAULT_RELEASE_BASE_URL", "PLATFORMS") +load("//python:versions.bzl", "DEFAULT_RELEASE_BASE_URLS", "PLATFORMS") load(":auth.bzl", "AUTH_ATTRS") load(":full_version.bzl", "full_version") load(":pbs_manifest.bzl", "parse_runtime_manifest") @@ -714,7 +714,7 @@ def _process_global_overrides(*, tag, default, _fail = fail): default["add_target_settings"] = list(tag.add_target_settings) forwarded_attrs = sorted(AUTH_ATTRS) + [ - "base_url", + "base_urls", "register_all_versions", ] for key in forwarded_attrs: @@ -759,7 +759,7 @@ def _populate_from_pbs_manifest( add_runtime_manifest_urls = [], add_runtime_manifest_files = [], runtime_manifest_sha = "", - base_url = "", + base_urls = [], available_versions, _fail): manifest_contents = [] @@ -783,8 +783,8 @@ def _populate_from_pbs_manifest( return base_download_urls = [url.rpartition("/")[0] for url in add_runtime_manifest_urls] - if not base_download_urls and base_url: - base_download_urls = [base_url] + if not base_download_urls and base_urls: + base_download_urls = list(base_urls) entries = [] for content in manifest_contents: @@ -858,7 +858,7 @@ def _get_toolchain_config(*, mctx, modules, _fail = fail): _populate_from_pbs_manifest( mctx = mctx, add_runtime_manifest_files = [Label("//python/private:runtimes_manifest.txt")], - base_url = DEFAULT_RELEASE_BASE_URL, + base_urls = DEFAULT_RELEASE_BASE_URLS, available_versions = available_versions, _fail = _fail, ) @@ -873,7 +873,7 @@ def _get_toolchain_config(*, mctx, modules, _fail = fail): add_runtime_manifest_urls = tag.add_runtime_manifest_urls, add_runtime_manifest_files = tag.add_runtime_manifest_files, runtime_manifest_sha = tag.runtime_manifest_sha, - base_url = tag.base_url, + base_urls = tag.base_urls, available_versions = available_versions, _fail = _fail, ) @@ -888,13 +888,13 @@ def _get_toolchain_config(*, mctx, modules, _fail = fail): add_runtime_manifest_urls = tag.add_runtime_manifest_urls, add_runtime_manifest_files = tag.add_runtime_manifest_files, runtime_manifest_sha = tag.runtime_manifest_sha, - base_url = tag.base_url, + base_urls = tag.base_urls, available_versions = available_versions, _fail = _fail, ) default = { - "base_url": DEFAULT_RELEASE_BASE_URL, + "base_urls": DEFAULT_RELEASE_BASE_URLS, "platforms": dict(PLATFORMS), # Copy so it's mutable. "tool_versions": available_versions, } @@ -1284,10 +1284,10 @@ This attribute is usually used in order to ensure that no unexpected transitive dependencies are introduced. """, ), - "base_url": attr.string( + "base_urls": attr.string_list( mandatory = False, - doc = "The base URL to be used when downloading toolchains.", - default = DEFAULT_RELEASE_BASE_URL, + doc = "The base URLs to be used when downloading toolchains.", + default = DEFAULT_RELEASE_BASE_URLS, ), "ignore_root_user_error": attr.bool( default = True, diff --git a/python/private/python_register_toolchains.bzl b/python/private/python_register_toolchains.bzl index 3b92902c7e..5a2f96857b 100644 --- a/python/private/python_register_toolchains.bzl +++ b/python/private/python_register_toolchains.bzl @@ -17,7 +17,7 @@ load( "//python:versions.bzl", - "DEFAULT_RELEASE_BASE_URL", + "DEFAULT_RELEASE_BASE_URLS", "MINOR_MAPPING", "PLATFORMS", "TOOL_VERSIONS", @@ -103,7 +103,7 @@ def python_register_toolchains( name = "coverage_dep", ) - base_url = kwargs.pop("base_url", DEFAULT_RELEASE_BASE_URL) + base_urls = kwargs.pop("base_urls", DEFAULT_RELEASE_BASE_URLS) tool_versions = tool_versions or TOOL_VERSIONS minor_mapping = minor_mapping or MINOR_MAPPING @@ -122,7 +122,12 @@ def python_register_toolchains( continue loaded_platforms.append(platform) - (release_filename, urls, strip_prefix, patches, patch_strip) = get_release_info(platform, python_version, base_url, tool_versions) + (release_filename, urls, strip_prefix, patches, patch_strip) = get_release_info( + platform, + python_version, + base_urls = base_urls, + tool_versions = tool_versions, + ) # allow passing in a tool version coverage_tool = None diff --git a/python/versions.bzl b/python/versions.bzl index b654f0a93f..6e3efb34d6 100644 --- a/python/versions.bzl +++ b/python/versions.bzl @@ -30,12 +30,17 @@ FREETHREADED = "-freethreaded" MUSL = "-musl" INSTALL_ONLY = "install_only" -DEFAULT_RELEASE_BASE_URL = "https://github.com/astral-sh/python-build-standalone/releases/download" - _GITHUB_PREFIX = "https://github.com/astral-sh/python-build-standalone/releases/download" _LEGACY_GITHUB_PREFIX = "https://github.com/indygreg/python-build-standalone/releases/download" _ASTRAL_PREFIX = "https://releases.astral.sh/github/python-build-standalone/releases/download" +DEFAULT_RELEASE_BASE_URL = _GITHUB_PREFIX +DEFAULT_RELEASE_BASE_URLS = [ + _GITHUB_PREFIX, + _ASTRAL_PREFIX, + _LEGACY_GITHUB_PREFIX, +] + # buildifier: disable=unsorted-dict-items MINOR_MAPPING = { "3.9": "3.9.25", @@ -202,13 +207,13 @@ def _generate_platforms(): PLATFORMS = _generate_platforms() -def get_release_info(platform, python_version, base_url = DEFAULT_RELEASE_BASE_URL, tool_versions = None): +def get_release_info(platform, python_version, base_urls = DEFAULT_RELEASE_BASE_URLS, tool_versions = None): """Resolve the release URL for the requested interpreter version Args: platform: The platform string for the interpreter python_version: The version of the interpreter to get - base_url: The URL to prepend to the 'url' attr in the tool_versions dict + base_urls: The list of URLs to prepend to the 'url' attr in the tool_versions dict tool_versions: A dict listing the interpreter versions, their SHAs and URL Returns: @@ -217,13 +222,26 @@ def get_release_info(platform, python_version, base_url = DEFAULT_RELEASE_BASE_U if tool_versions == None: tool_versions = TOOL_VERSIONS - base_urls = [base_url] - if base_url == DEFAULT_RELEASE_BASE_URL or base_url.startswith(_GITHUB_PREFIX): - suffix = base_url[len(_GITHUB_PREFIX):] - base_urls.append(_ASTRAL_PREFIX + suffix) - elif base_url.startswith(_LEGACY_GITHUB_PREFIX): - suffix = base_url[len(_LEGACY_GITHUB_PREFIX):] - base_urls.append(_ASTRAL_PREFIX + suffix) + if type(base_urls) == type(""): + base_urls = [base_urls] + elif base_urls == None: + base_urls = DEFAULT_RELEASE_BASE_URLS + + expanded_base_urls = [] + for b_url in base_urls: + if b_url not in expanded_base_urls: + expanded_base_urls.append(b_url) + if b_url.startswith(_GITHUB_PREFIX): + suffix = b_url[len(_GITHUB_PREFIX):] + a_url = _ASTRAL_PREFIX + suffix + if a_url not in expanded_base_urls: + expanded_base_urls.append(a_url) + elif b_url.startswith(_LEGACY_GITHUB_PREFIX): + suffix = b_url[len(_LEGACY_GITHUB_PREFIX):] + a_url = _ASTRAL_PREFIX + suffix + if a_url not in expanded_base_urls: + expanded_base_urls.append(a_url) + base_urls = expanded_base_urls url = tool_versions[python_version]["url"] diff --git a/tests/get_release_info/get_release_info_tests.bzl b/tests/get_release_info/get_release_info_tests.bzl index c810489c92..0b1b60adc3 100644 --- a/tests/get_release_info/get_release_info_tests.bzl +++ b/tests/get_release_info/get_release_info_tests.bzl @@ -63,6 +63,7 @@ def _test_astral_mirror(env): expected_urls = [ "https://github.com/astral-sh/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", "https://releases.astral.sh/github/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", + "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5+20230826-x86_64-unknown-linux-gnu-install_only.tar.gz", ] _, urls, _, _, _ = get_release_info( @@ -95,7 +96,7 @@ def _test_astral_mirror_legacy(env): _, urls, _, _, _ = get_release_info( platform = "x86_64-unknown-linux-gnu", python_version = "3.11.5", - base_url = "https://github.com/indygreg/python-build-standalone/releases/download", + base_urls = ["https://github.com/indygreg/python-build-standalone/releases/download"], tool_versions = tool_versions, ) diff --git a/tests/python/python_tests.bzl b/tests/python/python_tests.bzl index d8cf4915da..cbef5637fd 100644 --- a/tests/python/python_tests.bzl +++ b/tests/python/python_tests.bzl @@ -47,7 +47,7 @@ def _test_default_from_rules_python_when_rules_python_is_root(env): env.expect.that_dict(py.config.minor_mapping).contains_exactly(MINOR_MAPPING) env.expect.that_collection(py.config.kwargs).has_size(0) env.expect.that_collection(py.config.default.keys()).contains_exactly([ - "base_url", + "base_urls", "tool_versions", "platforms", ]) @@ -459,7 +459,7 @@ def _test_add_new_version(env): "3.13.1", "3.13.99", ], - base_url = "", + base_urls = [], minor_mapping = { "3.13": "3.13.99", }, @@ -545,7 +545,7 @@ def _test_register_all_versions(env): "3.13.1", "3.13.99", ], - base_url = "", + base_urls = [], register_all_versions = True, ), ], @@ -615,7 +615,7 @@ def _test_ignore_unsupported_versions(env): "3.13.0", "3.13.1", ], - base_url = "", + base_urls = [], minor_mapping = { "3.12": "3.12.4", "3.13": "3.13.1", @@ -689,7 +689,7 @@ def _test_add_patches(env): override = [ python_ext.override( available_python_versions = ["3.13.0"], - base_url = "", + base_urls = [], minor_mapping = { "3.13": "3.13.0", }, @@ -766,8 +766,8 @@ def _test_fail_two_overrides(env): name = "my_module", is_root = True, override = [ - python_ext.override(base_url = "foo"), - python_ext.override(base_url = "bar"), + python_ext.override(base_urls = ["foo"]), + python_ext.override(base_urls = ["bar"]), ], toolchain = [python_ext.toolchain(python_version = "3.13")], ), diff --git a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl index 91fbed4b39..6de0ff93c2 100644 --- a/tests/python_bzlmod_ext/runtime_manifests_tests.bzl +++ b/tests/python_bzlmod_ext/runtime_manifests_tests.bzl @@ -109,7 +109,7 @@ def _test_dynamic_manifest_files_impl(env, target): add_runtime_manifest_files = [ Label("//:SHA256SUMS"), ], - base_url = "https://example.com/dl", + base_urls = ["https://example.com/dl"], register_all_versions = True, ), ], diff --git a/tests/support/mocks/python_ext.bzl b/tests/support/mocks/python_ext.bzl index f6f99b1b26..dc3ac41f8d 100644 --- a/tests/support/mocks/python_ext.bzl +++ b/tests/support/mocks/python_ext.bzl @@ -30,7 +30,7 @@ def _override(**kwargs): "add_runtime_manifest_urls": [], "add_target_settings": [], "available_python_versions": [], - "base_url": "https://github.com/astral-sh/python-build-standalone/releases/download", + "base_urls": ["https://github.com/astral-sh/python-build-standalone/releases/download"], "ignore_root_user_error": True, "minor_mapping": {}, "register_all_versions": False, From fc0b7d9558848b5fdc9358e1dd35691a8359ea46 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 19:48:06 +0000 Subject: [PATCH 52/53] Fix Windows CRLF diff test mismatch for workspace runtimes manifest Enforces LF line endings on runtimes manifest files in .gitattributes and ensures sync_runtimes_manifest_workspace writes output files with LF to prevent checkout mismatches during Windows CI diff testing. --- .gitattributes | 2 ++ python/private/tools/sync_runtimes_manifest_workspace.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 9905cbfacb..fafafd001b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,5 @@ python/features.bzl export-subst tools/publish/*.txt linguist-generated=true tests/uv/lock/testdata/requirements.txt text eol=lf +python/private/runtimes_manifest_workspace.bzl text eol=lf +python/private/runtimes_manifest.txt text eol=lf diff --git a/python/private/tools/sync_runtimes_manifest_workspace.py b/python/private/tools/sync_runtimes_manifest_workspace.py index 9493ca9a66..450358542a 100755 --- a/python/private/tools/sync_runtimes_manifest_workspace.py +++ b/python/private/tools/sync_runtimes_manifest_workspace.py @@ -32,7 +32,7 @@ def sync_workspace_manifest(txt_path: Path, bzl_path: Path) -> bool: old_content = "" if new_content != old_content: - with open(bzl_path, "w", encoding="utf-8") as f: + with open(bzl_path, "w", encoding="utf-8", newline="\n") as f: f.write(new_content) return True From 475b27797d461776291a6beb267789d101bf732e Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Sat, 13 Jun 2026 20:21:02 +0000 Subject: [PATCH 53/53] Document runtimes manifest registration changes and manifest file format links Adds entry to CHANGELOG.md explaining bzlmod runtimes manifest registration and adds seealso links to manifest file format docs in python.override add_runtime_manifest attributes. --- CHANGELOG.md | 3 +++ python/private/python.bzl | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 978464f9db..0fa832e8fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,6 +61,9 @@ END_UNRELEASED_TEMPLATE {#v0-0-0-changed} ### Changed +* (bzlmod) How default runtimes are registered has changed to use a manifest + of SHAs and URLs. `TOOL_VERSIONS` in `python/versions.bzl` is now empty under + bzlmod. * (gazelle) WORKSPACE's bazel-gazelle dependency bumped from 0.36.0 to 0.47.0. The go version was also bumped from 1.21.13 to 1.22.9. * (gazelle) `python_generate_pyi_deps` and `python_generate_pyi_srcs` now diff --git a/python/private/python.bzl b/python/private/python.bzl index 1ae2477a56..ac8d1111fb 100644 --- a/python/private/python.bzl +++ b/python/private/python.bzl @@ -1227,6 +1227,10 @@ Labels pointing to local python-build-standalone manifest files (e.g., `SHA256SU Example: `//my/custom/manifest:SHA256SUMS` +:::{seealso} +[Manifest file format documentation](https://rules-python.readthedocs.io/en/latest/toolchains.html#manifest-file-format) +::: + :::{versionadded} VERSION_NEXT_FEATURE ::: """, @@ -1242,6 +1246,10 @@ Example: Note that `/latest/` can be used in place of a specific release date (e.g., `20260414`) to automatically use the latest release: `https://github.com/astral-sh/python-build-standalone/releases/latest/download/SHA256SUMS` +:::{seealso} +[Manifest file format documentation](https://rules-python.readthedocs.io/en/latest/toolchains.html#manifest-file-format) +::: + :::{versionadded} VERSION_NEXT_FEATURE ::: """,