From d2378d6e611f9f622fbbdb08a8f61e90d46b3183 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 30 Oct 2025 11:31:05 -0400 Subject: [PATCH] Comment out pyscard installation in build workflow Commented out pip install for pyscard to avoid build issues in venv. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30751e34..2bf1c483 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -486,6 +486,9 @@ jobs: "$PYTHON" get-pip.py "$PYTHON" -m venv venv if [[ "$RUNNER_OS" == "Windows" ]]; then + # pyscard seems to build outside venv but not in it. + # build it so it's cached. + "$PYTHON" -m pip install --upgrade pyscard export PYTHON="${GITHUB_WORKSPACE}/venv/scripts/python.exe" else export PYTHON="${GITHUB_WORKSPACE}/venv/bin/python3"