Skip to content

Commit

Permalink
skip some cibuildwheels
Browse files Browse the repository at this point in the history
  • Loading branch information
alastair committed Jun 10, 2024
1 parent 90c5540 commit c0bbcbb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, macos-13]
os: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ find = {} # Scan the project directory with the default parameters
[build-system]
requires = ["setuptools", "wheel", "oldest-supported-numpy", "Cython"]
build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
# Skip unneeded wheels: PyPy, python 3.6-3.8, linux 32 bit, PPC, s390
skip = ["pp*", "cp36*", "cp37*", "cp38", "*i686*", "*ppc64le*", "*s390x*"]

0 comments on commit c0bbcbb

Please sign in to comment.