File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11diff --git a/crates/uv-python/python/get_interpreter_info.py b/crates/uv-python/python/get_interpreter_info.py
2- index ca83e8d..73110d4 100644
2+ index 44abe7056..5629ad9d8 100644
33--- a/crates/uv-python/python/get_interpreter_info.py
44+++ b/crates/uv-python/python/get_interpreter_info.py
55@@ -446,7 +446,7 @@ def get_operating_system_and_architecture():
@@ -11,4 +11,19 @@ index ca83e8d..73110d4 100644
1111 # noinspection PyProtectedMember
1212 from .packaging._manylinux import _get_glibc_version
1313
14-
14+ @@ -461,6 +461,15 @@ def get_operating_system_and_architecture():
15+ elif architecture == "aarch64":
16+ architecture = "armv8l"
17+
18+ + # At least for Android devices using Python not as Python 3.13+ *Android* (for instance Termux)
19+ + android_abi_to_arch = {
20+ + "arm64_v8a": "aarch64",
21+ + "armeabi_v7a": "armv7l",
22+ + "x86": "i686",
23+ + }
24+ +
25+ + architecture = android_abi_to_arch.get(architecture, architecture)
26+ +
27+ musl_version = _get_musl_version(sys.executable)
28+ glibc_version = _get_glibc_version()
29+
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ TERMUX_PKG_LICENSE="Apache-2.0, MIT"
44TERMUX_PKG_LICENSE_FILE=" LICENSE-APACHE, LICENSE-MIT"
55TERMUX_PKG_MAINTAINER=" @termux"
66TERMUX_PKG_VERSION=" 0.9.15"
7- TERMUX_PKG_REVISION=1
7+ TERMUX_PKG_REVISION=2
88TERMUX_PKG_SRCURL=https://github.com/astral-sh/uv/archive/refs/tags/${TERMUX_PKG_VERSION} .tar.gz
99TERMUX_PKG_SHA256=4bd98152fbeb3cbe4a06fd0d49824d44db3023e24d17ba265df71fd52591bc09
1010TERMUX_PKG_DEPENDS=" zstd"
You can’t perform that action at this time.
0 commit comments