From 18ce64886d2ef43c1fb6764083091a339d570156 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sat, 27 Jun 2026 13:32:54 -0400 Subject: [PATCH] Modify yubikey-manager installation command Update yubikey-manager installation to avoid dependency installation. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23f606e4..f7cefd2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -553,8 +553,8 @@ jobs: fi # "$PYTHON" -m pip install --upgrade ..[yubikey] # TODO: once yubikey upgrades to cryptography 49 this should no longer be necessary - "$PYTHON" -m pip install yubikey-manager==5.9.1 - "$PYTHON" -m pip install --upgrade .. + "$PYTHON" -m pip install yubikey-manager==5.9.1 --no-deps + "$PYTHON" -m pip install ..[yubikey] - name: Install PyInstaller if: matrix.goal == 'build'