Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
CIBW_REPAIR_WHEEL_COMMAND_MACOS: |
export TORCH_LIB=$(python -c 'import torch; print(torch.__path__[0] + "/lib")')
export DYLD_FALLBACK_LIBRARY_PATH="$(pwd)/build/lib:$TORCH_LIB:$DYLD_FALLBACK_LIBRARY_PATH"
delocate-wheel -e torch -e harp_release -w {dest_dir} {wheel}
delocate-wheel -e torch* -e netcdf* -e harp_release -w {dest_dir} {wheel}
run: |
export TORCH_LIB=$(python -c 'import torch; print(torch.__path__[0] + "/lib")')
export DYLD_FALLBACK_LIBRARY_PATH="$TORCH_LIB:$DYLD_FALLBACK_LIBRARY_PATH"
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
-DCMAKE_PREFIX_PATH="$TORCH_CMAKE_PREFIX_PATH"
cmake --build build --parallel 3
CIBW_REPAIR_WHEEL_COMMAND_LINUX: |
auditwheel repair --exclude lib*.so -w {dest_dir} {wheel}
auditwheel repair --exclude torch* --exclude netcdf* --exclude harp_release -w {dest_dir} {wheel}
run: |
pip install cibuildwheel
python -m cibuildwheel --output-dir wheelhouse
Expand Down
Loading