From 1cc8c2c0552655252315515120aee9d3e70aa55b Mon Sep 17 00:00:00 2001 From: SomberNight Date: Mon, 7 Sep 2020 17:54:12 +0200 Subject: [PATCH] binaries: bundle 'cryptography' instead of 'pycryptodomex' in binaries related: #6538 (this allows testing the binaries; to consider whether we can drop pycryptodomex) --- contrib/requirements/requirements-binaries.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/requirements/requirements-binaries.txt b/contrib/requirements/requirements-binaries.txt index 803cc99bf..e6f64e585 100644 --- a/contrib/requirements/requirements-binaries.txt +++ b/contrib/requirements/requirements-binaries.txt @@ -1,2 +1,2 @@ PyQt5<5.15 -pycryptodomex>=3.7 +cryptography>=2.1 diff --git a/setup.py b/setup.py index 8ef44c50b..53701e690 100755 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']: extras_require = { 'hardware': requirements_hw, 'gui': ['pyqt5'], - 'crypto': ['pycryptodomex>=3.7'], + 'crypto': ['cryptography>=2.1'], 'tests': ['pycryptodomex>=3.7', 'cryptography>=2.1'], } # 'full' extra that tries to grab everything an enduser would need (except for libsecp256k1...)