From abcc915f876bb3e9d944b932cb4082a0a0a1981f Mon Sep 17 00:00:00 2001 From: Marco Sulla Date: Sun, 31 Mar 2024 23:25:09 +0200 Subject: [PATCH] cibuildwheel skips 3.12 too --- .github/workflows/build_primary_wheels.yml | 2 +- .github/workflows/build_secondary_wheels.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_primary_wheels.yml b/.github/workflows/build_primary_wheels.yml index b92fcce..12062b8 100644 --- a/.github/workflows/build_primary_wheels.yml +++ b/.github/workflows/build_primary_wheels.yml @@ -21,7 +21,7 @@ jobs: uses: pypa/cibuildwheel@v2.16.5 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 && diff --git a/.github/workflows/build_secondary_wheels.yml b/.github/workflows/build_secondary_wheels.yml index cb0fc3a..acf8599 100644 --- a/.github/workflows/build_secondary_wheels.yml +++ b/.github/workflows/build_secondary_wheels.yml @@ -35,7 +35,7 @@ jobs: uses: pypa/cibuildwheel@v2.16.5 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 && diff --git a/pyproject.toml b/pyproject.toml index 9be2eb1..4dde8b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [tool.cibuildwheel] -skip=["cp311-*", "pp*"] +skip=["cp311-*", "cp312-*", "pp*"]