Browse Source

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 .
master
Kristaps Kaupe 5 years ago
parent
commit
b1ac4f625c
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      jmdaemon/setup.py

2
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)

Loading…
Cancel
Save