Skip to content

Commit eeeb6aa

Browse files
authored
Merge pull request #80 from url-kaist/ci/skip-pypy-wheels
ci(pypi): skip PyPy wheels so the v1.1.0 release can publish
2 parents 099a413 + b8580a0 commit eeeb6aa

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ jobs:
4848
- name: Build all wheels
4949
if: github.event_name == 'release'
5050
uses: pypa/cibuildwheel@v2.21.3
51+
env:
52+
# PyPy lacks the C API symbols pybind11 needs (PyModule_GetFilenameObject etc.).
53+
# Restrict to CPython only — PyPy native-extension support is not a goal here.
54+
CIBW_SKIP: "pp*"
5155
with:
5256
package-dir: ${{github.workspace}}/python/
5357

0 commit comments

Comments
 (0)