We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d18bb95 commit b2d1f78Copy full SHA for b2d1f78
1 file changed
.github/workflows/macos.yml
@@ -345,11 +345,8 @@ jobs:
345
PYTAG="-cp$(echo ${{ env.python_version }} | tr -d '.')"
346
mkdir universal_wheels
347
pip install delocate
348
- delocate-fuse -v x64_wheels/open3d-*${PYTAG}*.whl arm64_wheels/open3d-*${PYTAG}*.whl
349
- # Normalize file name as delocate-fuse doesn't update it
350
- OLD_WHL_NAME=$(basename x64_wheels/open3d-*${PYTAG}*.whl)
351
- NEW_WHL_NAME=${OLD_WHL_NAME/x86_64/universal2}
352
- mv x64_wheels/${OLD_WHL_NAME} universal_wheels/${NEW_WHL_NAME}
+ delocate-merge -v -w universal_wheels x64_wheels/open3d-*${PYTAG}*.whl arm64_wheels/open3d-*${PYTAG}*.whl
+ NEW_WHL_NAME=$(basename universal_wheels/open3d-*${PYTAG}*.whl)
353
echo "PIP_PKG_NAME=$NEW_WHL_NAME" >> $GITHUB_ENV
354
355
- name: Upload merged wheels
0 commit comments