@@ -126,24 +126,8 @@ jobs:
126
126
python-version : ${{ steps.linux-py-version.outputs.python-version }}
127
127
architecture : ${{ matrix.architecture }}
128
128
129
- - name : Create wheel for manylinux 2010 and 1
130
- # this step uses the image provided by pypa here https://github.com/pypa/manylinux to generate the wheels on linux
131
- # the action uses the image for manylinux2010 but can generate also a manylinux1 wheel
132
- # change the tag of this image to change the image used
133
- uses : RalfG/python-wheels-manylinux-build@v0.5.0-manylinux2010_x86_64
134
- # this action generates 3 wheels in dist/. linux manylinux1 and manylinux2010
135
- # TODO(vytas): Drop manylinux 2010 support for all wheels:
136
- # https://github.com/pypa/manylinux/issues/1281#
137
- if : ${{ matrix.python-version != 'cp311-cp311' }}
138
- with :
139
- python-versions : ${{ matrix.python-version }}
140
- build-requirements : " setuptools>=47 wheel>=0.34"
141
- # `--no-deps` is used to only generate the wheel for the current library. Redundant in falcon since it has no dependencies
142
- pip-wheel-args : " -w ./dist -v --no-deps"
143
-
144
129
- name : Create wheel for manylinux 2014
145
- # as previous step but for manylinux2014
146
- uses : RalfG/python-wheels-manylinux-build@v0.5.0-manylinux2014_x86_64
130
+ uses : RalfG/python-wheels-manylinux-build@v0.6.0-manylinux2014_x86_64
147
131
# this action generates 2 wheels in dist/. linux, manylinux2014
148
132
with :
149
133
# Remove previous original wheel just to be sure it is recreated. Should not be needed
@@ -270,8 +254,8 @@ jobs:
270
254
271
255
- name : Create wheel for manylinux 2014 for arm
272
256
if : ${{ matrix.architecture == 'aarch64' }}
273
- uses : RalfG/python-wheels-manylinux-build@v0.5 .0-manylinux2014_aarch64
274
- # this action generates 2 wheels in dist/. linux manylinux1 and manylinux2010
257
+ uses : RalfG/python-wheels-manylinux-build@v0.6 .0-manylinux2014_aarch64
258
+ # this action generates 2 wheels in dist/. linux, manylinux2014
275
259
with :
276
260
python-versions : ${{ matrix.python-version }}
277
261
build-requirements : " setuptools>=47 wheel>=0.34"
@@ -293,8 +277,8 @@ jobs:
293
277
294
278
- name : Create wheel for manylinux 2014 for s390x
295
279
if : ${{ matrix.architecture == 's390x' }}
296
- uses : RalfG/python-wheels-manylinux-build@v0.5 .0-manylinux2014_s390x
297
- # this action generates 2 wheels in dist/. linux manylinux1 and manylinux2010
280
+ uses : RalfG/python-wheels-manylinux-build@v0.6 .0-manylinux2014_s390x
281
+ # this action generates 2 wheels in dist/. linux, manylinux2014
298
282
with :
299
283
python-versions : ${{ matrix.python-version }}
300
284
build-requirements : " setuptools>=47 wheel>=0.34"
0 commit comments