Fix joblib being in wrong requirements

This commit is contained in:
Matthias 2022-04-23 17:08:34 +02:00
parent 2d07cbce59
commit 8cac0a47cc
4 changed files with 3 additions and 3 deletions

View File

@ -32,6 +32,7 @@ dependencies:
- prompt-toolkit - prompt-toolkit
- schedule - schedule
- python-dateutil - python-dateutil
- joblib
# ============================ # ============================
@ -54,7 +55,6 @@ dependencies:
- scikit-learn - scikit-learn
- filelock - filelock
- scikit-optimize - scikit-optimize
- joblib
- progressbar2 - progressbar2
# ============================ # ============================
# 4/4 req plot # 4/4 req plot

View File

@ -12,7 +12,6 @@ from typing import Any, Iterator, List, Union
from typing.io import IO from typing.io import IO
from urllib.parse import urlparse from urllib.parse import urlparse
import joblib
import rapidjson import rapidjson
from freqtrade.constants import DECIMAL_PER_COIN_FALLBACK, DECIMALS_PER_COIN from freqtrade.constants import DECIMAL_PER_COIN_FALLBACK, DECIMALS_PER_COIN
@ -94,6 +93,7 @@ def file_dump_joblib(filename: Path, data: Any, log: bool = True) -> None:
:param data: Object data to save :param data: Object data to save
:return: :return:
""" """
import joblib
if log: if log:
logger.info(f'dumping joblib to "{filename}"') logger.info(f'dumping joblib to "{filename}"')

View File

@ -6,5 +6,4 @@ scipy==1.8.0
scikit-learn==1.0.2 scikit-learn==1.0.2
scikit-optimize==0.9.0 scikit-optimize==0.9.0
filelock==3.6.0 filelock==3.6.0
joblib==1.1.0
progressbar2==4.0.0 progressbar2==4.0.0

View File

@ -20,6 +20,7 @@ pycoingecko==2.2.0
jinja2==3.1.1 jinja2==3.1.1
tables==3.7.0 tables==3.7.0
blosc==1.10.6 blosc==1.10.6
joblib==1.1.0
# find first, C search in arrays # find first, C search in arrays
py_find_1st==1.1.5 py_find_1st==1.1.5