Skip to content

Commit

Permalink
Add PyPy 3.10 wheels (#182)
Browse files Browse the repository at this point in the history
* Skip setuptools 72.2.0 on PyPy

This is needed due to https://github.com/pypa/setuptools/issues/4571.

* Add PyPy 3.10 wheels
  • Loading branch information
QuLogic committed Aug 21, 2024
1 parent df19e18 commit e7f7b86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
pip install delvewheel
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
delvewheel repair -w {dest_dir} {wheel}
CIBW_BUILD: "cp312-* cp311-* pp39-*"
CIBW_BUILD: "cp312-* cp311-* pp39-* pp310-*"
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
CIBW_ARCHS_LINUX: ${{ matrix.archs }}
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
Expand Down
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@
changelog = "https://github.com/nucleic/kiwi/blob/main/releasenotes.rst"

[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools_scm[toml]>=3.4.3", "cppy>=1.2.0"]
requires = [
"setuptools>=61.2; implementation_name == 'cpython'",
"setuptools>=61.2,!=72.2.0; implementation_name != 'cpython'",
"setuptools_scm[toml]>=3.4.3",
"cppy>=1.2.0"
]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand Down

0 comments on commit e7f7b86

Please sign in to comment.