From b1ac4f625cfb29ed2d05d8c06b5e3467fab7af63 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Wed, 10 Feb 2021 16:53:20 +0200 Subject: [PATCH] Pin cryptography module to v3.3.2 Newer versions instroduces Rust as a dependency, which causes problems for some people / platforms - https://github.com/pyca/cryptography/issues/5771 . --- jmdaemon/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jmdaemon/setup.py b/jmdaemon/setup.py index 252ac58..e30451b 100644 --- a/jmdaemon/setup.py +++ b/jmdaemon/setup.py @@ -9,6 +9,6 @@ setup(name='joinmarketdaemon', author_email='', license='GPL', packages=['jmdaemon'], - install_requires=['txtorcon', 'pyopenssl', 'libnacl', 'joinmarketbase==0.8.2dev'], + install_requires=['txtorcon', 'cryptography==3.3.2', 'pyopenssl', 'libnacl', 'joinmarketbase==0.8.2dev'], python_requires='>=3.6', zip_safe=False)