1
0
Fork 0

[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
commit 17fc3dc48a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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,