huangeddie / GymGo

An environment of the board game Go using OpenAI's Gym API
165 stars 31 forks source link

Upgrade gym to 0.22.0 #17

Open RohanM opened 2 years ago

RohanM commented 2 years ago

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

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')