break: drop unused riscv64 enable option (#2525)

This commit is contained in:
Xeonacid
2026-01-04 20:20:29 +01:00
committed by GitHub
parent 24bade1d15
commit aae69a8e1d
5 changed files with 1 additions and 76 deletions
+1 -2
View File
@@ -29,7 +29,6 @@ class EnableGroup(StrEnum):
Groups of build selectors that are not enabled by default.
"""
CPythonExperimentalRiscV64 = "cpython-experimental-riscv64"
CPythonFreeThreading = "cpython-freethreading"
CPythonPrerelease = "cpython-prerelease"
GraalPy = "graalpy"
@@ -39,7 +38,7 @@ class EnableGroup(StrEnum):
@classmethod
def all_groups(cls) -> frozenset["EnableGroup"]:
return frozenset(set(cls) - {cls.CPythonExperimentalRiscV64})
return frozenset(cls)
@classmethod
def parse_option_value(cls, value: str) -> frozenset["EnableGroup"]: