From 44aabede4a375cb7ddfd57e5961890bdaa2150f0 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sat, 22 Mar 2025 22:10:44 +0100 Subject: [PATCH] :bug: Update the greenlet recipe, closes #2806 Fixes build time errors, but runtime not tested. --- pythonforandroid/recipes/greenlet/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pythonforandroid/recipes/greenlet/__init__.py b/pythonforandroid/recipes/greenlet/__init__.py index 3f2043d57d..d9b208476f 100644 --- a/pythonforandroid/recipes/greenlet/__init__.py +++ b/pythonforandroid/recipes/greenlet/__init__.py @@ -1,8 +1,8 @@ -from pythonforandroid.recipe import CompiledComponentsPythonRecipe +from pythonforandroid.recipe import PyProjectRecipe -class GreenletRecipe(CompiledComponentsPythonRecipe): - version = '0.4.15' +class GreenletRecipe(PyProjectRecipe): + version = '3.1.1' url = 'https://pypi.python.org/packages/source/g/greenlet/greenlet-{version}.tar.gz' depends = ['setuptools'] call_hostpython_via_targetpython = False