From 534e53a96a3d9dbf86735f8948ed1c7cc0ffec83 Mon Sep 17 00:00:00 2001 From: Robert Niederreiter Date: Wed, 27 Nov 2024 11:35:11 +0100 Subject: [PATCH 1/2] Update pyopenssl --- pythonforandroid/recipes/pyopenssl/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/pyopenssl/__init__.py b/pythonforandroid/recipes/pyopenssl/__init__.py index 092a31059e..cb69aca3bd 100644 --- a/pythonforandroid/recipes/pyopenssl/__init__.py +++ b/pythonforandroid/recipes/pyopenssl/__init__.py @@ -3,9 +3,9 @@ class PyOpenSSLRecipe(PythonRecipe): - version = '19.0.0' + version = '24.2.1' url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz' - depends = ['openssl', 'setuptools'] + depends = ['cffi', 'openssl', 'setuptools'] site_packages_name = 'OpenSSL' call_hostpython_via_targetpython = False From f0177c5e72f7a604d0ac0f6d36b2c9c97a0f5b42 Mon Sep 17 00:00:00 2001 From: Robert Niederreiter Date: Wed, 27 Nov 2024 11:46:44 +0100 Subject: [PATCH 2/2] Try older version --- pythonforandroid/recipes/pyopenssl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/pyopenssl/__init__.py b/pythonforandroid/recipes/pyopenssl/__init__.py index cb69aca3bd..2d4d7a893f 100644 --- a/pythonforandroid/recipes/pyopenssl/__init__.py +++ b/pythonforandroid/recipes/pyopenssl/__init__.py @@ -3,7 +3,7 @@ class PyOpenSSLRecipe(PythonRecipe): - version = '24.2.1' + version = '24.1.0' url = 'https://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-{version}.tar.gz' depends = ['cffi', 'openssl', 'setuptools'] site_packages_name = 'OpenSSL'