From 6e2da38e47d05560984c99a1b7225259c5f1f37b Mon Sep 17 00:00:00 2001 From: opacam Date: Sat, 15 Dec 2018 10:13:51 +0100 Subject: [PATCH] Grant python3 compatibility for PyCryptoDome recipe --- pythonforandroid/recipes/pycryptodome/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/pycryptodome/__init__.py b/pythonforandroid/recipes/pycryptodome/__init__.py index d0c0ac1b70..43e28fc72f 100644 --- a/pythonforandroid/recipes/pycryptodome/__init__.py +++ b/pythonforandroid/recipes/pycryptodome/__init__.py @@ -4,7 +4,7 @@ class PycryptodomeRecipe(PythonRecipe): version = '3.4.6' url = 'https://github.com/Legrandin/pycryptodome/archive/v{version}.tar.gz' - depends = [('python2', 'python3crystax'), 'setuptools', 'cffi'] + depends = ['setuptools', 'cffi'] def get_recipe_env(self, arch=None, with_flags_in_cc=True): env = super(PycryptodomeRecipe, self).get_recipe_env(arch, with_flags_in_cc)