mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-07-02 03:55:39 +00:00
Release 0.2.0
This commit is contained in:
parent
f8e39953a6
commit
809a3d3d38
3 changed files with 28 additions and 3 deletions
|
|
@ -3,9 +3,34 @@
|
|||
Changelog
|
||||
==========
|
||||
|
||||
Pre-Release 0.2.0a2 (WIP)
|
||||
|
||||
Pre-Release 0.3.0a0 (WIP)
|
||||
------------------------------
|
||||
|
||||
Breaking Changes:
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
||||
New Features:
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
Bug Fixes:
|
||||
^^^^^^^^^^
|
||||
|
||||
Deprecations:
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
Others:
|
||||
^^^^^^^
|
||||
|
||||
Documentation:
|
||||
^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
Pre-Release 0.2.0 (2020-02-14)
|
||||
------------------------------
|
||||
|
||||
**Python 3.6+ required, type checking, callbacks, doc build**
|
||||
|
||||
Breaking Changes:
|
||||
^^^^^^^^^^^^^^^^^
|
||||
- Python 2 support was dropped, Torchy Baselines now requires Python 3.6 or above
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -47,7 +47,7 @@ setup(name='torchy_baselines',
|
|||
license="MIT",
|
||||
long_description="",
|
||||
long_description_content_type='text/markdown',
|
||||
version="0.2.0a2",
|
||||
version="0.2.0",
|
||||
)
|
||||
|
||||
# python setup.py sdist
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ from torchy_baselines.ppo import PPO
|
|||
from torchy_baselines.sac import SAC
|
||||
from torchy_baselines.td3 import TD3
|
||||
|
||||
__version__ = "0.2.0a2"
|
||||
__version__ = "0.2.0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue