From 625eddd73dafea593d7e9b2777d8609304f4bb3d Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 28 Oct 2025 16:28:32 -0400 Subject: [PATCH] Install pip in Python virtual environment setup Added a step to download and install pip in the CI workflow. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 57c8e97e..7dfd9e83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -482,6 +482,8 @@ jobs: - name: Create and use Python venv run: | cd "$GITHUB_WORKSPACE" + curl -o get-pip.py https://bootstrap.pypa.io/get-pip.py + "$PYTHON" get-pip.py "$PYTHON" -m venv venv if [[ "$RUNNER_OS" == "Windows" ]]; then # hack till pyscard has a wheel for win arm64