Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
os: [ubuntu-latest, windows-latest, macos-latest, macos-26-intel, ubuntu-24.04-arm, windows-11-arm]

steps:
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v8.1.0

- uses: pypa/cibuildwheel@v3.4
env:
CIBW_ARCHS_MACOS: auto universal2

- name: Verify clean directory
run: git diff --exit-code
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.15"
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
- id: ruff-check
args: ["--fix"]
- id: ruff-format

# Changes tabs to spaces
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ python_example
[actions-wheels-badge]: https://github.com/pybind/python_example/workflows/Wheels/badge.svg

An example project built with [pybind11](https://github.com/pybind/pybind11).
This requires Python 3.7+; for older versions of Python, check the commit
This requires Python 3.9+; for older versions of Python, check the commit
history.

Installation
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
test-command = "python {project}/tests/test.py"
test-skip = "*universal2:arm64"
enable = ["pypy", "graalpy"]
build-frontend = "build[uv]"


[tool.ruff]
show-fixes = true
target-version = "py39"

[tool.ruff.lint]
Expand Down
Loading