From 77bd0173263dbf9571616708104993cb5d751a3f Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Sat, 29 Jul 2023 11:36:38 -0600 Subject: [PATCH] Bump pyOpenSSL and hence cryptography --- jmdaemon/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jmdaemon/setup.py b/jmdaemon/setup.py index bb33684..2e25558 100644 --- a/jmdaemon/setup.py +++ b/jmdaemon/setup.py @@ -11,8 +11,8 @@ setup(name='joinmarketdaemon', packages=['jmdaemon'], install_requires=['txtorcon==22.0.0', 'cryptography==3.3.2; platform_machine != "aarch64" and platform_machine != "amd64" and platform_machine != "x86_64"', - 'cryptography==37.0.4; platform_machine == "aarch64" or platform_machine == "amd64" or platform_machine == "x86_64"', - 'pyopenssl==21.0.0', 'libnacl==1.8.0', + 'cryptography==41.0.2; platform_machine == "aarch64" or platform_machine == "amd64" or platform_machine == "x86_64"', + 'pyopenssl==23.2.0', 'libnacl==1.8.0', 'joinmarketbase==0.9.10dev'], python_requires='>=3.6', zip_safe=False)