From b1397bbb72c720066913275ce89eaf9a7733ea9a Mon Sep 17 00:00:00 2001 From: Antonin RAFFIN Date: Sat, 23 Oct 2021 17:21:22 +0200 Subject: [PATCH] Release 1.3.0 (#48) --- docs/misc/changelog.rst | 9 ++++++++- sb3_contrib/version.txt | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index d437efc..474db6b 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -3,14 +3,21 @@ Changelog ========== -Release 1.2.1a3 (WIP) +Release 1.3.0 (2021-10-23) ------------------------------- **Invalid action masking for PPO** +.. warning:: + + This version will be the last one supporting Python 3.6 (end of life in Dec 2021). + We highly recommended you to upgrade to Python >= 3.7. + + Breaking Changes: ^^^^^^^^^^^^^^^^^ - Removed ``sde_net_arch`` +- Upgraded to Stable-Baselines3 >= 1.3.0 New Features: ^^^^^^^^^^^^^ diff --git a/sb3_contrib/version.txt b/sb3_contrib/version.txt index 90ebae4..f0bb29e 100644 --- a/sb3_contrib/version.txt +++ b/sb3_contrib/version.txt @@ -1 +1 @@ -1.2.1a3 +1.3.0 diff --git a/setup.py b/setup.py index 0266d2b..dafed9a 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ setup( packages=[package for package in find_packages() if package.startswith("sb3_contrib")], package_data={"sb3_contrib": ["py.typed", "version.txt"]}, install_requires=[ - "stable_baselines3>=1.2.0", + "stable_baselines3>=1.3.0", ], description="Contrib package of Stable Baselines3, experimental code.", author="Antonin Raffin",