https://github.com/python/cpython/commit/0f0fc5a16368ea45541137cff6b90d63bad5eb26
commit: 0f0fc5a16368ea45541137cff6b90d63bad5eb26
branch: main
author: Malcolm Smith <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2025-10-05T08:15:29+08:00
summary:
gh-139573: Update Android to OpenSSL 3.0.18 (#139562)
Update Android to OpenSSL 3.0.18.
files:
M Android/android.py
diff --git a/Android/android.py b/Android/android.py
index 15046b6fe1e1c0..b810a6bfb3cc42 100755
--- a/Android/android.py
+++ b/Android/android.py
@@ -184,10 +184,16 @@ def make_build_python(context):
run(["make", "-j", str(os.cpu_count())])
+# To create new builds of these dependencies, usually all that's necessary is
to
+# push a tag to the cpython-android-source-deps repository, and GitHub Actions
+# will do the rest.
+#
+# If you're a member of the Python core team, and you'd like to be able to push
+# these tags yourself, please contact Malcolm Smith or Russell Keith-Magee.
def unpack_deps(host, prefix_dir):
os.chdir(prefix_dir)
deps_url =
"https://github.com/beeware/cpython-android-source-deps/releases/download"
- for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.15-4",
+ for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.18-0",
"sqlite-3.50.4-0", "xz-5.4.6-1", "zstd-1.5.7-1"]:
filename = f"{name_ver}-{host}.tar.gz"
download(f"{deps_url}/{name_ver}/{filename}")
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]