Skip to content

Commit

Permalink
Merge pull request #254 from Farama-Foundation/fix_doc_toctrees
Browse files Browse the repository at this point in the history
Fix Documentation toctrees menus
  • Loading branch information
Kallinteris-Andreas authored Oct 30, 2024
2 parents 4eec964 + 17ec8f3 commit 3719d9d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/_scripts/gen_envs_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
import gymnasium as gym
from tqdm import tqdm

import gymnasium_robotics

gym.register_envs(gymnasium_robotics)

if __name__ == "__main__":
"""
python gen_envs_display
Expand Down
4 changes: 4 additions & 0 deletions docs/_scripts/gen_gifs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
from PIL import Image
from tqdm import tqdm

import gymnasium_robotics

gym.register_envs(gymnasium_robotics)

# how many steps to record an env for
LENGTH = 300

Expand Down
4 changes: 4 additions & 0 deletions docs/_scripts/gen_mds.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@
from tqdm import tqdm

import gymnasium as gym
import gymnasium_robotics

from importlib import import_module
from utils import trim
import re


gym.register_envs(gymnasium_robotics)


# REWRITE: generate md's for new environments that don't belong to Fetch or Shadow Hand
# TODO: use same format for Fetch and Shadow Hand
# The environment entrypoints have the following standard: `gymnasium_robotics.envs.env_type.env_name:EnvName`
Expand Down

0 comments on commit 3719d9d

Please sign in to comment.