From 3e52d6a92410ce439100a7c48af3b805b733601b Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 16 Sep 2025 18:26:16 -0400 Subject: [PATCH] actions: we no longer need a custom win ARM64 cryptography --- .github/workflows/build.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e77550bb..10402bb8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -458,21 +458,12 @@ jobs: "$PYTHON" -m pip install --upgrade setuptools-scm "$PYTHON" -m pip list - - name: Custom wheels for Win arm64 - if: runner.os == 'Windows' && runner.arch == 'ARM64' - run: | - latest_crypt_whl=$(curl https://api.github.com/repos/jay0lee/cryptography/releases/latest -s | jq -r .assets.[0].browser_download_url) - echo "Downloading ${latest_crypt_whl}..." - curl -O -L "$latest_crypt_whl" - "$PYTHON" -m pip install cryptography*.whl - - name: Install pip requirements run: | echo "before anything..." "$PYTHON" -m pip list "$PYTHON" -m pip install --upgrade ..[yubikey] "$PYTHON" -m pip list - #"$PYTHON" -m pip install --force-reinstall --no-deps --upgrade cryptography echo "after everything..." "$PYTHON" -m pip list