feat: add CPython 3.15 beta 1 (#2833)

This commit is contained in:
Matthieu Darbois
2026-05-11 13:35:40 -04:00
committed by GitHub
parent 8bdb703302
commit 3617733645
10 changed files with 147 additions and 51 deletions
+2 -2
View File
@@ -79,7 +79,7 @@ def update_constraints(session: nox.Session) -> None:
env = os.environ.copy()
env["UV_CUSTOM_COMPILE_COMMAND"] = f"nox -s {session.name}"
for minor_version in range(9, 15):
for minor_version in range(9, 16):
python_version = f"3.{minor_version}"
output_file = resources / f"constraints-python{python_version.replace('.', '')}.txt"
session.run(
@@ -94,7 +94,7 @@ def update_constraints(session: nox.Session) -> None:
)
shutil.copyfile(
resources / "constraints-python314.txt",
resources / "constraints-python315.txt",
resources / "constraints.txt",
)