From e17c4dbffe0b2fdc2a6e0209cf12adad2d52045b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 1 Jul 2026 00:44:47 +0200 Subject: [PATCH] Add pythoninfo-build step to AndroidBuild Replace also "host Python" with "host/Android Python". --- master/custom/factories.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/master/custom/factories.py b/master/custom/factories.py index e0ded339..eb8cb166 100644 --- a/master/custom/factories.py +++ b/master/custom/factories.py @@ -1316,12 +1316,16 @@ def setup(self, **kwargs): name="Compile build Python", command=android_py + ["make-build"], ), + PythonInfo( + name="Display build info of the build Python", + command=android_py + ["pythoninfo-build"], + ), Configure( - name="Configure host Python", + name="Configure host/Android Python", command=android_py + ["configure-host", self.host_triple], ), Compile( - name="Compile host Python", + name="Compile host/Android Python", command=android_py + ["make-host", self.host_triple], ), Test(