https://github.com/python/cpython/commit/e635ad2c68399b5da7918392dc913a9e10aa2726
commit: e635ad2c68399b5da7918392dc913a9e10aa2726
branch: main
author: Russell Keith-Magee <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2026-05-02T16:50:32+08:00
summary:
gh-149254: Bump OpenSSL versions for iOS and Android. (#149270)
Bump OpenSSL versions for iOS and Android.
files:
A Misc/NEWS.d/next/Security/2026-05-02-15-38-03.gh-issue-149254.0HOL0j.rst
M Platforms/Android/__main__.py
M Platforms/Apple/__main__.py
diff --git
a/Misc/NEWS.d/next/Security/2026-05-02-15-38-03.gh-issue-149254.0HOL0j.rst
b/Misc/NEWS.d/next/Security/2026-05-02-15-38-03.gh-issue-149254.0HOL0j.rst
new file mode 100644
index 00000000000000..f3cf924db25b4c
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2026-05-02-15-38-03.gh-issue-149254.0HOL0j.rst
@@ -0,0 +1 @@
+Update Android and iOS installer to use OpenSSL 3.5.6.
diff --git a/Platforms/Android/__main__.py b/Platforms/Android/__main__.py
index 315632ea12c07d..d2546cf76c206b 100755
--- a/Platforms/Android/__main__.py
+++ b/Platforms/Android/__main__.py
@@ -216,8 +216,14 @@ def make_build_python(context):
def unpack_deps(host, prefix_dir, cache_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.5.5-0",
- "sqlite-3.50.4-0", "xz-5.4.6-1", "zstd-1.5.7-2"]:
+ for name_ver in [
+ "bzip2-1.0.8-3",
+ "libffi-3.4.4-3",
+ "openssl-3.5.6-0",
+ "sqlite-3.50.4-0",
+ "xz-5.4.6-1",
+ "zstd-1.5.7-2"
+ ]:
filename = f"{name_ver}-{host}.tar.gz"
out_path = download(f"{deps_url}/{name_ver}/{filename}", cache_dir)
shutil.unpack_archive(out_path)
diff --git a/Platforms/Apple/__main__.py b/Platforms/Apple/__main__.py
index 44a991c6c20a93..d94198a309f926 100644
--- a/Platforms/Apple/__main__.py
+++ b/Platforms/Apple/__main__.py
@@ -319,7 +319,7 @@ def unpack_deps(
for name_ver in [
"BZip2-1.0.8-2",
"libFFI-3.4.7-2",
- "OpenSSL-3.5.5-1",
+ "OpenSSL-3.5.6-1",
"XZ-5.6.4-2",
"mpdecimal-4.0.0-2",
"zstd-1.5.7-1",
_______________________________________________
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]