diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index fce4995501..2d09ca2806 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -95,7 +95,7 @@ jobs: source .venv/bin/activate python -m cibuildwheel --output-dir wheelhouse env: - CIBW_SKIP: pp* cp314t-*ppc64le *win32 *musl* + CIBW_SKIP: pp* *win32 *musl* CIBW_ARCHS_LINUX: ppc64le - uses: actions/upload-artifact@v4 with: @@ -187,7 +187,7 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse env: - CIBW_SKIP: pp* cp314t-win* *amd64 *musl* + CIBW_SKIP: pp* c*t-win* *amd64 *musl* - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl diff --git a/pyproject.toml b/pyproject.toml index 8c4c3a0433..e5c6494d9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -131,7 +131,7 @@ extend-ignore-words-re = [ [tool.cibuildwheel] manylinux-x86_64-image = "manylinux2014" manylinux-i686-image = "manylinux2014" -skip = "pp* cp314t-win* cp314t-*i686 cp314t-*s390x cp314t-*ppc64le *win32 *musllinux*i686" +skip = "pp* cp314t-win* c*t-*i686 cp314t-*s390x *win32 *musllinux*i686" test-requires = "networkx" test-command = "python -m unittest discover {project}/tests" before-build = 'pip install -U "maturin>=1.9.0,<2.0"'