14
14
permissions :
15
15
contents : read
16
16
17
- concurrency :
18
- group : ${{ github.workflow }}-${{ github.ref }}
19
- cancel-in-progress : true
17
+ # concurrency:
18
+ # group: ${{ github.workflow }}-${{ github.ref }}
19
+ # cancel-in-progress: true
20
20
21
21
jobs :
22
22
linux :
23
23
runs-on : ${{ matrix.platform.runner }}
24
24
strategy :
25
+ fail-fast : false
25
26
matrix :
26
27
platform :
27
28
- runner : ubuntu-latest
@@ -52,13 +53,13 @@ jobs:
52
53
version : " 0.5.x"
53
54
54
55
- name : Install Python versions
55
- run : uv python install 3.9 3.10 3.11 3.12 3.13 pypy3.10
56
+ run : uv python install 3.9 3.10 3.11 3.12 3.13
56
57
57
58
- name : Build wheels
58
59
uses : PyO3/maturin-action@v1
59
60
with :
60
61
target : ${{ matrix.platform.target }}
61
- args : --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -i pypy3.10 - -manifest-path python/Cargo.toml
62
+ args : --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/Cargo.toml
62
63
sccache : " true"
63
64
manylinux : ${{ matrix.platform.manylinux }}
64
65
- name : Upload wheels
70
71
musllinux :
71
72
runs-on : ${{ matrix.platform.runner }}
72
73
strategy :
74
+ fail-fast : false
73
75
matrix :
74
76
platform :
75
77
- runner : ubuntu-latest
@@ -90,13 +92,13 @@ jobs:
90
92
version : " 0.5.x"
91
93
92
94
- name : Install Python versions
93
- run : uv python install 3.9 3.10 3.11 3.12 3.13 pypy3.10
95
+ run : uv python install 3.9 3.10 3.11 3.12 3.13
94
96
95
97
- name : Build wheels
96
98
uses : PyO3/maturin-action@v1
97
99
with :
98
100
target : ${{ matrix.platform.target }}
99
- args : --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -i pypy3.10 - -manifest-path python/Cargo.toml
101
+ args : --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/Cargo.toml
100
102
sccache : " true"
101
103
manylinux : musllinux_1_2
102
104
- name : Upload wheels
@@ -108,6 +110,7 @@ jobs:
108
110
windows :
109
111
runs-on : ${{ matrix.platform.runner }}
110
112
strategy :
113
+ fail-fast : false
111
114
matrix :
112
115
platform :
113
116
- runner : windows-latest
@@ -137,6 +140,7 @@ jobs:
137
140
macos :
138
141
runs-on : ${{ matrix.platform.runner }}
139
142
strategy :
143
+ fail-fast : false
140
144
matrix :
141
145
platform :
142
146
- runner : macos-13
@@ -153,13 +157,13 @@ jobs:
153
157
version : " 0.5.x"
154
158
155
159
- name : Install Python versions
156
- run : uv python install 3.9 3.10 3.11 3.12 3.13 pypy3.10
160
+ run : uv python install 3.9 3.10 3.11 3.12 3.13
157
161
158
162
- name : Build wheels
159
163
uses : PyO3/maturin-action@v1
160
164
with :
161
165
target : ${{ matrix.platform.target }}
162
- args : --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -i pypy3.10 - -manifest-path python/Cargo.toml
166
+ args : --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/Cargo.toml
163
167
sccache : " true"
164
168
- name : Upload wheels
165
169
uses : actions/upload-artifact@v4
0 commit comments