[build] Create armv7l and aarch64 releases (#5449)

Closes #5436
Authored by: MrOctopus, pukkandan
This commit is contained in:
MrOctopus
2022-11-11 02:49:24 +01:00
committed by GitHub
parent 3f5c216969
commit 17fc3dc48a
5 changed files with 75 additions and 18 deletions

View File

@@ -2006,9 +2006,10 @@ def system_identifier():
with contextlib.suppress(OSError): # We may not have access to the executable
libc_ver = platform.libc_ver()
return 'Python %s (%s %s) - %s (%s%s)' % (
return 'Python %s (%s %s %s) - %s (%s%s)' % (
platform.python_version(),
python_implementation,
platform.machine(),
platform.architecture()[0],
platform.platform(),
ssl.OPENSSL_VERSION,