From 5ad29b75e777b042f4dcff084557ae672a4aa0d5 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 28 Oct 2025 12:36:14 -0400 Subject: [PATCH] Change pyscard installation to a GitHub commit. #1848 Updated pyscard installation to use a specific GitHub commit. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aaedda0a..30e44673 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -496,7 +496,7 @@ jobs: "$PYTHON" -m venv venv if [[ "$RUNNER_OS" == "Windows" ]]; then # hack till pyscard has a wheel for win arm64 - "$PYTHON" -m pip install --upgrade --force-reinstall pyscard + "$PYTHON" -m pip install --upgrade --force-reinstall git+https://github.com/LudovicRousseau/pyscard.git@dabf0491fc873e4b37be173014908daff4f42ec0 export PYTHON="${GITHUB_WORKSPACE}/venv/scripts/python.exe" else export PYTHON="${GITHUB_WORKSPACE}/venv/bin/python3" @@ -515,6 +515,7 @@ jobs: "$PYTHON" -m pip cache info echo "--list--" "$PYTHON" -m pip cache list + "$PYTHON" -m pip install git+https://github.com/LudovicRousseau/pyscard.git@dabf0491fc873e4b37be173014908daff4f42ec0 "$PYTHON" -m pip install --upgrade ..[yubikey] echo "after everything..." "$PYTHON" -m pip list