From ce3a76937fbbee77e5b8fa65863f791c180448f8 Mon Sep 17 00:00:00 2001 From: Gao Jianjian Date: Thu, 14 Aug 2025 15:43:53 +0800 Subject: [PATCH] ci: update cibuildwheel skip list to exclude Python 3.14 - Add Python 3.14 to the skip list in pyproject.toml - This change ensures that cibuildwheel does not build wheels for Python 3.14 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 26483cc..8ad0127 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,7 +55,7 @@ packages = ["cqlib"] [tool.cibuildwheel] before-all = "uname -a" -skip = "pp* cp36-* cp37-* cp38-* cp39-* *musllinux*" +skip = "pp* cp36-* cp37-* cp38-* cp39-* cp314* *musllinux*" test-command = "python -c \"import cqlib.simulator.statevector_simulator_c\"" [tool.cibuildwheel.linux] -- Gitee