Fix: The pyproject.toml was missing the new mushroom-rl dependency

This commit is contained in:
Dominik Moritz Roth 2023-12-13 17:25:51 +01:00
parent dbd3caebb3
commit 1a2b932802

View File

@ -50,6 +50,7 @@ dmc = ["shimmy[dm-control]", "Shimmy==1.0.0"]
box2d = ["gymnasium[box2d]>=0.26.0"]
mujoco-legacy = ["mujoco-py>=2.1,<2.2", "cython<3"]
jax = ["jax>=0.4.0", "jaxlib>=0.4.0"]
mushroom-rl = ["mushroom-rl"]
all = [
# include all the optional dependencies
@ -61,7 +62,8 @@ all = [
"mujoco-py>=2.1,<2.2",
"cython<3",
"jax>=0.4.0",
"jaxlib>=0.4.0"
"jaxlib>=0.4.0",
"mushroom-rl",
]
testing = [
@ -75,5 +77,6 @@ testing = [
"mujoco-py>=2.1,<2.2",
"cython<3",
"jax>=0.4.0",
"jaxlib>=0.4.0"
"jaxlib>=0.4.0",
"mushroom-rl",
]