From cda8e2303da996834ae7802c0257c33c857c2f10 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 5 Sep 2024 16:01:18 +0200 Subject: [PATCH] cibuildwheel: skip build python 3.13 wheels (mypyc isn't ready yet) --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 57fbace4..18c8e7c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,8 +20,9 @@ write_to = "schema_salad/_version.py" test-command = "python -m pytest -n 2 --junitxml={project}/test-results/junit_$(python -V | awk '{print $2}')_${AUDITWHEEL_PLAT}.xml --pyargs schema_salad" test-requires = "-r test-requirements.txt" test-extras = "pycodegen" -skip = "pp*" +skip = "pp* cp313-*" # ^ skip building wheels on PyPy (any version) +# ^ skip build python 3.13 wheels (mypyc isn't ready yet) build-verbosity = "1" environment = { SCHEMA_SALAD_USE_MYPYC="1", MYPYPATH="$(pwd)/mypy-stubs" }