-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support gym==0.10.8 #324
Support gym==0.10.8 #324
Conversation
- remove calls of gym.undo_logger_setup - remove chainerrl/spaces.py - import gym.spaces explicitly - import gym.wrappers explicitly
since jupyter-console has been updated to use new prompt-toolkit
CI was broken by the update of jupyter-console but it's also fixed by this PR. |
I confirmed that all the tests passed. |
chainerrl/envs/abc.py
Outdated
@@ -9,7 +9,7 @@ | |||
import numpy as np | |||
|
|||
from chainerrl import env | |||
from chainerrl import spaces | |||
from gym import spaces |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you fix the grouping of the imports?
chainerrl/envs/ale.py
Outdated
@@ -13,7 +13,7 @@ | |||
import numpy as np | |||
|
|||
from chainerrl import env | |||
from chainerrl import spaces | |||
from gym import spaces |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you fix the grouping of the imports?
I fixed the grouping of imports. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This PR makes following changes to support gym==0.10.8.
Support of gym older than 0.9.7 is dropped.
Resolves #323, #325.