Skip to content

Commit 1f34b06

Browse files
committed
github actions: drop manylinux_2_24
manylinux_2_24 depends on Debian stretch which is EOL and does not work any more. Use manylinux_2_28 instead.
1 parent 2818c5c commit 1f34b06

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232
name: wheelhouse-manylinux_2_17_i686
233233
path: wheelhouse
234234

235-
build-manylinux_2_24_x86_64:
235+
build-manylinux_2_28_x86_64:
236236

237237
needs:
238238
- test
@@ -247,17 +247,17 @@ jobs:
247247
fetch-depth: 0
248248

249249
- name: Build and test ${{ matrix.manylinux-tag }} wheels
250-
uses: docker://quay.io/pypa/manylinux_2_24_x86_64
250+
uses: docker://quay.io/pypa/manylinux_2_28_x86_64
251251
with:
252-
args: ./build-wheels.sh manylinux_2_24_x86_64
252+
args: ./build-wheels.sh manylinux_2_28_x86_64
253253

254254
- name: Upload artifacts
255255
uses: actions/upload-artifact@v2
256256
with:
257-
name: wheelhouse-manylinux_2_24_x86_64
257+
name: wheelhouse-manylinux_2_28_x86_64
258258
path: wheelhouse
259259

260-
build-manylinux_2_24_i686:
260+
build-manylinux_2_28_i686:
261261

262262
needs:
263263
- test
@@ -272,14 +272,14 @@ jobs:
272272
fetch-depth: 0
273273

274274
- name: Build and test ${{ matrix.manylinux-tag }} wheels
275-
uses: docker://quay.io/pypa/manylinux_2_24_i686
275+
uses: docker://quay.io/pypa/manylinux_2_28_i686
276276
with:
277-
args: linux32 ./build-wheels.sh manylinux_2_24_i686
277+
args: linux32 ./build-wheels.sh manylinux_2_28_i686
278278

279279
- name: Upload artifacts
280280
uses: actions/upload-artifact@v2
281281
with:
282-
name: wheelhouse-manylinux_2_24_i686
282+
name: wheelhouse-manylinux_2_28_i686
283283
path: wheelhouse
284284

285285

@@ -293,8 +293,8 @@ jobs:
293293
- build-manylinux_2_12_i686
294294
- build-manylinux_2_17_x86_64
295295
- build-manylinux_2_17_i686
296-
- build-manylinux_2_24_x86_64
297-
- build-manylinux_2_24_i686
296+
- build-manylinux_2_28_x86_64
297+
- build-manylinux_2_28_i686
298298

299299
runs-on: ubuntu-latest
300300

0 commit comments

Comments
 (0)