From 2204c35193fc4de4e68f77e9a8425870e85e66db Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 24 Apr 2025 07:53:48 -0400 Subject: [PATCH] actions: install rust, fix cryptography install --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32fd849e..39a7b13e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -465,10 +465,12 @@ jobs: curl -O -L "$latest_crypt_whl" "$PYTHON" -m pip install cryptography*.whl + - uses: actions-rust-lang/setup-rust-toolchain@v1 + - name: Compile cryptography from source (no legacy) if: runner.os != 'Windows' || runner.arch != 'ARM64' run: | - pip install --no-binary cryptography + pip install --no-binary ":all:" --force cryptography - name: Install pip requirements run: |