Skip to content

Commit 80c7b3d

Browse files
committed
Configure cibuildwheel
1 parent e65943d commit 80c7b3d

File tree

1 file changed

+48
-5
lines changed

1 file changed

+48
-5
lines changed

pyproject.toml

+48-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,53 @@ requires = [
66
]
77
build-backend = "setuptools.build_meta"
88

9-
# NOTE: overrides here are only used if CIBW_ENVIRONMENT is not set
109
[tool.cibuildwheel]
11-
environment = { PIP_CONSTRAINT="build-constraints.txt" }
10+
build = "*"
11+
skip = "cp36* cp37* cp38*"
12+
test-skip = ""
13+
free-threaded-support = false
1214

13-
[[tool.cibuildwheel.overrides]]
14-
select = "*-macosx_arm64"
15-
environment = { PIP_CONSTRAINT="build-constraints.txt", BLIS_COMPILER="clang -arch arm64" }
15+
archs = ["auto"]
16+
build-frontend = "default"
17+
config-settings = {}
18+
dependency-versions = "pinned"
19+
environment = {}
20+
environment-pass = []
21+
build-verbosity = 0
22+
23+
before-all = ""
24+
before-build = ""
25+
repair-wheel-command = ""
26+
27+
test-command = ""
28+
before-test = ""
29+
test-requires = []
30+
test-extras = []
31+
32+
container-engine = "docker"
33+
34+
manylinux-x86_64-image = "manylinux2014"
35+
manylinux-i686-image = "manylinux2014"
36+
manylinux-aarch64-image = "manylinux2014"
37+
manylinux-ppc64le-image = "manylinux2014"
38+
manylinux-s390x-image = "manylinux2014"
39+
manylinux-pypy_x86_64-image = "manylinux2014"
40+
manylinux-pypy_i686-image = "manylinux2014"
41+
manylinux-pypy_aarch64-image = "manylinux2014"
42+
43+
musllinux-x86_64-image = "musllinux_1_2"
44+
musllinux-i686-image = "musllinux_1_2"
45+
musllinux-aarch64-image = "musllinux_1_2"
46+
musllinux-ppc64le-image = "musllinux_1_2"
47+
musllinux-s390x-image = "musllinux_1_2"
48+
49+
50+
[tool.cibuildwheel.linux]
51+
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
52+
53+
[tool.cibuildwheel.macos]
54+
repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
55+
56+
[tool.cibuildwheel.windows]
57+
58+
[tool.cibuildwheel.pyodide]

0 commit comments

Comments
 (0)