From a42b0aee34451e105707e328fefbb0c2eb57d99f Mon Sep 17 00:00:00 2001 From: Alberto Sottile Date: Sun, 19 Mar 2023 22:39:04 +0100 Subject: [PATCH] Actions macOS: force universal wheels for charset-normalizer --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 96cb909..122c184 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -104,6 +104,10 @@ jobs: pip3 download --platform macosx_10_10_universal2 --only-binary :all: --no-deps --dest . cryptography pip3 install --no-cache-dir --no-index --find-links . cryptography + pip3 uninstall charset-normalizer -y + pip3 download --platform macosx_10_9_universal2 --only-binary :all: --no-deps --dest . charset-normalizer + pip3 install --no-cache-dir --no-index --find-links . charset-normalizer + - name: Check Python dependencies run: | python3 -c "from PySide6 import __version__; print(__version__)"