Skip to content

Commit 18c67e3

Browse files
committed
cibuildwheel: skip free-threaded builds for now, they are not supported fully by mypyc
1 parent af577eb commit 18c67e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ write_to = "schema_salad/_version.py"
1919
test-command = "python -m pytest -n 2 --junitxml={project}/test-results/junit_$(python -V | awk '{print $2}')_${AUDITWHEEL_PLAT}.xml --pyargs schema_salad"
2020
test-requires = "-r test-requirements.txt"
2121
test-extras = "pycodegen"
22-
skip = "pp*"
22+
skip = ["pp*", "cp31?t-*"]
2323
# ^ skip building wheels on PyPy (any version)
24-
build-verbosity = "1"
24+
# ^ https://mypy.readthedocs.io/en/stable/changelog.html#mypyc-partial-unsafe-support-for-free-threading
25+
build-verbosity = 1
2526
environment = { SCHEMA_SALAD_USE_MYPYC="1", MYPYPATH="$(pwd)/mypy-stubs" }
2627

2728
[tool.black]

0 commit comments

Comments
 (0)