https://github.com/python/cpython/commit/61dd9fdad729fe02d91c03804659f7d0c5a89276
commit: 61dd9fdad729fe02d91c03804659f7d0c5a89276
branch: main
author: Emma Smith <e...@emmatyping.dev>
committer: freakboy3742 <russ...@keith-magee.com>
date: 2025-07-10T07:46:33+08:00
summary:

gh-135846: Add zstd dependency to Android build script (#136253)

Adds zstd to the Android build process.

---------

Co-authored-by: Malcolm Smith <sm...@chaquo.com>

files:
M Android/android.py

diff --git a/Android/android.py b/Android/android.py
index 551168fc4b2f5a..a3a48c0c6b7027 100755
--- a/Android/android.py
+++ b/Android/android.py
@@ -175,7 +175,7 @@ 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",
-                     "sqlite-3.49.1-0", "xz-5.4.6-1"]:
+                     "sqlite-3.49.1-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}")
         shutil.unpack_archive(filename)

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: arch...@mail-archive.com

Reply via email to