From 64bab82fc7113d2c38d152561dd0e55bda045904 Mon Sep 17 00:00:00 2001 From: joeljonsson Date: Tue, 7 Nov 2023 22:39:48 +0100 Subject: [PATCH] use pip installed delocate --- .github/workflows/build-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 2a526c4..c13deca 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -49,7 +49,7 @@ jobs: CIBW_SKIP: "*musllinux*" CIBW_ARCHS: "auto64" CIBW_BUILD_VERBOSITY: 1 - CIBW_REPAIR_WHEEL_COMMAND_MACOS: "pip uninstall -y delocate && pip install git+https://github.com/matthew-brett/delocate.git && delocate-listdeps {wheel} && delocate-wheel -w {dest_dir} -v {wheel}" + CIBW_REPAIR_WHEEL_COMMAND_MACOS: "pip install -U delocate && delocate-listdeps {wheel} && delocate-wheel -w {dest_dir} -v {wheel}" CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "pip install -U wheel delvewheel && python fix_windows_wheel.py {wheel} {dest_dir}" CIBW_TEST_REQUIRES: "pytest pytest-qt pytest-xvfb" CIBW_TEST_COMMAND: "python3 -m pytest -vv {project}/pyapr/tests"