Bump the python version used on Android from 3.10 to 3.11. The substance is the backport of the corresponding commit [0] from upstream p4a. Tested that apk is still reproducible by doing two full builds. I also used the apk a bit and it seems to work at runtime. :) [0]:78db83223f(which got squashed into83e74cac0f)
20 lines
701 B
Python
20 lines
701 B
Python
import os
|
|
|
|
from pythonforandroid.recipes.python3 import Python3Recipe
|
|
from pythonforandroid.util import load_source
|
|
|
|
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
|
|
|
|
|
|
assert Python3Recipe.depends == ['hostpython3', 'sqlite3', 'openssl', 'libffi']
|
|
assert Python3Recipe.python_depends == []
|
|
|
|
|
|
class Python3RecipePinned(util.InheritedRecipeMixin, Python3Recipe):
|
|
# PYTHON_VERSION= # < line here so that I can grep the codebase and teleport here
|
|
version = "3.11.14"
|
|
sha512sum = "41fb3ae22ce4ac0e8bb6b9ae8db88a810af1001d944e3f1abc9e86824ae4be31347e3e3a70425ab12271c6b7eeef552f00164ef23cfffa2551c3c9d1fe5ab91f"
|
|
|
|
|
|
recipe = Python3RecipePinned()
|