Skip to content

Commit cbab936

Browse files
authored
Merge pull request #1603 from AndreMiras/feature/greenlet_migration
Migrates greenlet to new python3 recipe, fixes #1245
2 parents 9a2ee0b + c0fc02e commit cbab936

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
from pythonforandroid.recipe import PythonRecipe
1+
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
22

33

4-
class GreenletRecipe(PythonRecipe):
5-
version = '0.4.9'
4+
class GreenletRecipe(CompiledComponentsPythonRecipe):
5+
version = '0.4.15'
66
url = 'https://pypi.python.org/packages/source/g/greenlet/greenlet-{version}.tar.gz'
7-
depends = [('python2', 'python3crystax')]
7+
depends = ['setuptools']
8+
call_hostpython_via_targetpython = False
89

910

1011
recipe = GreenletRecipe()

0 commit comments

Comments
 (0)