feat: riscv64 builds are now enabled by default (#2509)

PyPI now accepts `riscv64` uploads for manylinux/musllinux.
Those builds do not require an opt-in anymore.
This commit is contained in:
Matthieu Darbois
2025-07-24 14:52:07 -04:00
committed by GitHub
parent 47c5a35421
commit 9361af3204
4 changed files with 1 additions and 20 deletions
-4
View File
@@ -93,10 +93,6 @@ class BuildSelector:
return False
if EnableGroup.PyPyEoL not in self.enable and fnmatch(build_id, "pp3?-*"):
return False
if EnableGroup.CPythonExperimentalRiscV64 not in self.enable and fnmatch(
build_id, "*_riscv64"
):
return False
if EnableGroup.GraalPy not in self.enable and fnmatch(build_id, "gp*"):
return False
# TODO: Re-enable this when we have Pyodide prereleases again (e.g., 0.29.0a1+)