Release 1.4.0 (#57)

* Release 1.4.0

* Update requirements
This commit is contained in:
Antonin RAFFIN 2022-01-19 13:50:56 +01:00 committed by GitHub
parent 675304d8fa
commit 89f2bae9f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -4,14 +4,14 @@ Changelog
========== ==========
Release 1.3.1a9 (WIP) Release 1.4.0 (2021-10-23)
------------------------------- -------------------------------
**Add TRPO and ARS** **Add Trust Region Policy Optimization (TRPO) and Augmented Random Search (ARS) algorithms**
Breaking Changes: Breaking Changes:
^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^
- Dropped python 3.6 support - Dropped python 3.6 support
- Upgraded to Stable-Baselines3 >= 1.3.1a9 - Upgraded to Stable-Baselines3 >= 1.4.0
- ``MaskablePPO`` was updated to match latest SB3 ``PPO`` version (timeout handling and new method for the policy object) - ``MaskablePPO`` was updated to match latest SB3 ``PPO`` version (timeout handling and new method for the policy object)
New Features: New Features:

View File

@ -48,10 +48,10 @@ Can I use?
============= ====== =========== ============= ====== ===========
Space Action Observation Space Action Observation
============= ====== =========== ============= ====== ===========
Discrete ✔️ Discrete ✔️ ✔️
Box ✔️ ✔️ Box ✔️ ✔️
MultiDiscrete ❌ MultiDiscrete ❌ ✔️
MultiBinary ❌ MultiBinary ❌ ✔️
Dict ❌ ❌ Dict ❌ ❌
============= ====== =========== ============= ====== ===========

View File

@ -1 +1 @@
1.3.1a9 1.4.0

View File

@ -63,7 +63,7 @@ setup(
packages=[package for package in find_packages() if package.startswith("sb3_contrib")], packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
package_data={"sb3_contrib": ["py.typed", "version.txt"]}, package_data={"sb3_contrib": ["py.typed", "version.txt"]},
install_requires=[ install_requires=[
"stable_baselines3>=1.3.1a9", "stable_baselines3>=1.4.0",
], ],
description="Contrib package of Stable Baselines3, experimental code.", description="Contrib package of Stable Baselines3, experimental code.",
author="Antonin Raffin", author="Antonin Raffin",