Merge pull request #9919 from freqtrade/bump/catboost

Bump catboost to 1.2.3
This commit is contained in:
Matthias 2024-03-10 11:45:13 +01:00 committed by GitHub
commit 204849aa85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
# Required for freqai
scikit-learn==1.4.1.post1
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
xgboost==2.0.3
tensorboard==2.16.2

View File

@ -27,7 +27,7 @@ def is_arm() -> bool:
def can_run_model(model: str) -> None:
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.")
if is_arm() and "Catboost" in model: