Skip to content

Commit cc1c507

Browse files
committed
bumped cibuildwheel
1 parent f6feb33 commit cc1c507

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.github/workflows/build_primary_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v3
2525

2626
- name: Build wheels
27-
uses: pypa/cibuildwheel@v2.16.5
27+
uses: pypa/cibuildwheel@v2.19.2
2828
env:
2929
CIBW_ARCHS: ${{ matrix.cibw_archs }}
3030
CIBW_SKIP: "cp311-* cp312-* pp*"

.github/workflows/build_secondary_wheels.yml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ jobs:
1919
cibw_archs: "aarch64"
2020
- os: windows-latest
2121
cibw_archs: "ARM64"
22-
- os: macos-latest
23-
cibw_archs: "native x86_64"
22+
- os: macos-14
23+
cibw_archs: "native"
24+
- os: macos-13
25+
cibw_archs: "x86_64"
2426

2527
steps:
2628
- name: Set up QEMU
@@ -32,7 +34,7 @@ jobs:
3234
- uses: actions/checkout@v3
3335

3436
- name: Build wheels
35-
uses: pypa/cibuildwheel@v2.16.5
37+
uses: pypa/cibuildwheel@v2.19.2
3638
env:
3739
CIBW_ARCHS: ${{ matrix.cibw_archs }}
3840
CIBW_SKIP: "cp311-* cp312-* pp*"
@@ -46,13 +48,8 @@ jobs:
4648
path: ./wheelhouse/*.whl
4749

4850
build_sdist:
49-
name: Build sdist on ${{ matrix.os }}
50-
runs-on: ${{ matrix.os }}
51-
strategy:
52-
matrix:
53-
include:
54-
- os: ubuntu-latest
55-
cibw_archs: "native"
51+
name: Build sdist
52+
runs-on: ubuntu-latest
5653

5754
steps:
5855
- uses: actions/checkout@v3
@@ -64,11 +61,11 @@ jobs:
6461
run: cp dist/frozendict-*.tar.gz dist/frozendict.tar.gz
6562

6663
- name: Build wheels
67-
uses: pypa/cibuildwheel@v2.16.5
64+
uses: pypa/cibuildwheel@v2.19.2
6865

6966
env:
70-
CIBW_ARCHS: ${{ matrix.cibw_archs }}
71-
CIBW_BUILD: "cp310-*"
67+
CIBW_ARCHS: native
68+
CIBW_PROJECT_REQUIRES_PYTHON: "==3.10"
7269
CIBW_SKIP: "*-musllinux_*"
7370
CIBW_TEST_REQUIRES: pytest
7471
CIBW_TEST_COMMAND: >

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ test/core.*
3232
.idea/
3333
.vs/
3434
.coverage
35+
coverage/

0 commit comments

Comments
 (0)