Skip to content

Commit dead681

Browse files
committed
adjust cibuildwheel config
1 parent 4d4b450 commit dead681

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build_wheels.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ jobs:
1717
# cibuildwheel builds linux wheels inside a manylinux container
1818
# it also takes care of procuring the correct python version for us
1919
os: [ubuntu-latest, windows-latest, macos-latest]
20-
python-version: [39, 310, 311, 312, 313, 313t, 314, 314t]
20+
python-version: [39, 310, 311, 312, 313, 313t]
2121

2222
steps:
2323
- uses: actions/checkout@v4
2424

25-
- uses: pypa/cibuildwheel@v3.1.4
25+
- uses: pypa/cibuildwheel@v2.23.3,
2626
env:
2727
CIBW_BUILD: "cp${{ matrix.python-version}}-*"
28+
CIBW_ENABLE: cpython-freethreading
2829

2930
- uses: actions/upload-artifact@v4
3031
with:
@@ -39,19 +40,20 @@ jobs:
3940
fail-fast: false
4041
matrix:
4142
os: [ubuntu-24.04-arm]
42-
python-version: [39, 310, 311, 312, 313, 313t, 314, 314t]
43+
python-version: [39, 310, 311, 312, 313, 313t]
4344

4445
steps:
4546
- uses: actions/checkout@v4
4647

4748
- name: Build wheels
48-
uses: pypa/cibuildwheel@v2.22.0
49+
uses: pypa/cibuildwheel@v2.23.3
4950
env:
5051
CIBW_BUILD: "cp${{ matrix.python-version}}-*"
5152
CIBW_ARCHS: aarch64
5253
CIBW_BUILD_VERBOSITY: 3
5354
# https://github.com/rust-lang/cargo/issues/10583
5455
CIBW_ENVIRONMENT_LINUX: PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI=true
56+
CIBW_ENABLE: cpython-freethreading
5557

5658
- uses: actions/upload-artifact@v4
5759
with:

0 commit comments

Comments
 (0)