lbry-android/p4a/pythonforandroid/recipes/hostpython3/__init__.py

18 lines
405 B
Python
Raw Normal View History

from pythonforandroid.python import HostPythonRecipe
2017-08-13 03:24:00 +02:00
class Hostpython3Recipe(HostPythonRecipe):
'''
The hostpython3's recipe.
2017-08-13 03:24:00 +02:00
.. versionchanged:: 0.6.0
Refactored into the new class
:class:`~pythonforandroid.python.HostPythonRecipe`
'''
version = '3.7.1'
2017-08-13 03:24:00 +02:00
name = 'hostpython3'
conflicts = ['hostpython2', 'hostpython3crystax']
2017-08-13 03:24:00 +02:00
recipe = Hostpython3Recipe()