From d6342a811a1693033794ed417b8a9fce7bd8965d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 23 Feb 2026 17:12:10 -0600 Subject: [PATCH] Fix wheel check failure due to new cyclonedx sbom (#18173) The maturin update to v1.12.1 (#18142) introduced automatic SBOM generation in wheels https://github.com/PyO3/maturin/pull/2980 --- scripts/check_uv_wheel_contents.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/check_uv_wheel_contents.py b/scripts/check_uv_wheel_contents.py index 7a201b0d0..d74b63e71 100644 --- a/scripts/check_uv_wheel_contents.py +++ b/scripts/check_uv_wheel_contents.py @@ -15,6 +15,7 @@ uv_expected = { "uv-VERSION.dist-info/WHEEL", "uv-VERSION.dist-info/licenses/LICENSE-APACHE", "uv-VERSION.dist-info/licenses/LICENSE-MIT", + "uv-VERSION.dist-info/sboms/uv.cyclonedx.json", "uv/__init__.py", "uv/__main__.py", "uv/_find_uv.py", @@ -27,6 +28,7 @@ uv_build_expected = { "uv_build-VERSION.dist-info/WHEEL", "uv_build-VERSION.dist-info/licenses/LICENSE-APACHE", "uv_build-VERSION.dist-info/licenses/LICENSE-MIT", + "uv_build-VERSION.dist-info/sboms/uv_build.cyclonedx.json", "uv_build/__init__.py", "uv_build/__main__.py", "uv_build/py.typed",