From d2190cfec616513e55df4f03a45819a5e21c9b16 Mon Sep 17 00:00:00 2001 From: Flowseal Date: Wed, 18 Mar 2026 18:15:06 +0300 Subject: [PATCH] cffi universal2 fix --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3bbcc65..98a6861 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -102,6 +102,7 @@ jobs: --python-version 3.12 \ --implementation cp \ -d wheelhouse/arm64 \ + 'cffi>=2.0.0' \ Pillow==12.1.0 \ psutil==7.0.0 @@ -111,6 +112,7 @@ jobs: --python-version 3.12 \ --implementation cp \ -d wheelhouse/x86_64 \ + 'cffi>=2.0.0' \ Pillow==12.1.0 python3.12 -m pip download \ @@ -121,6 +123,11 @@ jobs: -d wheelhouse/x86_64 \ psutil==7.0.0 + delocate-merge \ + wheelhouse/arm64/cffi-*.whl \ + wheelhouse/x86_64/cffi-*.whl \ + -w wheelhouse/universal2 + delocate-merge \ wheelhouse/arm64/pillow-12.1.0-*.whl \ wheelhouse/x86_64/pillow-12.1.0-*.whl \