diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index 6c1e8b08670..ab2c6402c23 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -63,7 +63,6 @@ jobs: uses: pypa/cibuildwheel@v2.15.0 env: CIBW_ARCHS_MACOS: "${{ matrix.macos_arch }}" - CIBW_SKIP: "cp312-*" - name: Upload wheels as workflow artifacts uses: actions/upload-artifact@v3 diff --git a/pyproject.toml b/pyproject.toml index 852f3237e6b..0359021e8fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -148,7 +148,7 @@ build-verbosity = 1 # - Architecture (64-bit only): amd64 / x86_64, universal2, and arm64 # - OS: Linux (no musl), Windows, and macOS build = "cp3*-*" -skip = ["*-manylinux_i686", "*-musllinux_*", "*-win32", "pp-*"] +skip = ["*-manylinux_i686", "*-musllinux_*", "*-win32", "pp-*", "cp312-*"] # This is the bare minimum needed to run the test suite. Pulling in the full # test_requirements.txt would download a bunch of other packages not necessary # here and would slow down the testing step a fair bit.