Merge pull request #93 from D-o-d-o-x/fix_pyproject_missing_deps

Fix: The pyproject.toml was missing the new mushroom-rl dependency
This commit is contained in:
Dominik Roth 2024-02-10 09:32:38 +01:00 committed by GitHub
commit d8940ac4ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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