mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
[rllib] Upper bound gym
version (#22510)
gym had 0.22 release today which is breaking a lot of the rllib tests and examples. Temporarily pins gym version for now.
This commit is contained in:
parent
6a17653ba7
commit
04feea4afe
3 changed files with 3 additions and 3 deletions
|
@ -31,7 +31,7 @@ virtualenv
|
|||
## setup.py extras
|
||||
dm_tree
|
||||
flask
|
||||
gym>=0.21.0; python_version >= '3.7'
|
||||
gym>=0.21.0,<0.22.0; python_version >= '3.7'
|
||||
gym==0.19.0; python_version < '3.7'
|
||||
lz4
|
||||
scikit-image
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# ---------------------
|
||||
# Atari
|
||||
autorom[accept-rom-license]
|
||||
gym[atari]>=0.21.0; python_version >= '3.7'
|
||||
gym[atari]>=0.21.0,<0.22.0; python_version >= '3.7'
|
||||
gym[atari]==0.19.0; python_version < '3.7'
|
||||
# Kaggle envs.
|
||||
kaggle_environments==1.7.11
|
||||
|
|
|
@ -245,7 +245,7 @@ if setup_spec.type == SetupType.RAY:
|
|||
|
||||
setup_spec.extras["rllib"] = setup_spec.extras["tune"] + [
|
||||
"dm_tree",
|
||||
"gym",
|
||||
"gym<0.22",
|
||||
"lz4",
|
||||
# matplotlib (dependency of scikit-image) 3.4.3 breaks docker build
|
||||
# Todo: Remove this when safe?
|
||||
|
|
Loading…
Add table
Reference in a new issue