mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
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:
parent
53a5a21ee8
commit
1cc8c2c055
2 changed files with 2 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
||||||
PyQt5<5.15
|
PyQt5<5.15
|
||||||
pycryptodomex>=3.7
|
cryptography>=2.1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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...)
|
||||||
|
|
Loading…
Add table
Reference in a new issue