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

REL: upgrade cuilbuildwheel (2.3.0 -> 2.4.0) #3891

Merged
merged 3 commits into from May 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/wheels.yaml
Expand Up @@ -7,6 +7,9 @@ on:
- stable
tags:
- 'yt-*'
pull_request:
paths:
- '.github/workflows/wheels.yaml'
workflow_dispatch:

jobs:
Expand All @@ -29,14 +32,14 @@ jobs:
- uses: actions/checkout@v2

- name: Build wheels for CPython
uses: pypa/cibuildwheel@v2.3.0
uses: pypa/cibuildwheel@v2.4.0
with:
output-dir: dist
env:
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-*"
CIBW_SKIP: "*-musllinux_*" # numpy doesn't have wheels for musllinux so we can't build some quickly and without bloating
CIBW_ARCHS_LINUX: "x86_64"
CIBW_ARCHS_MACOS: "x86_64"
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_WINDOWS: "auto"
CIBW_ENVIRONMENT: "LDFLAGS='-static-libstdc++'"
CIBW_BUILD_VERBOSITY: 1
Expand Down