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*"]