From 25c44a0920a2a7723c9a67b4ba79918fd8a79e65 Mon Sep 17 00:00:00 2001 From: Mike Gevaert Date: Wed, 16 Aug 2023 13:13:54 +0200 Subject: [PATCH] Skip Python 3.12 RC wheel builds * it was enabled in cibuildwheel: https://github.com/pypa/cibuildwheel/pull/1565 * however, we won't be uploading these, so we don't need to build them yet. --- .github/workflows/publish-sdist-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-sdist-wheels.yml b/.github/workflows/publish-sdist-wheels.yml index aadeb2d4..5f333bfa 100644 --- a/.github/workflows/publish-sdist-wheels.yml +++ b/.github/workflows/publish-sdist-wheels.yml @@ -4,7 +4,7 @@ on: [pull_request, push] env: CIBW_BUILD_VERBOSITY: 3 CIBW_BUILD: 'cp*' - CIBW_SKIP: 'cp35-* cp36-* cp37-* *-musllinux_* *-manylinux_i686' + CIBW_SKIP: 'cp35-* cp36-* cp37-* *-musllinux_* *-manylinux_i686 cp312-*' CIBW_TEST_COMMAND: ( cd {project}/python/tests; python -m unittest -v ) jobs: