File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ def run(self):
277
277
# linux builds should be built in the centos 5 vm for maximum compatibility
278
278
# see https://github.com/pypa/manylinux
279
279
# see also https://github.com/angr/angr-dev/blob/master/admin/bdist.py
280
- plat_name = 'manylinux2014_ ' + platform .machine ()
280
+ plat_name = 'manylinux_2_28_ ' + platform .machine ()
281
281
elif 'mingw' in name :
282
282
if platform .architecture ()[0 ] == '64bit' :
283
283
plat_name = 'win_amd64'
@@ -296,7 +296,7 @@ def run(self):
296
296
)
297
297
elif distos == 'glibc' :
298
298
if arch == 'x64' :
299
- plat_name = 'manylinux2014_x86_64 '
299
+ plat_name = 'manylinux_2_28_x86_64 '
300
300
elif arch == 'arm64' or arch == 'aarch64' :
301
301
# context on why are we match on arm64
302
302
# but use aarch64 on the plat_name is
@@ -305,9 +305,9 @@ def run(self):
305
305
# so using the currently supported arm64
306
306
# build and simply rename it to aarch64
307
307
# see full context on #7148
308
- plat_name = 'manylinux2014_aarch64 '
308
+ plat_name = 'manylinux_2_28_aarch64 '
309
309
else :
310
- plat_name = 'manylinux2014_i686 '
310
+ plat_name = 'manylinux_2_28_i686 '
311
311
elif distos == 'linux' and os_id == 'alpine' :
312
312
if arch == 'x64' :
313
313
plat_name = 'musllinux_1_1_x86_64'
You can’t perform that action at this time.
0 commit comments