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
This commit is contained in:
Zanie Blue
2026-02-23 17:12:10 -06:00
committed by GitHub
parent e2c05a54e6
commit d6342a811a
+2
View File
@@ -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",