chore: reorder pyproject.toml dependencies

This commit is contained in:
Matthias
2026-03-15 08:58:27 +01:00
parent 9524fc0f81
commit ec1aee1f85
+10 -10
View File
@@ -77,25 +77,25 @@ dependencies = [
# Requirements used for submodules
plot = ["plotly>=4.0"]
hyperopt = [
"scipy",
"scikit-learn",
"optuna > 4.0.0",
"cmaes",
"filelock",
"optuna > 4.0.0",
"scikit-learn",
"scipy",
]
freqai = [
"scikit-learn",
"datasieve>=0.1.5",
"joblib",
"lightgbm",
"xgboost",
"scikit-learn",
"tensorboard",
"datasieve>=0.1.5",
"xgboost",
]
freqai_rl = [
"torch; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"gymnasium",
"stable-baselines3; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"sb3-contrib; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"stable-baselines3; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"torch; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"tqdm",
]
develop = [
@@ -118,10 +118,10 @@ develop = [
"types-tabulate",
]
jupyter = [
"jupyter",
"nbstripout",
"ipykernel",
"jupyter",
"nbconvert",
"nbstripout",
]
all = [
"freqtrade[plot,hyperopt,freqai,freqai_rl,jupyter]",