From c576ffe32d01da2260aaa9db89275d4e66888860 Mon Sep 17 00:00:00 2001 From: Felix Oesterle <6945681+fso42@users.noreply.github.com> Date: Mon, 4 May 2026 15:46:29 +0200 Subject: [PATCH] chore(cibuildwheel): skip Python 3.13 builds on Windows --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 67bbab74a..c32effd63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,6 +70,9 @@ build-verbosity = 1 [tool.cibuildwheel.linux] repair-wheel-command = "auditwheel --verbose repair -w {dest_dir} {wheel} --plat manylinux_2_34_x86_64" +[tool.cibuildwheel.windows] +skip = ["cp313-*"] + #Flake8 [tool.flake8] max-line-length = 109