mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 00:23:07 +00:00
darwin excludes must use "sys_platform"
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
# Required for freqai
|
||||
scikit-learn==1.1.3
|
||||
joblib==1.2.0
|
||||
catboost==1.1.1; platform_machine == 'darwin' and python_version < '3.9'
|
||||
catboost==1.2; 'arm' not in platform_machine and (platform_machine != 'darwin' or python_version >= '3.9')
|
||||
catboost==1.1.1; sys_platform == 'darwin' and python_version < '3.9'
|
||||
catboost==1.2; 'arm' not in platform_machine and (sys_platform != 'darwin' or python_version >= '3.9')
|
||||
lightgbm==3.3.5
|
||||
xgboost==1.7.5
|
||||
tensorboard==2.13.0
|
||||
|
||||
Reference in New Issue
Block a user