diff --git a/ci/rebuild_updated_recipes.py b/ci/rebuild_updated_recipes.py index 59db41bb1a..e561c94826 100755 --- a/ci/rebuild_updated_recipes.py +++ b/ci/rebuild_updated_recipes.py @@ -58,7 +58,7 @@ def build(target_python, requirements): android_sdk_home = os.environ['ANDROID_SDK_HOME'] android_ndk_home = os.environ['ANDROID_NDK_HOME'] if target_python == TargetPython.python3: - testapp = 'setup_testapp_python3.py' + testapp = 'setup_testapp_python3_sqlite_openssl.py' requirements.add(target_python.name) requirements = ','.join(requirements) logger.info('requirements: {}'.format(requirements)) diff --git a/pythonforandroid/recipes/cryptography/__init__.py b/pythonforandroid/recipes/cryptography/__init__.py index c5b3e9eb49..1b7babafca 100644 --- a/pythonforandroid/recipes/cryptography/__init__.py +++ b/pythonforandroid/recipes/cryptography/__init__.py @@ -3,7 +3,7 @@ class CryptographyRecipe(CompiledComponentsPythonRecipe): name = 'cryptography' - version = '2.5' + version = '2.6.1' url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz' depends = ['openssl', 'idna', 'asn1crypto', 'six', 'setuptools', 'enum34', 'ipaddress', 'cffi']