Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove win32 builds altogether #85

Merged
merged 1 commit into from
Oct 12, 2022
Merged
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
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ jobs:
CIBW_BUILD: ${{ matrix.py }}
CIBW_ARCHS_MACOS: x86_64 universal2
CIBW_ARCHS_LINUX: x86_64 aarch64
CIBW_ARCHS_WINDOWS: AMD64 x86
# No win32 ("x86") for Windows as scipy declared it has stopped releasing wheels
# from 1.8.0 onwards, officially from 1.9.3
CIBW_ARCHS_WINDOWS: AMD64
# Install test requirements and run the test-cmd
CIBW_TEST_EXTRAS: ${{ env.extra-requires }}
# {project} is a special string recognized by CIBW and replaced with the project dir
CIBW_TEST_COMMAND: ${{ env.test-cmd }} {project}
# * Scipy has stopped releasing win32 builds from python 3.10 onwards
# * Scipy has no wheels released for musllinux and will not build because OpenBLAS is not found
CIBW_SKIP: "cp310-win32 *-musllinux*"
CIBW_SKIP: "*-musllinux*"
# https://cibuildwheel.readthedocs.io/en/stable/options/#test-skip
# * Will avoid testing on emulated architectures (aarch64)
# * Skip trying to test arm64 builds on Intel Macs
Expand Down