diff --git a/pythonforandroid/recipes/enum34/__init__.py b/pythonforandroid/recipes/enum34/__init__.py index edc92b33c4..ba9acfc758 100644 --- a/pythonforandroid/recipes/enum34/__init__.py +++ b/pythonforandroid/recipes/enum34/__init__.py @@ -1,11 +1,10 @@ - from pythonforandroid.toolchain import PythonRecipe - class Enum34Recipe(PythonRecipe): - version = '1.0.4' + version = '1.1.3' url = 'https://pypi.python.org/packages/source/e/enum34/enum34-{version}.tar.gz' - depends = ['python2'] + depends = ['python2', 'setuptools'] site_packages_name = 'enum' + call_hostpython_via_targetpython = False recipe = Enum34Recipe()