From 40bfaa624523e96ac3587fa0402ce61553eb0d26 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 20 Oct 2025 19:41:50 +0200 Subject: [PATCH] chore: align pyproject.toml platform limitations --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4bac06296..6bf7fe362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,17 +85,17 @@ hyperopt = [ freqai = [ "scikit-learn", "joblib", - 'catboost; platform_machine != "aarch64"', + "catboost; 'arm' not in platform_machine", "lightgbm", "xgboost", "tensorboard", "datasieve>=0.1.5", ] freqai_rl = [ - "torch", + "torch; sys_platform != 'darwin' or platform_machine != 'x86_64'", "gymnasium", - "stable-baselines3", - "sb3-contrib", + "stable-baselines3; sys_platform != 'darwin' or platform_machine != 'x86_64'", + "sb3-contrib; sys_platform != 'darwin' or platform_machine != 'x86_64'", "tqdm", ] develop = [