feat: Python 3.14rc1 build by default (#2507)

This commit is contained in:
cibuildwheel-bot[bot]
2025-07-23 20:59:02 -04:00
committed by GitHub
parent f628c9dd23
commit 10c727eed9
9 changed files with 63 additions and 53 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ class BuildSelector:
# filter out groups that are not enabled
if EnableGroup.CPythonFreeThreading not in self.enable and fnmatch(build_id, "cp313t-*"):
return False
if EnableGroup.CPythonPrerelease not in self.enable and fnmatch(build_id, "cp314*"):
if EnableGroup.CPythonPrerelease not in self.enable and fnmatch(build_id, "cp315*"):
return False
if EnableGroup.PyPy not in self.enable and fnmatch(build_id, "pp31*"):
return False