GymGo icon indicating copy to clipboard operation
GymGo copied to clipboard

Upgrade gym to 0.22.0

Open RohanM opened this issue 2 years ago • 0 comments

This PR is based on the following, which should be reviewed and merged first:

  • [ ] #15
  • [ ] #16

Continue the incremental upgrade path by upgrading gym to 0.22.0. In this release, gym.make() no longer accepts the gym's package name. So far we've done this:

env = gym.make('gym_go:go-v0')

But now we need to:

import gym_go
env = gym.make('go-v0')

RohanM avatar May 01 '22 02:05 RohanM