Skip to content

Commit

Permalink
Merge pull request #104 from Marco-Sulla/cibuildwheel
Browse files Browse the repository at this point in the history
bumped cibuildwheel
  • Loading branch information
Marco-Sulla authored Jul 7, 2024
2 parents f6feb33 + c6739db commit 5073ca7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
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/

0 comments on commit 5073ca7

Please sign in to comment.