-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Gym fixes - Follow up from #705 #734
Changes from all commits
243457e
0d94863
774b7c9
cdb4028
4899c60
4329f4b
d2ad8fd
cd29301
e01e535
20b1ac9
c4e4f0a
4279d63
f549fc8
1db85d1
9abfafb
d72cdf6
ba0db77
30c9f4d
de74ec8
3620a04
55414c3
790cb6b
319ce24
8ad3f75
e527efe
4adde2f
218bc1a
e5f7012
7bde14c
f6414e7
f4b3342
7f1e99e
92c1bc7
09a3a42
ea073ae
8f7d26b
0f158f1
edb504a
b211781
f34ea24
d7de342
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ | |
packages=[package for package in find_packages() if package.startswith("stable_baselines3")], | ||
package_data={"stable_baselines3": ["py.typed", "version.txt"]}, | ||
install_requires=[ | ||
"gym>=0.17,<0.20", # gym 0.20 breaks atari-py behavior | ||
"gym>=0.21", # Remember to also update gym version in "extra" below when this changes | ||
"numpy", | ||
"torch>=1.8.1", | ||
# For saving models | ||
|
@@ -116,7 +116,7 @@ | |
# For render | ||
"opencv-python", | ||
# For atari games, | ||
"atari_py==0.2.6", | ||
"gym[atari,accept-rom-license]>=0.21", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this doesn't work (I remember testing it in the past), we should put autorom with accept license here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just tested it and it seems to work OK:
then:
IIRC it fails on some very old pip versions that don't support backtracking. I tested on pip 20.3.4 and Python 3.9, but I'm pretty sure it works on older versions (there's some discussion about this in the review). |
||
"pillow", | ||
# Tensorboard support | ||
"tensorboard>=2.2.0", | ||
|
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.
I would probably fixed the version until #780 is ready