From dc827b94e5b55a98a8443fd7a5355cb9c5db7940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Fri, 25 Oct 2024 18:55:37 +0200 Subject: [PATCH] Switch to venv on macOS --- .github/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14cb9f3..6de1e1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,10 +114,12 @@ jobs: sudo apt-get remove needrestart || echo Ignored sudo apt-get install -y libssl-dev zlib1g-dev python3-cryptography - - name: Install brew dependencies (macOS) + - name: Set up Python virtual environment (macOS) if: runner.os == 'macOS' run: | - brew install python@3.8 + python -m venv venv + echo "VIRTUAL_ENV=${{github.workspace}}/venv" >> $GITHUB_ENV + echo "${{github.workspace}}/venv/bin" >> $GITHUB_PATH - name: Install Xcode (macOS) if: runner.os == 'macOS' @@ -134,9 +136,8 @@ jobs: - name: Install python3 cryptography module (macOS) if: runner.os == 'macOS' run: | - python3.8 -m ensurepip - python3.8 -m pip install --upgrade pip - python3.8 -m pip install cryptography + pip install --upgrade pip + pip install cryptography - name: Find the latest version of Python (Windows) if: runner.os == 'Windows' @@ -181,9 +182,9 @@ jobs: working-directory: ${{github.workspace}}/build if: runner.os == 'macOS' run: | - python3.8 --version - python3.8 -c "import sys; print(sys.executable)" - python3.8 -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')" + python --version + python -c "import sys; print(sys.executable)" + python -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')" - name: List files (Linux/macOS) if: runner.os != 'Windows'