From 081261d350ec39c0b35a1ad2ef7fa2494e86bb86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Poisson?= Date: Wed, 24 Oct 2018 08:31:16 +0200 Subject: [PATCH] [pyOpenSSL] version update older version of pyOpenSSL was causing trouble ('module' object has no attribute 'OP_SINGLE_ECDH_USE'), updating it fixes it. I didn't update to last version because OpenSSl and Cryptography are outdated too, so this is a first step to have a working pyOpenSSL. --- pythonforandroid/recipes/pyopenssl/__init__.py | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/pyopenssl/__init__.py b/pythonforandroid/recipes/pyopenssl/__init__.py index e090e99932..8e43753176 100644 --- a/pythonforandroid/recipes/pyopenssl/__init__.py +++ b/pythonforandroid/recipes/pyopenssl/__init__.py @@ -3,7 +3,7 @@ class PyOpenSSLRecipe(PythonRecipe): - version = '0.14' + version = '16.0.0' url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz' depends = [('python2', 'python3crystax'), 'openssl', 'setuptools'] site_packages_name = 'OpenSSL' diff --git a/tox.ini b/tox.ini index e27c4015d8..00ac584626 100644 --- a/tox.ini +++ b/tox.ini @@ -18,4 +18,5 @@ ignore = E123, E124, E126, E226, E402, E501, E722, - F812, F841, W503 + F812, F841, W503, + W504