Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 717050758
Change-Id: I70cf46bd91e394803079f59a8eae1766ef5661bb
  • Loading branch information
kevinzakka authored and copybara-github committed Jan 18, 2025
1 parent eb21a2b commit 30a22a2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
File renamed without changes.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# MuJoCo Playground

<h1>
<a href="#"><img alt="MuJoCo Playground" src="assets/banner.png" width="100%"></a>
</h1>
![Banner for playground](https://github.com/google-deepmind/mujoco_playground/blob/main/assets/banner.png?raw=true)


A comprehensive suite of GPU-accelerated environments for robot learning research and sim-to-real, built with [MuJoCo MJX](https://github.com/google-deepmind/mujoco/tree/main/mjx).

Expand Down Expand Up @@ -71,7 +70,7 @@ Two additional colabs require local runtimes with Madrona-MJX installed locally

## How can I contribute?

Get started by installing the library and exploring its features! Found a bug? Report it in the issue tracker. Interested in contributing? If you’re a developer with robotics experience, we’d love your help—check out the [contribution guidelines](CONTRIBUTING) for more details.
Get started by installing the library and exploring its features! Found a bug? Report it in the issue tracker. Interested in contributing? If you’re a developer with robotics experience, we’d love your help—check out the [contribution guidelines](CONTRIBUTING.md) for more details.

## Citation

Expand Down
5 changes: 1 addition & 4 deletions mujoco_playground/_src/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,7 @@ def load(
elif env_name in dm_control_suite.ALL:
return dm_control_suite.load(env_name, config, config_overrides)

raise ValueError(
f"Env '{env_name}' not found. Available envs:"
f" {manipulation.ALL + locomotion.ALL + dm_control_suite.ALL}"
)
raise ValueError(f"Env '{env_name}' not found. Available envs: {ALL_ENVS}")


def get_domain_randomizer(env_name: str) -> Optional[DomainRandomizer]:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "playground"
version = "0.0.2"
version = "0.0.3"
readme = "README.md"
authors = [
{name = "Google DeepMind", email = "[email protected]"},
Expand Down

0 comments on commit 30a22a2

Please sign in to comment.