Skip to content

Commit cb98a7e

Browse files
authored
Merge pull request #42 from HiDiHlabs/binaries
Adjust supported architectures
2 parents adb2b3d + 05bf0ef commit cb98a7e

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-latest, windows-latest, macos-latest]
18+
os:
19+
- ubuntu-latest
20+
- ubuntu-24.04-arm
21+
- windows-latest
22+
- macos-latest
23+
- macos-26-intel
1924

2025
steps:
2126
- uses: actions/checkout@v6

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,15 @@ plugins = "numpy.typing.mypy_plugin"
9595
ignore-words-list = "coo,crate"
9696

9797
[tool.cibuildwheel]
98-
archs = 'auto64'
99-
build = 'cp311-*' # only build minimum python version because we use ABI3 builds
100-
skip = "pp*" # skip PyPy
98+
archs = "auto64"
99+
build = "cp311-*" # only build minimum python version because we use ABI3 builds
100+
skip = "pp*" # skip PyPy
101101

102102
[tool.cibuildwheel.linux]
103103
# cibuildwheel runs linux in containers so we need to install rust there
104104
before-all = "curl -sSf https://sh.rustup.rs | sh -s -- -y"
105105
environment = { PATH = "$PATH:$HOME/.cargo/bin" }
106+
107+
[tool.cibuildwheel.macos]
108+
# build for compatibility with macOS 11 and upwards
109+
environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" }

0 commit comments

Comments
 (0)