2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.python import HostPythonRecipe
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
class Hostpython3Recipe(HostPythonRecipe):
|
|
|
|
'''
|
|
|
|
The hostpython3's recipe.
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2019-03-30 21:58:45 +01: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'
|
2019-03-30 21:58:45 +01:00
|
|
|
conflicts = ['hostpython2', 'hostpython3crystax']
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
recipe = Hostpython3Recipe()
|