deprecation: cp313t (#2787)

Free-Threading Python 3.13 was experimental.
Now that Python 3.14 has been released with explicit support, we can schedule removal of Python 3.13 free-threading.
This commit is contained in:
Matthieu Darbois
2026-04-02 14:39:47 +01:00
committed by GitHub
parent 097806b6b1
commit 54b8a010d0
6 changed files with 90 additions and 10 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ def test_arm(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
def test_env_set(tmp_path: Path) -> None:
environment = {"VSCMD_ARG_TGT_ARCH": "x64"}
configuration = PythonConfiguration(version="irrelevant", identifier="cp313t-win32", url=None)
configuration = PythonConfiguration(version="irrelevant", identifier="cp314t-win32", url=None)
with pytest.raises(FatalError, match="VSCMD_ARG_TGT_ARCH"):
setup_setuptools_cross_compile(tmp_path, configuration, tmp_path, environment)