@@ -17,14 +17,15 @@ jobs:
17
17
# cibuildwheel builds linux wheels inside a manylinux container
18
18
# it also takes care of procuring the correct python version for us
19
19
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]
21
21
22
22
steps :
23
23
- uses : actions/checkout@v4
24
24
25
- - uses : pypa/cibuildwheel@v3.1.4
25
+ - uses : pypa/cibuildwheel@v2.23.3,
26
26
env :
27
27
CIBW_BUILD : " cp${{ matrix.python-version}}-*"
28
+ CIBW_ENABLE : cpython-freethreading
28
29
29
30
- uses : actions/upload-artifact@v4
30
31
with :
@@ -39,19 +40,20 @@ jobs:
39
40
fail-fast : false
40
41
matrix :
41
42
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]
43
44
44
45
steps :
45
46
- uses : actions/checkout@v4
46
47
47
48
- name : Build wheels
48
- uses : pypa/cibuildwheel@v2.22.0
49
+ uses : pypa/cibuildwheel@v2.23.3
49
50
env :
50
51
CIBW_BUILD : " cp${{ matrix.python-version}}-*"
51
52
CIBW_ARCHS : aarch64
52
53
CIBW_BUILD_VERBOSITY : 3
53
54
# https://github.com/rust-lang/cargo/issues/10583
54
55
CIBW_ENVIRONMENT_LINUX : PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI=true
56
+ CIBW_ENABLE : cpython-freethreading
55
57
56
58
- uses : actions/upload-artifact@v4
57
59
with :
0 commit comments