From 8877445ba3a6eb6709dc4ca6c79031850e87cd06 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 27 Apr 2024 14:09:44 +0200 Subject: [PATCH] [github-actions] Attempt to fix pip3 cython installation for macOS --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 584f2e9ec..b5c2c2f15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,7 +74,9 @@ jobs: else brew install libtool autoconf automake pkgconfig fi - pip3 install cython + python3 -m venv pyenv + source pyenv/bin/activate + python3 -m pip install cython shell: bash - name: fetch libplist uses: dawidd6/action-download-artifact@v3