From a0081ac6417303ff4447e65490638c7777722573 Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Tue, 1 Oct 2024 15:12:55 +0200 Subject: [PATCH] Install swig from wheel --- .github/workflows/macOS.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 635e01d1..289bc2b6 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -37,6 +37,8 @@ jobs: grep pyscard requirements.txt >> source-reqs.txt # Remove non-universal packages poetry run pip uninstall -y cryptography cffi pyscard + # Install swig from wheel + poetry run pip install swig # Build cffi from source to get universal build poetry run pip install --upgrade -r source-reqs.txt --no-binary :all: # Explicitly install pre-build universal build of cryptography