Release v1.6.2 (#1103)

* Release v1.6.2

* Remove Gitlab CI, no more minutes
This commit is contained in:
Antonin RAFFIN 2022-10-10 16:37:11 +02:00 committed by GitHub
parent d8a430e088
commit e2f81bb70b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 7 deletions

View file

@ -1,6 +1,8 @@
<img src="docs/\_static/img/logo.png" align="right" width="40%"/>
[![pipeline status](https://gitlab.com/araffin/stable-baselines3/badges/master/pipeline.svg)](https://gitlab.com/araffin/stable-baselines3/-/commits/master) [![Documentation Status](https://readthedocs.org/projects/stable-baselines/badge/?version=master)](https://stable-baselines3.readthedocs.io/en/master/?badge=master) [![coverage report](https://gitlab.com/araffin/stable-baselines3/badges/master/coverage.svg)](https://gitlab.com/araffin/stable-baselines3/-/commits/master)
<!-- [![pipeline status](https://gitlab.com/araffin/stable-baselines3/badges/master/pipeline.svg)](https://gitlab.com/araffin/stable-baselines3/-/commits/master) -->
![CI](https://github.com/DLR-RM/stable-baselines3/workflows/CI/badge.svg)
[![Documentation Status](https://readthedocs.org/projects/stable-baselines/badge/?version=master)](https://stable-baselines3.readthedocs.io/en/master/?badge=master) [![coverage report](https://gitlab.com/araffin/stable-baselines3/badges/master/coverage.svg)](https://gitlab.com/araffin/stable-baselines3/-/commits/master)
[![codestyle](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

View file

@ -33,6 +33,11 @@ Installation
You can remove the ``--recursive`` option if you don't want to download the trained agents
.. note::
If you only need the training/plotting scripts and additional callbacks/wrappers from the RL Zoo, you can also install it via pip: ``pip install rl_zoo3``
2. Install dependencies
::
@ -57,7 +62,7 @@ For example (with evaluation and checkpoints):
::
python train.py --algo ppo2 --env CartPole-v1 --eval-freq 10000 --save-freq 50000
python train.py --algo ppo --env CartPole-v1 --eval-freq 10000 --save-freq 50000
Continue training (here, load pretrained agent for Breakout and continue

View file

@ -2,8 +2,11 @@
Changelog
==========
Release 1.6.2a0 (WIP)
---------------------------
Release 1.6.2 (2022-10-10)
--------------------------
**Progress bar in the learn() method, RL Zoo3 is now a package**
Breaking Changes:
^^^^^^^^^^^^^^^^^
@ -12,6 +15,7 @@ New Features:
^^^^^^^^^^^^^
- Added ``progress_bar`` argument in the ``learn()`` method, displayed using TQDM and rich packages
- Added progress bar callback
- The `RL Zoo <https://github.com/DLR-RM/rl-baselines3-zoo>`_ can now be installed as a package (``pip install rl_zoo3``)
SB3-Contrib
^^^^^^^^^^^
@ -19,6 +23,7 @@ SB3-Contrib
Bug Fixes:
^^^^^^^^^^
- ``self.num_timesteps`` was initialized properly only after the first call to ``on_step()`` for callbacks
- Set importlib-metadata version to ``~=4.13`` to be compatible with ``gym=0.21``
Deprecations:
^^^^^^^^^^^^^
@ -32,6 +37,7 @@ Documentation:
^^^^^^^^^^^^^^
- Extended docstring of the ``wrapper_class`` parameter in ``make_vec_env`` (@AlexPasqua)
Release 1.6.1 (2022-09-29)
---------------------------

View file

@ -82,6 +82,8 @@ setup(
"pandas",
# Plotting learning curves
"matplotlib",
# gym and flake8 not compatible with importlib-metadata>5.0
"importlib-metadata~=4.13",
],
extras_require={
"tests": [
@ -94,8 +96,6 @@ setup(
"pytype",
# Lint code
"flake8>=3.8",
# flake8 not compatible with importlib-metadata>5.0
"importlib-metadata~=4.13",
# Find likely bugs
"flake8-bugbear",
# Sort imports

View file

@ -1 +1 @@
1.6.2a0
1.6.2