Comment out pyscard installation in build workflow

Commented out pip install for pyscard to avoid build issues in venv.
This commit is contained in:
Jay Lee
2025-10-30 11:31:05 -04:00
committed by GitHub
parent 8ebc76905a
commit d2378d6e61

View File

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