https://github.com/python/cpython/commit/de1b2cce3026f824c8e8a4124dec649a04454eec
commit: de1b2cce3026f824c8e8a4124dec649a04454eec
branch: 3.14
author: Miss Islington (bot) <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2026-01-29T08:41:59+08:00
summary:

[3.14] gh-142387: Reduce Android testbed API level to 33 (GH-144315) (#144317)

The emulator images for API level 34 and 35 have significant issues with image 
size and
internet connectivity. Reverts the default API level used for testbed testing 
to 33.
(cherry picked from commit 6543720b63a62363de540deb5a6701f1ae431bce)

Co-authored-by: Malcolm Smith <[email protected]>

files:
M Android/testbed/app/build.gradle.kts

diff --git a/Android/testbed/app/build.gradle.kts 
b/Android/testbed/app/build.gradle.kts
index 14d43d8c4d5c42..4f184cf42d5b5a 100644
--- a/Android/testbed/app/build.gradle.kts
+++ b/Android/testbed/app/build.gradle.kts
@@ -92,7 +92,12 @@ android {
             }
             throw GradleException("Failed to find API level in 
$androidEnvFile")
         }
-        targetSdk = 35
+
+        // This controls the API level of the maxVersion managed emulator, 
which is used
+        // by CI and cibuildwheel. 34 takes up too much disk space (#142289), 
35 has
+        // issues connecting to the internet (#142387), and 36 and later are 
not
+        // available as aosp_atd images yet.
+        targetSdk = 33
 
         versionCode = 1
         versionName = "1.0"

_______________________________________________
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]

Reply via email to