Merge pull request #9919 from freqtrade/bump/catboost
Bump catboost to 1.2.3
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
# Required for freqai
|
# Required for freqai
|
||||||
scikit-learn==1.4.1.post1
|
scikit-learn==1.4.1.post1
|
||||||
joblib==1.3.2
|
joblib==1.3.2
|
||||||
catboost==1.2.2; 'arm' not in platform_machine and python_version < '3.12'
|
catboost==1.2.3; 'arm' not in platform_machine
|
||||||
lightgbm==4.3.0
|
lightgbm==4.3.0
|
||||||
xgboost==2.0.3
|
xgboost==2.0.3
|
||||||
tensorboard==2.16.2
|
tensorboard==2.16.2
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ def is_arm() -> bool:
|
|||||||
def can_run_model(model: str) -> None:
|
def can_run_model(model: str) -> None:
|
||||||
is_pytorch_model = 'Reinforcement' in model or 'PyTorch' in model
|
is_pytorch_model = 'Reinforcement' in model or 'PyTorch' in model
|
||||||
|
|
||||||
if is_py12() and ("Catboost" in model or is_pytorch_model):
|
if is_py12() and is_pytorch_model:
|
||||||
pytest.skip("Model not supported on python 3.12 yet.")
|
pytest.skip("Model not supported on python 3.12 yet.")
|
||||||
|
|
||||||
if is_arm() and "Catboost" in model:
|
if is_arm() and "Catboost" in model:
|
||||||
|
|||||||
Reference in New Issue
Block a user