Skip to content

Commit

Permalink
cibuildwheel skips 3.12 too
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco-Sulla committed Mar 31, 2024
1 parent 45885ce commit abcc915
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_primary_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_SKIP: "cp311-* pp*"
CIBW_SKIP: "cp311-* cp312-* pp*"
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: >
python -X faulthandler {package}/test/debug.py &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_secondary_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_SKIP: "cp311-* pp*"
CIBW_SKIP: "cp311-* cp312-* pp*"
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: >
python -X faulthandler {package}/test/debug.py &&
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[tool.cibuildwheel]
skip=["cp311-*", "pp*"]
skip=["cp311-*", "cp312-*", "pp*"]

0 comments on commit abcc915

Please sign in to comment.