binaries: bundle 'cryptography' instead of 'pycryptodomex' in binaries

related: #6538

(this allows testing the binaries; to consider whether we can drop pycryptodomex)
This commit is contained in:
SomberNight 2020-09-07 17:54:12 +02:00
parent 53a5a21ee8
commit 1cc8c2c055
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
PyQt5<5.15
pycryptodomex>=3.7
cryptography>=2.1

View file

@ -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...)