Skip to content

Commit b851c77

Browse files
authored
fix: exclude free-threaded Python 3.14 builds from CI
1 parent 44b5dda commit b851c77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ on: [push, pull_request]
55
env:
66
CIBW_ENVIRONMENT_PASS_LINUX: PYTEST_TIMEOUT
77
CIBW_TEST_COMMAND: "cd {project} && pip install --prefer-binary '.[test]' && python -m pytest -v tests"
8-
CIBW_SKIP: "cp38-* pp38-*"
8+
# Free-threaded builds excluded for Python 3.14 because they do not support the limited API
9+
CIBW_SKIP: "cp38-* pp38-* cp314t-*"
910
PYTEST_TIMEOUT: 60
1011

1112
jobs:

0 commit comments

Comments
 (0)