We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73127c8 commit ad7816dCopy full SHA for ad7816d
tests/freqai/test_freqai_interface.py
@@ -1,5 +1,6 @@
1
import logging
2
import shutil
3
+import sys
4
from pathlib import Path
5
from unittest.mock import MagicMock
6
@@ -34,6 +35,9 @@ def can_run_model(model: str) -> None:
34
35
if is_arm() and "Catboost" in model:
36
pytest.skip("CatBoost is not supported on ARM.")
37
38
+ if "Catboost" in model and sys.version_info >= (3, 14):
39
+ pytest.skip("CatBoost is not supported on Python 3.14+.")
40
+
41
if is_pytorch_model and is_mac():
42
pytest.skip("Reinforcement learning / PyTorch module not available on intel based Mac OS.")
43
0 commit comments