Skip to content

Commit ddce4a5

Browse files
Bump Car racing and Remove Car Racing Discrete (#2963)
* Allows a new RNG to be generated with seed=-1 and updated env_checker to fix bug if environment doesn't use np_random in reset * Revert "fixed `gym.vector.make` where the checker was being applied in the opposite case than was intended to (#2871)" This reverts commit 519dfd9. * Remove bad pushed commits * Fixed spelling in core.py * Pins pytest to the last py 3.6 version * Allow Box automatic scalar shape * Add test box and change default from () to (1,) * update Box shape inference with more strict checking * Update the box shape and add check on the custom Box shape * Removed incorrect shape type and assert shape code * Update the Box and associated tests * Move dependency error to inside the atari environment * Update the gym version to v0.25.0 * Bump car racing and remove car racing discrete
1 parent aeda7eb commit ddce4a5

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

gym/envs/__init__.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -83,20 +83,12 @@
8383
)
8484

8585
register(
86-
id="CarRacing-v1",
86+
id="CarRacing-v2",
8787
entry_point="gym.envs.box2d.car_racing:CarRacing",
8888
max_episode_steps=1000,
8989
reward_threshold=900,
9090
)
9191

92-
register(
93-
id="CarRacingDiscrete-v1",
94-
entry_point="gym.envs.box2d.car_racing:CarRacing",
95-
kwargs={"continuous": False},
96-
max_episode_steps=1000,
97-
reward_threshold=900,
98-
)
99-
10092
# Toy Text
10193
# ----------------------------------------
10294

0 commit comments

Comments
 (0)