Release 1.3.0 (#48)
This commit is contained in:
parent
d6c5cea644
commit
b1397bbb72
|
|
@ -3,14 +3,21 @@
|
||||||
Changelog
|
Changelog
|
||||||
==========
|
==========
|
||||||
|
|
||||||
Release 1.2.1a3 (WIP)
|
Release 1.3.0 (2021-10-23)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
**Invalid action masking for PPO**
|
**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:
|
Breaking Changes:
|
||||||
^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^
|
||||||
- Removed ``sde_net_arch``
|
- Removed ``sde_net_arch``
|
||||||
|
- Upgraded to Stable-Baselines3 >= 1.3.0
|
||||||
|
|
||||||
New Features:
|
New Features:
|
||||||
^^^^^^^^^^^^^
|
^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.2.1a3
|
1.3.0
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -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.2.0",
|
"stable_baselines3>=1.3.0",
|
||||||
],
|
],
|
||||||
description="Contrib package of Stable Baselines3, experimental code.",
|
description="Contrib package of Stable Baselines3, experimental code.",
|
||||||
author="Antonin Raffin",
|
author="Antonin Raffin",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue