1
0

dependencies: rm pyaes from requirements

Since #6014, pyaes is not really needed anymore.

As we currently require either one of pycryptodomex or cryptography,
even if pyaes is available, it will not be used.
We could strip it out completely from crypto.py...

In any case, pyaes is still pulled in by some hw wallet dependencies indirectly;
but the core library no longer depends on it.
This commit is contained in:
SomberNight
2020-09-07 18:07:41 +02:00
parent 1cc8c2c055
commit 7e534f4865
5 changed files with 26 additions and 11 deletions

View File

@@ -54,7 +54,7 @@ extras_require = {
'hardware': requirements_hw,
'gui': ['pyqt5'],
'crypto': ['cryptography>=2.1'],
'tests': ['pycryptodomex>=3.7', 'cryptography>=2.1'],
'tests': ['pycryptodomex>=3.7', 'cryptography>=2.1', 'pyaes>=0.1a1'],
}
# 'full' extra that tries to grab everything an enduser would need (except for libsecp256k1...)
extras_require['full'] = [pkg for sublist in