Thank you for maintaining mini-racer. I really appreciate the work you put into maintaining repo, building and hosting prebuilt wheels for various platforms.
Could you please include a compatible wheel for Termux/Android arm64 in your next release?
I ran the following script on my phone:
from pip._vendor.packaging import tags
for tag in tags.sys_tags():
print(tag)
break
And it showed:
cp313-cp313-android_24_arm64_v8a
I'm not sure if the string above is correct for naming the wheel since some parts are different from
import sys
import platform
import sysconfig
print(sys.implementation.name)
print(platform.system())
print(platform.machine())
print(platform.platform())
print(sysconfig.get_platform())
cpython
Android
aarch64
Android-12-aarch64-64bit-ELF
android-24-arm64_v8a
Thank you for maintaining mini-racer. I really appreciate the work you put into maintaining repo, building and hosting prebuilt wheels for various platforms.
Could you please include a compatible wheel for Termux/Android arm64 in your next release?
I ran the following script on my phone:
And it showed:
cp313-cp313-android_24_arm64_v8a
I'm not sure if the string above is correct for naming the wheel since some parts are different from
cpython
Android
aarch64
Android-12-aarch64-64bit-ELF
android-24-arm64_v8a