Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jobs:
- [macos-14, macosx_arm64, openblas]
- [macos-14, macosx_arm64, accelerate]
- [windows-2022, win_amd64, ""]
- [windows-2022, win32, ""]
- [windows-11-arm, win_arm64, ""]
python: ["cp312", "cp313", "cp314", "cp314t", "cp315", "cp315t"]
exclude:
Expand All @@ -69,8 +68,7 @@ jobs:
include:
- buildplat: [ ubuntu-22.04, pyodide_wasm32, "" ]
python: "cp313"
env:
IS_32_BIT: ${{ matrix.buildplat[1] == 'win32' }} # used in a cibw_*.sh script


steps:
- name: Checkout numpy-release
Expand All @@ -87,12 +85,6 @@ jobs:
submodules: true
persist-credentials: false

- name: Setup MSVC (32-bit)
if: ${{ matrix.buildplat[1] == 'win32' }}
uses: bus1/cabuild/action/msdevshell@e22aba57d6e74891d059d66501b6b5aed8123c4d # v1
with:
architecture: 'x86'

- name: win_arm64 - set environment variables
if: ${{ matrix.buildplat[1] == 'win_arm64' }}
run: |
Expand Down
4 changes: 0 additions & 4 deletions tools/wheels/cibw_test_command.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ PROJECT_DIR="$1"

python -c "import numpy; numpy.show_config()"

if [[ $RUNNER_OS == "Windows" && $IS_32_BIT == true ]] ; then
# Avoid this in GHA: "ERROR: Found GNU link.exe instead of MSVC link.exe"
rm /c/Program\ Files/Git/usr/bin/link.EXE
fi

# Set available memory value to avoid OOM problems on aarch64 (see gh-22418)
export NPY_AVAILABLE_MEM="4 GB"
Expand Down