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 # Requirements used for submodules
plot = ["plotly>=4.0"] plot = ["plotly>=4.0"]
hyperopt = [ hyperopt = [
"scipy",
"scikit-learn",
"optuna > 4.0.0",
"cmaes", "cmaes",
"filelock", "filelock",
"optuna > 4.0.0",
"scikit-learn",
"scipy",
] ]
freqai = [ freqai = [
"scikit-learn", "datasieve>=0.1.5",
"joblib", "joblib",
"lightgbm", "lightgbm",
"xgboost", "scikit-learn",
"tensorboard", "tensorboard",
"datasieve>=0.1.5", "xgboost",
] ]
freqai_rl = [ freqai_rl = [
"torch; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"gymnasium", "gymnasium",
"stable-baselines3; sys_platform != 'darwin' or platform_machine != 'x86_64'",
"sb3-contrib; 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", "tqdm",
] ]
develop = [ develop = [
@@ -118,10 +118,10 @@ develop = [
"types-tabulate", "types-tabulate",
] ]
jupyter = [ jupyter = [
"jupyter",
"nbstripout",
"ipykernel", "ipykernel",
"jupyter",
"nbconvert", "nbconvert",
"nbstripout",
] ]
all = [ all = [
"freqtrade[plot,hyperopt,freqai,freqai_rl,jupyter]", "freqtrade[plot,hyperopt,freqai,freqai_rl,jupyter]",