diff --git a/jmdaemon/setup.py b/jmdaemon/setup.py index c27cc63..bb33684 100644 --- a/jmdaemon/setup.py +++ b/jmdaemon/setup.py @@ -9,7 +9,9 @@ setup(name='joinmarketdaemon', author_email='', license='GPL', packages=['jmdaemon'], - install_requires=['txtorcon==22.0.0', 'cryptography==3.3.2', + 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', 'joinmarketbase==0.9.10dev'], python_requires='>=3.6',