-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcibuildwheel.toml
More file actions
33 lines (29 loc) · 1.21 KB
/
cibuildwheel.toml
File metadata and controls
33 lines (29 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.cibuildwheel]
skip = ["*_i686", "*_ppc64le", "*_s390x", "*_universal2"]
# We're only testing with essential test dependencies, not optional ones.
# Some of those require binary wheels (often missing for some platforms),
# or they slow down the test suite runs too much or simply aren't necessary.
test-requires = [
"pytest",
"pytest-xdist",
"threadpoolctl",
"pooch",
"hypothesis",
]
before-build = "bash {project}/tools/wheels/cibw_before_build.sh {project}"
test-command = "bash {project}/tools/wheels/cibw_test_command.sh {project}"
[tool.cibuildwheel.linux]
manylinux-x86_64-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"
musllinux-x86_64-image = "musllinux_1_2"
musllinux-aarch64-image = "musllinux_1_2"
[tool.cibuildwheel.linux.environment]
# RUNNER_OS is a GitHub Actions specific env var; define it here so it's
# defined when running cibuildwheel locally
RUNNER_OS="Linux"
# /project will be the $PWD equivalent inside the Docker container used to build the wheel
PKG_CONFIG_PATH="/project/.openblas"
[tool.cibuildwheel.macos.environment]
PKG_CONFIG_PATH = "{project}"
[tool.cibuildwheel.windows]
repair-wheel-command = "bash ./tools/wheels/repair_windows.sh {wheel} {dest_dir}"