Skip to content

Commit

Permalink
cibuildwheel: skip build python 3.13 wheels (mypyc isn't ready yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Sep 5, 2024
1 parent 544decc commit 69bef5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down

0 comments on commit 69bef5f

Please sign in to comment.