Skip reinforcement learning for python 3.11

This commit is contained in:
Matthias
2023-02-25 15:21:12 +01:00
parent 7a7f16b658
commit b1a5776f14
2 changed files with 10 additions and 5 deletions

View File

@@ -2,9 +2,9 @@
-r requirements-freqai.txt
# Required for freqai-rl
torch==1.13.1
stable-baselines3==1.7.0
sb3-contrib==1.7.0
torch==1.13.1; python_version < '3.11'
stable-baselines3==1.7.0; python_version < '3.11'
sb3-contrib==1.7.0; python_version < '3.11'
# Gym is forced to this version by stable-baselines3.
setuptools==65.5.1 # Should be removed when gym is fixed.
gym==0.21
gym==0.21; python_version < '3.11'