Install pip in Python virtual environment setup

Added a step to download and install pip in the CI workflow.
This commit is contained in:
Jay Lee
2025-10-28 16:28:32 -04:00
committed by GitHub
parent 5a45f816e8
commit 625eddd73d

View File

@@ -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