From 10fbf0326241b6795079c98b46d902b25b567ac4 Mon Sep 17 00:00:00 2001 From: Zach Lewis Date: Mon, 30 Sep 2024 12:13:48 -0400 Subject: [PATCH] ci(wheels): MacOS x86_64: reenable WebP Signed-off-by: Zach Lewis --- .github/workflows/wheel.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index c9d256f9e5..d18170af69 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -275,7 +275,7 @@ jobs: # Disable HEIF and WebP plugins until we can provide local # build recipes that do not include GPL-licensed dynamic libraries. USE_Libheif: 'OFF' - USE_WebP: 'OFF' + # USE_WebP: 'OFF' - uses: actions/upload-artifact@v4 with: diff --git a/pyproject.toml b/pyproject.toml index 021139fc82..2802cd51ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -155,7 +155,7 @@ SKBUILD_CMAKE_BUILD_TYPE = "MinSizeRel" # On macOS and Linux, run a custom repair-wheel-command after the build. # See tasks.py for more details. [tool.cibuildwheel.macos] -before-build = "pip install 'repairwheel' && pip install invoke && brew uninstall --ignore-dependencies freetype" +before-build = "pip install 'repairwheel' && pip install invoke && brew uninstall --ignore-dependencies harfbuzz fontconfig pango cairo freetype" repair-wheel-command = "invoke wheel-repair --build-dir ${SKBUILD_BUILD_DIR} --wheel-path {wheel} --output-dir {dest_dir}" [tool.cibuildwheel.linux]