We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f522e commit e8c8d8aCopy full SHA for e8c8d8a
src/api/python/setup.py
@@ -298,7 +298,14 @@ def run(self):
298
if arch == 'x64':
299
plat_name = 'manylinux2014_x86_64'
300
elif arch == 'arm64':
301
- plat_name = 'manylinux2014_arm64'
+ # context on why are we match on arm64
302
+ # but use aarch64 on the plat_name is
303
+ # due to a workaround current python
304
+ # legacy build doesn't support aarch64
305
+ # so using the currently supported arm64
306
+ # build and simply rename it to aarch64
307
+ # see full context on #7148
308
+ plat_name = 'manylinux2014_aarch64'
309
else:
310
plat_name = 'manylinux2014_i686'
311
elif distos == 'linux' and os_id == 'alpine':
0 commit comments