Skip to content

Commit

Permalink
Release 2.2.1 (#424)
Browse files Browse the repository at this point in the history
* Release 2.2.0

* Update SB3 version
  • Loading branch information
araffin committed Nov 17, 2023
1 parent e4667b6 commit 28dc228
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
## Release 2.2.0a12 (WIP)
## Release 2.2.1 (2023-11-17)

### Breaking Changes
- Removed `gym` dependency, the package is still required for some pretrained agents.
- Upgraded to SB3 >= 2.2.0
- Upgraded to SB3 >= 2.2.1
- Upgraded to Huggingface-SB3 >= 3.0
- Upgraded to pytablewriter >= 1.0

### New Features
- Add `--eval-env-kwargs` to `train.py` (@Quentin18)
- Added `--eval-env-kwargs` to `train.py` (@Quentin18)
- Added `ppo_lstm` to hyperparams_opt.py (@technocrat13)

### Bug fixes
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gym==0.26.2
stable-baselines3[extra_no_roms,tests,docs]>=2.2.0a11,<3.0
sb3-contrib>=2.2.0a11,<3.0
stable-baselines3[extra_no_roms,tests,docs]>=2.2.1,<3.0
sb3-contrib>=2.2.1,<3.0
box2d-py==2.3.8
pybullet
pybullet_envs_gymnasium>=0.4.0
Expand Down
2 changes: 1 addition & 1 deletion rl_zoo3/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0a12
2.2.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
},
entry_points={"console_scripts": ["rl_zoo3=rl_zoo3.cli:main"]},
install_requires=[
"sb3_contrib>=2.2.0a11,<3.0",
"sb3_contrib>=2.2.1,<3.0",
"gymnasium~=0.29.1",
"huggingface_sb3>=3.0,<4.0",
"tqdm",
"rich",
"optuna>=3.0",
"pyyaml>=5.1",
"pytablewriter~=0.64",
"pytablewriter~=1.2",
# TODO: add test dependencies
],
extras_require={
Expand Down

0 comments on commit 28dc228

Please sign in to comment.