File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -187,6 +187,10 @@ def pkg_name_to_version(pkg_name: str) -> Version:
187187def collect_all_links (pkgconfig : PkgConfig ) -> list [VariantWheel | VariantJson ]:
188188 artifacts = fetch_links (safe_urljoin (pkgconfig .registry , pkgconfig .name + "/" ))
189189
190+ artifacts = list (
191+ filter (lambda artifact : "00000000" not in artifact .name , artifacts )
192+ )
193+
190194 variant_versions : set [Version ] = {
191195 pkg_name_to_version (artifact .name )
192196 for artifact in artifacts
Original file line number Diff line number Diff line change @@ -91,7 +91,10 @@ def to_v0_0_3(self) -> WheelVariantJSON_V0_0_3:
9191
9292 # Copy variants directly
9393 variants_v3 = self .variants
94+
95+ # Ensure there's no remaining of old `null` variant format
9496 variants_v3 ["null" ] = {}
97+ _ = variants_v3 .pop ("00000000" , None )
9598
9699 # Build static-properties from default_priorities.property
97100 static_props = {}
You can’t perform that action at this time.
0 commit comments