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

bumped cibuildwheel #104

Merged
merged 2 commits into from
Jul 7, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build_primary_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v3

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.19.2
env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_SKIP: "cp311-* cp312-* pp*"
Expand Down
21 changes: 9 additions & 12 deletions .github/workflows/build_secondary_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:
cibw_archs: "aarch64"
- os: windows-latest
cibw_archs: "ARM64"
- os: macos-latest
cibw_archs: "native x86_64"
- os: macos-14
cibw_archs: "native"
- os: macos-13
cibw_archs: "x86_64"

steps:
- name: Set up QEMU
Expand All @@ -32,7 +34,7 @@ jobs:
- uses: actions/checkout@v3

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.19.2
env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_SKIP: "cp311-* cp312-* pp*"
Expand All @@ -46,13 +48,8 @@ jobs:
path: ./wheelhouse/*.whl

build_sdist:
name: Build sdist on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
cibw_archs: "native"
name: Build sdist
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -64,10 +61,10 @@ jobs:
run: cp dist/frozendict-*.tar.gz dist/frozendict.tar.gz

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.19.2

env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_ARCHS: native
CIBW_BUILD: "cp310-*"
CIBW_SKIP: "*-musllinux_*"
CIBW_TEST_REQUIRES: pytest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ test/core.*
.idea/
.vs/
.coverage
coverage/
Loading