From 90cd15d4a75fffae8f1a8e7b48b362ae59b790e5 Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Fri, 7 Jun 2024 22:26:58 +0530 Subject: [PATCH] `cryptography`: depend on `cffi` --- pythonforandroid/recipes/cryptography/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/cryptography/__init__.py b/pythonforandroid/recipes/cryptography/__init__.py index c6a91a13d7..bbfdd4d30c 100644 --- a/pythonforandroid/recipes/cryptography/__init__.py +++ b/pythonforandroid/recipes/cryptography/__init__.py @@ -5,9 +5,9 @@ class CryptographyRecipe(RustCompiledComponentsRecipe): name = 'cryptography' - version = '42.0.1' + version = '42.0.8' url = 'https://github.com/pyca/cryptography/archive/refs/tags/{version}.tar.gz' - depends = ['openssl'] + depends = ['openssl', 'cffi'] def get_recipe_env(self, arch, **kwargs): env = super().get_recipe_env(arch, **kwargs)