-
Notifications
You must be signed in to change notification settings - Fork 580
Add Gym 0.26 support #256
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
Closed
Closed
Add Gym 0.26 support #256
Changes from 16 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
692492c
Update requirements
araffin f9b0fb5
Merge branch 'master' into feat/gym-0.24
araffin 3172ee6
Updates for newest gym version
araffin ba37700
Load the env only when needed
araffin dd65644
Merge branch 'master' into feat/gym-0.24
araffin aefcea6
Pin seaborn dependency
araffin d685d32
Update dependencies
araffin e5ef2b3
Fix pytorch download
araffin 7f4ecbb
Merge branch 'master' into feat/gym-0.24
araffin 6829642
Update requirements
araffin 60ada0e
Update scipy requirement
araffin 90b27b4
No scipy needed
araffin cdb8474
Merge branch 'master' of https://github.com/DLR-RM/rl-baselines3-zoo …
qgallouedec 65f2bbc
Load the env only when needed
qgallouedec 15fe4a0
Remove duplicated seaborn dependency
qgallouedec 9a7fedd
done to terminated, truncated
qgallouedec e98c2a2
Revert VecEnv step modification (still return done)
qgallouedec b5b8c24
gym26 reset format
qgallouedec b17afd4
lint step wrappers
qgallouedec cb8e1b7
update render
qgallouedec 865c5e0
black
qgallouedec f425058
gym 0.24 -> gym 0.26
qgallouedec 478198c
Update ale-py dependency
qgallouedec 9937d2a
Merge branch 'master' into feat/gym-0.24
araffin d689a90
Fixes bundle for gym 0.26
araffin bbdf8a6
Fix requirement
araffin d508eea
Update highway env
araffin 8144345
Merge branch 'master' into feat/gym-0.24
araffin 50fb759
Merge branch 'master' into feat/gym-0.24
araffin 022e64b
Merge branch 'master' into feat/gym-0.24
araffin aad58ab
Fix panda env check
araffin edf185b
Pass render mode for no vel env
araffin 70ddfb1
Declared exported methods
araffin a7bdc5e
Skip panda env for now
araffin d258dab
Fixes due to render_mode
araffin f272bad
Upgrade highway env version
araffin 068adc8
Add gym patches
araffin 54aa5d1
Another patch for gym
araffin 0affb2c
Fix lint warning
araffin 4e019e8
Patch Atari game video recording
araffin 23f7c1a
Enable tests when display is available
araffin c54b547
Merge branch 'master' into feat/gym-0.24
araffin 7bac0b3
Fix type checker
araffin 2e1ce9b
Merge branch 'master' into feat/gym-0.24
araffin 8a69bf5
Merge branch 'master' into feat/gym-0.24
araffin 305e0cc
Remove gitlab file
araffin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,23 @@ | ||
| gym==0.21 | ||
| stable-baselines3[extra,tests,docs]>=1.6.2 | ||
| sb3-contrib>=1.6.2 | ||
| gym==0.24.1 | ||
| # stable-baselines3[extra,tests,docs]>=1.5.1a7 | ||
| git+https://github.com/carlosluis/stable-baselines3@fix_tests#egg=stable_baselines3[extra,tests,docs] | ||
| # sb3-contrib>=1.5.0 | ||
| git+https://github.com/Stable-Baselines-Team/stable-baselines3-contrib@feat/new-gym-version | ||
| box2d-py==2.3.8 | ||
| pybullet | ||
| gym-minigrid | ||
| scikit-optimize | ||
| optuna | ||
| # scikit-optimize | ||
| optuna~=2.10.1 | ||
| pytablewriter~=0.64 | ||
| pyyaml>=5.1 | ||
| cloudpickle>=1.5.0 | ||
| plotly | ||
| panda-gym==1.1.1 # tmp fix: until compatibility with panda-gym v2 | ||
| panda-gym~=2.0.2 | ||
| rliable>=1.0.5 | ||
| wandb | ||
| ale-py==0.7.5 | ||
| huggingface_sb3>=2.2.1, <3.* | ||
| seaborn | ||
| seaborn~=0.11.2 | ||
| tqdm | ||
| rich | ||
| importlib-metadata~=4.13 # flake8 not compatible with importlib-metadata>5.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.