Add dependency on Rich

This commit is contained in:
Matthias 2023-04-09 16:05:10 +02:00
parent d532da9071
commit 40450ebecc
3 changed files with 3 additions and 0 deletions

View File

@ -1,2 +1,3 @@
from freqtrade.util.ft_precise import FtPrecise # noqa: F401
from freqtrade.util.periodic_cache import PeriodicCache # noqa: F401
from freqtrade.util.rich_progress import FtProgress # noqa: F401

View File

@ -20,6 +20,7 @@ jinja2==3.1.2
tables==3.8.0
blosc==1.11.1
joblib==1.2.0
rich==13.3.3
pyarrow==11.0.0; platform_machine != 'armv7l'
# find first, C search in arrays

View File

@ -82,6 +82,7 @@ setup(
'numpy',
'pandas',
'joblib>=1.2.0',
'rich',
'pyarrow; platform_machine != "armv7l"',
'fastapi',
'pydantic>=1.8.0',