From 94ce5ea8d0909e54acaef13ecd896e67ddd02160 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 3 Feb 2026 07:03:50 +0100 Subject: [PATCH] MAINT: install anaconda-client with `--only-binary :all:`, remove Rust dep This is a follow-up to gh-33 --- .github/workflows/wheels.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 8d0d34a..c64b388 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -165,13 +165,7 @@ jobs: - name: win-arm64 install anaconda client if: (github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main')) && matrix.buildplat[1] == 'win_arm64' run: | - # Rust installation needed for rpds-py. - Invoke-WebRequest https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe -UseBasicParsing -Outfile rustup-init.exe - .\rustup-init.exe -y - $env:PATH="$env:PATH;$env:USERPROFILE\.cargo\bin" - # pinned because cryptography pulled win-arm64 wheels in 46.0.4 - pip install cryptography==46.0.3 - pip install anaconda-client + pip install --only-binary :all: anaconda-client - name: Upload to anaconda.org if: (github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main')) && github.repository == 'numpy/numpy-release'