1
1
[tool .cibuildwheel ]
2
2
# Note: the below skip command doesn't do much currently, the platforms to
3
3
# build wheels for in CI are controlled in `.github/workflows/wheels.yml`.
4
+ # universal2 wheels are not supported (see gh-21233), use `delocate-fuse` if you need them
4
5
skip = [" *_i686" , " *_ppc64le" , " *_s390x" , " *_universal2" ]
5
6
before-build = " bash {project}/tools/wheels/cibw_before_build.sh {project}"
6
7
before-test = " pip install -r {project}/requirements/wheel_test_requirements.txt"
@@ -24,16 +25,6 @@ musllinux-aarch64-image = "musllinux_1_2"
24
25
RUNNER_OS =" Linux"
25
26
# /project will be the $PWD equivalent inside the Docker container used to build the wheel
26
27
PKG_CONFIG_PATH =" /project/.openblas"
27
- LD_LIBRARY_PATH =" $LD_LIBRARY_PATH:/project/.openblas/lib"
28
-
29
- [tool .cibuildwheel .macos ]
30
- # universal2 wheels are not supported (see gh-21233), use `delocate-fuse` if you need them
31
- # Not clear why the DYLD_LIBRARY_PATH is not passed through from the environment
32
- repair-wheel-command = [
33
- " export DYLD_LIBRARY_PATH=$PWD/.openblas/lib" ,
34
- " echo DYLD_LIBRARY_PATH $DYLD_LIBRARY_PATH" ,
35
- " delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}" ,
36
- ]
37
28
38
29
[tool .cibuildwheel .windows ]
39
30
config-settings = {setup-args = [" --vsenv" , " -Dallow-noblas=false" ], build-dir =" build" }
0 commit comments