From cf198a59c2d414b1459a87e25eba7a3f0aecffed Mon Sep 17 00:00:00 2001 From: Alec Edgington Date: Mon, 15 Apr 2024 11:40:41 +0100 Subject: [PATCH] Use delocate 0.10.x when building pytket wheels on macos-13-xlarge. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d247b1f44b..50e4b44cb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,7 +138,8 @@ jobs: cd pytket # Ensure wheels are compatible with MacOS 12.0 and later: export WHEEL_PLAT_NAME=macosx_12_0_arm64 - python${{ matrix.python-version }} -m pip install -U pip build delocate + python${{ matrix.python-version }} -m pip install -U pip build + python${{ matrix.python-version }} -m pip install delocate ~= 0.10.7 python${{ matrix.python-version }} -m build delocate-wheel -v -w "$GITHUB_WORKSPACE/wheelhouse/" "dist/pytket-"*".whl" - uses: actions/upload-artifact@v4