We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ed06a3 commit 6aa81fdCopy full SHA for 6aa81fd
pythonforandroid/recipe.py
@@ -809,6 +809,13 @@ class CythonRecipe(PythonRecipe):
809
pre_build_ext = False
810
cythonize = True
811
812
+ def __init__(self, *args, **kwargs):
813
+ super(CythonRecipe, self).__init__(*args, **kwargs)
814
+ depends = self.depends
815
+ depends.append(('python2', 'python3crystax'))
816
+ depends = list(set(depends))
817
+ self.depends = depends
818
+
819
def build_arch(self, arch):
820
'''Build any cython components, then install the Python module by
821
calling setup.py install with the target Python dir.
0 commit comments