-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Let us try to install libunwind on its own rather than with l…
…lvm" This reverts commit 19b0b12.
- Loading branch information
1 parent
19b0b12
commit b6f6cf1
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,11 +37,12 @@ jobs: | |
cibw: | ||
build: "cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64" | ||
env: | ||
MACOSX_DEPLOYMENT_TARGET: "12.0" | ||
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}" | ||
CIBW_SKIP: "*musllinux*" | ||
CIBW_ARCHS: "${{ matrix.cibw.arch || 'auto' }}" | ||
CIBW_MANYLINUX_X86_64_IMAGE: "${{ matrix.cibw.manylinux_image }}" | ||
CIBW_BEFORE_BUILD_MACOS: "brew install libomp libunwind && brew link --overwrite [email protected] && brew link --force libomp && brew link --force libunwind" | ||
CIBW_BEFORE_BUILD_MACOS: "brew install libomp llvm && brew link --overwrite [email protected] && brew link --force libomp" | ||
CIBW_REPAIR_WHEEL_COMMAND_MACOS: "delocate-listdeps {wheel} && delocate-wheel --verbose --require-archs {delocate_archs} -w {dest_dir} {wheel}" | ||
# to install latest delocate package | ||
CIBW_DEPENDENCY_VERSIONS: "latest" | ||
|