From 1867af93663eb168413d4eaa801945a1b01471da Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sat, 27 Jun 2026 13:18:54 -0400 Subject: [PATCH] [actions] Comment out yubikey upgrade command in build.yml Comment out the upgrade command for yubikey dependency and add note about future upgrade. --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 887da2b2..5a13319c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -551,7 +551,10 @@ jobs: gh release download --repo "jay0lee/cryptography-wheels" --pattern "*win_arm64.whl" --clobber "$PYTHON" -m pip install cryptography-*.whl fi - "$PYTHON" -m pip install --upgrade ..[yubikey] + # "$PYTHON" -m pip install --upgrade ..[yubikey] + # TODO: once yubikey upgrades to cryptography 49 this should no longer be necessary + "$PYTHON" -m pip install --upgrade .. + "$PYTHON" -m pip install yubikey-manager --no-deps - name: Install PyInstaller if: matrix.goal == 'build'