Skip to content

Commit 081261d

Browse files
committed
[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.
1 parent c21cc75 commit 081261d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pythonforandroid/recipes/pyopenssl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
class PyOpenSSLRecipe(PythonRecipe):
6-
version = '0.14'
6+
version = '16.0.0'
77
url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz'
88
depends = [('python2', 'python3crystax'), 'openssl', 'setuptools']
99
site_packages_name = 'OpenSSL'

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ ignore =
1818
E123, E124, E126,
1919
E226,
2020
E402, E501, E722,
21-
F812, F841, W503
21+
F812, F841, W503,
22+
W504

0 commit comments

Comments
 (0)