Skip to content

Commit 09810ad

Browse files
committed
Skip pypy 3.8 building
1 parent 7f28231 commit 09810ad

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/wheels.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ jobs:
4444
with:
4545
submodules: true
4646

47-
- name: Set CIBW_SKIP
48-
run: echo "CIBW_SKIP=pp*" >> $GITHUB_ENV
49-
5047
- uses: pypa/[email protected]
5148

5249
- name: Verify clean directory

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ wheel.py-api = "cp312"
3838
[tool.cibuildwheel]
3939
# Necessary to see build output from the actual compilation
4040
build-verbosity = 1
41+
skip = ["pp38-*"] # Skip only PyPy 3.8
4142

4243
# Run pytest to ensure that the package was correctly built
4344
test-command = "pytest {project}/tests"
4445
test-requires = ["pytest", "numpy"]
4546

4647
# Don't test Python 3.8 wheels on macOS/arm64
4748
test-skip="cp38-macosx_*:arm64"
48-
# Don't test Python 3.9 wheels on manylinux_i686
49-
# test-skip="pp*-manylinux_i686"
5049

5150
# Needed for full C++17 support
5251
[tool.cibuildwheel.macos.environment]
5352
MACOSX_DEPLOYMENT_TARGET = "10.14"
53+

0 commit comments

Comments
 (0)