We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27dcf5e commit 4c5b030Copy full SHA for 4c5b030
.github/workflows/build_wheels.yml
@@ -2,6 +2,10 @@ name: Build
2
3
on: [push, pull_request]
4
5
+env:
6
+ CIBW_ARCHS_MACOS: x86_64 arm64
7
+ CIBW_BEFORE_BUILD_LINUX: "if command -v apk &> /dev/null; then apk add bsd-compat-headers; fi"
8
+
9
jobs:
10
build_wheels:
11
name: Build wheels on ${{ matrix.os }}
pyproject.toml
@@ -1,6 +1,3 @@
1
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
-
-[tool.cibuildwheel.linux]
-before-all = "if command -v apk &> /dev/null; then apk add bsd-compat-headers; fi"
0 commit comments