Skip to content

[cryptography] Updated to last available version (2.3.1) #1443

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ci/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class TargetPython(Enum):
'm2crypto',
'netifaces',
'Pillow',
'cryptography',
Copy link
Member

@AndreMiras AndreMiras Nov 10, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the initial comment about the system dependency missing because this was covered in #1457
However Travis is still struggling with cffi which is a dependency of cryptography so I prefer to keep it here for now

# https://github.com/kivy/python-for-android/issues/1405
'psycopg2',
'pygame',
Expand Down
4 changes: 2 additions & 2 deletions pythonforandroid/recipes/cryptography/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

class CryptographyRecipe(CompiledComponentsPythonRecipe):
name = 'cryptography'
version = '1.3'
version = '2.3.1'
url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz'
depends = [('python2', 'python3crystax'), 'openssl', 'idna', 'pyasn1', 'six', 'setuptools', 'enum34', 'ipaddress', 'cffi']
depends = [('python2', 'python3crystax'), 'openssl', 'idna', 'asn1crypto', 'six', 'setuptools', 'enum34', 'ipaddress', 'cffi']
call_hostpython_via_targetpython = False

def get_recipe_env(self, arch):
Expand Down