Skip to content

Commit

Permalink
Fix get_minari test error
Browse files Browse the repository at this point in the history
  • Loading branch information
takuseno committed Nov 24, 2024
1 parent 26b456b commit abb6e83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion d3rlpy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,9 @@ def print_available_options() -> None:
_install_module(["gym"], upgrade=True)
_uninstall_module(["pybullet"])
elif name == "minari":
_install_module(["minari[all]>=0.5.1"], upgrade=True)
_install_module(
["minari[all]>=0.5.1", "gymnasium-robotics>=1.2.4"], upgrade=True
)
elif name == "dm_control":
_install_module(["shimmy[dm-control]==1.3.0"], upgrade=True)
elif name == "list":
Expand Down
1 change: 1 addition & 0 deletions dev.requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ docformatter
ruff
black
minari[all]>=0.5.1
gymnasium-robotics>=1.2.4

0 comments on commit abb6e83

Please sign in to comment.