File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -184,10 +184,16 @@ def make_build_python(context):
184
184
run (["make" , "-j" , str (os .cpu_count ())])
185
185
186
186
187
+ # To create new builds of these dependencies, usually all that's necessary is to
188
+ # push a tag to the cpython-android-source-deps repository, and GitHub Actions
189
+ # will do the rest.
190
+ #
191
+ # If you're a member of the Python core team, and you'd like to be able to push
192
+ # these tags yourself, please contact Malcolm Smith or Russell Keith-Magee.
187
193
def unpack_deps (host , prefix_dir ):
188
194
os .chdir (prefix_dir )
189
195
deps_url = "https://github.com/beeware/cpython-android-source-deps/releases/download"
190
- for name_ver in ["bzip2-1.0.8-3" , "libffi-3.4.4-3" , "openssl-3.0.15-4 " ,
196
+ for name_ver in ["bzip2-1.0.8-3" , "libffi-3.4.4-3" , "openssl-3.0.18-0 " ,
191
197
"sqlite-3.50.4-0" , "xz-5.4.6-1" , "zstd-1.5.7-1" ]:
192
198
filename = f"{ name_ver } -{ host } .tar.gz"
193
199
download (f"{ deps_url } /{ name_ver } /{ filename } " )
You can’t perform that action at this time.
0 commit comments