Skip to content

Commit 7288bbe

Browse files
authored
Update Android Python versions (#2687)
* Update Android Python versions * Restore "free up disk space" step for non-Android jobs only
1 parent 0cb04c0 commit 7288bbe

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,12 @@ jobs:
101101
- uses: astral-sh/setup-uv@v7
102102

103103
- name: Free up disk space
104-
if: runner.os == 'Linux'
104+
if: runner.os == 'Linux' && matrix.test_select != 'android'
105105
run: |
106-
docker system prune -a -f
107-
sudo rm -rf $ANDROID_HOME/ndk/{26,28}.* /opt/hostedtoolcache/CodeQL \
106+
sudo rm -rf $ANDROID_HOME/ndk /opt/hostedtoolcache/CodeQL \
108107
/usr/local/lib/node_modules /usr/local/share/chromium \
109108
/usr/local/share/powershell
110-
df -h
109+
df -m
111110
112111
# for oci_container unit tests
113112
- name: Set up QEMU

cibuildwheel/resources/build-platforms.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ python_configurations = [
231231

232232
[android]
233233
python_configurations = [
234-
{ identifier = "cp313-android_arm64_v8a", version = "3.13", url = "https://repo.maven.apache.org/maven2/com/chaquo/python/python/3.13.8/python-3.13.8-aarch64-linux-android.tar.gz" },
235-
{ identifier = "cp313-android_x86_64", version = "3.13", url = "https://repo.maven.apache.org/maven2/com/chaquo/python/python/3.13.8/python-3.13.8-x86_64-linux-android.tar.gz" },
236-
{ identifier = "cp314-android_arm64_v8a", version = "3.14", url = "https://www.python.org/ftp/python/3.14.0/python-3.14.0-aarch64-linux-android.tar.gz" },
237-
{ identifier = "cp314-android_x86_64", version = "3.14", url = "https://www.python.org/ftp/python/3.14.0/python-3.14.0-x86_64-linux-android.tar.gz" },
234+
{ identifier = "cp313-android_arm64_v8a", version = "3.13", url = "https://repo.maven.apache.org/maven2/com/chaquo/python/python/3.13.11/python-3.13.11-aarch64-linux-android.tar.gz" },
235+
{ identifier = "cp313-android_x86_64", version = "3.13", url = "https://repo.maven.apache.org/maven2/com/chaquo/python/python/3.13.11/python-3.13.11-x86_64-linux-android.tar.gz" },
236+
{ identifier = "cp314-android_arm64_v8a", version = "3.14", url = "https://www.python.org/ftp/python/3.14.2/python-3.14.2-aarch64-linux-android.tar.gz" },
237+
{ identifier = "cp314-android_x86_64", version = "3.14", url = "https://www.python.org/ftp/python/3.14.2/python-3.14.2-x86_64-linux-android.tar.gz" },
238238
]
239239

240240
[ios]

0 commit comments

Comments
 (0)