Browse Source
binaries: bundle 'cryptography' instead of 'pycryptodomex' in binaries
related: #6538
(this allows testing the binaries; to consider whether we can drop pycryptodomex)
patch-4
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
2 changed files with
2 additions and
2 deletions
-
contrib/requirements/requirements-binaries.txt
-
setup.py
|
@ -1,2 +1,2 @@ |
|
|
PyQt5<5.15 |
|
|
PyQt5<5.15 |
|
|
pycryptodomex>=3.7 |
|
|
cryptography>=2.1 |
|
|
|
@ -53,7 +53,7 @@ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']: |
|
|
extras_require = { |
|
|
extras_require = { |
|
|
'hardware': requirements_hw, |
|
|
'hardware': requirements_hw, |
|
|
'gui': ['pyqt5'], |
|
|
'gui': ['pyqt5'], |
|
|
'crypto': ['pycryptodomex>=3.7'], |
|
|
'crypto': ['cryptography>=2.1'], |
|
|
'tests': ['pycryptodomex>=3.7', 'cryptography>=2.1'], |
|
|
'tests': ['pycryptodomex>=3.7', 'cryptography>=2.1'], |
|
|
} |
|
|
} |
|
|
# 'full' extra that tries to grab everything an enduser would need (except for libsecp256k1...) |
|
|
# 'full' extra that tries to grab everything an enduser would need (except for libsecp256k1...) |
|
|