Skip to content

Commit 187f859

Browse files
committed
recipe: update 'cryptography' and rm unnecessary dependencies
- 'idna' no longer needed since version 2.5 - 'asn1crypto' no longer needed since version 2.8 - 'enum34' is just a backport of python 3.4+ functionality - 'ipaddress' is just a backport of python 3.3+ functionality
1 parent d56181c commit 187f859

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pythonforandroid/recipes/cryptography/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33

44
class CryptographyRecipe(CompiledComponentsPythonRecipe):
55
name = 'cryptography'
6-
version = '2.6.1'
6+
version = '2.8'
77
url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz'
8-
depends = ['openssl', 'idna', 'asn1crypto', 'six', 'setuptools',
9-
'enum34', 'ipaddress', 'cffi']
8+
depends = ['openssl', 'six', 'setuptools', 'cffi']
109
call_hostpython_via_targetpython = False
1110

1211
def get_recipe_env(self, arch):

0 commit comments

Comments
 (0)