kivy-ios/recipes/python.py
2018-11-02 11:44:25 +01:00

15 lines
431 B
Python

# -*- coding: utf-8 -*-
from toolchain import Recipe
class PythonAliasRecipe(Recipe):
is_alias = True
def init_after_import(self, ctx):
python = ctx.state.get("python")
if not python:
print("WARNING: no python set yet, so you need to specify")
print("WARNING: either python2 or python3 in your deps")
else:
self.depends = [python]
recipe = PythonAliasRecipe()