From 10604bf49c9be5637c5a70076bb140989423144e Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 8 May 2023 06:46:30 +0200 Subject: [PATCH] Run Torch tests on 3.11 --- tests/freqai/test_freqai_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/freqai/test_freqai_interface.py b/tests/freqai/test_freqai_interface.py index ed0910089..95414a83f 100644 --- a/tests/freqai/test_freqai_interface.py +++ b/tests/freqai/test_freqai_interface.py @@ -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.")