2021-04-24 16:32:06 +02:00
|
|
|
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):
|
2022-11-04 15:53:32 +00:00
|
|
|
version = "3.8.15"
|
|
|
|
|
sha512sum = "625af8fa23e7a7daba6302d147ccf80da36b8b5cce7a99976583bf8e07f1ca71c11529b6286e7732d69c00398dfa8422243f33641e2164e4299237663103ae99"
|
2021-04-24 16:32:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
recipe = Python3RecipePinned()
|