Merge pull request #8611 from freqtrade/torch_ci_11

Run Torch tests on 3.11
This commit is contained in:
Matthias
2023-05-08 19:47:04 +02:00
committed by GitHub

View File

@@ -41,7 +41,7 @@ def can_run_model(model: str) -> None:
if is_pytorch_model and is_mac() and not is_arm():
pytest.skip("Reinforcement learning / PyTorch module not available on intel based Mac OS.")
if is_pytorch_model and is_py11():
if is_pytorch_model:
pytest.skip("Reinforcement learning / PyTorch currently not available on python 3.11.")