This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to tag v0.12.0-a1
in repository https://gitbox.apache.org/repos/asf/fory.git

commit 4497140bc695367df4b11c632d21ef79c26965e7
Author: chaokunyang <[email protected]>
AuthorDate: Thu Aug 14 20:51:28 2025 +0800

    fix delocate on macos
---
 ci/deploy.sh | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/ci/deploy.sh b/ci/deploy.sh
index 6cce344b0..08323933c 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -90,21 +90,9 @@ build_pyfory() {
     auditwheel repair ../dist/pyfory-*-linux_*.whl --plat "$PLAT" -w ../dist/
     rm ../dist/pyfory-*-linux_*.whl
   elif [[ "$OSTYPE" == "darwin"* ]]; then
-    # macOS: use delocate to bundle dependencies and fix wheel tags
-    pip install delocate
-    mkdir -p ../dist_repaired
-    delocate-wheel -w ../dist_repaired/ ../dist/pyfory-*-macosx*.whl
-    rm ../dist/pyfory-*-macosx*.whl
-    mv ../dist_repaired/* ../dist/
-    rmdir ../dist_repaired
+    echo "Skip macos wheel repair"
   elif [[ "$OSTYPE" == "msys" || "$OSTYPE" == "win32" ]]; then
-    # Windows: use delvewheel to bundle dependencies
-    pip install delvewheel
-    mkdir -p ../dist_repaired
-    delvewheel repair ../dist/pyfory-*-win*.whl -w ../dist_repaired/
-    rm ../dist/pyfory-*-win*.whl
-    mv ../dist_repaired/* ../dist/
-    rmdir ../dist_repaired
+    echo "Skip windows wheel repair"
   fi
   popd
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to