File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 11
11
# add these directories to sys.path here. If the directory is relative to the
12
12
# documentation root, use os.path.abspath to make it absolute, like shown here.
13
13
#
14
+ import datetime
14
15
import os
15
16
import sys
16
17
from typing import Dict
43
44
# -- Project information -----------------------------------------------------
44
45
45
46
project = "Stable Baselines3"
46
- copyright = "2022 , Stable Baselines3"
47
+ copyright = f"2021- { datetime . date . today (). year } , Stable Baselines3"
47
48
author = "Stable Baselines3 Contributors"
48
49
49
50
# The short X.Y version
Original file line number Diff line number Diff line change 3
3
Changelog
4
4
==========
5
5
6
-
7
- Release 2.1.0a4 (WIP)
6
+ Release 2.1.0 (2023-08-17)
8
7
--------------------------
9
8
9
+ **Float64 actions , Gymnasium 0.29 support and bug fixes **
10
+
10
11
Breaking Changes:
11
12
^^^^^^^^^^^^^^^^^
12
13
- Removed Python 3.7 support
@@ -19,16 +20,21 @@ New Features:
19
20
20
21
`SB3-Contrib `_
21
22
^^^^^^^^^^^^^^
23
+ - Fixed MaskablePPO ignoring ``stats_window_size `` argument
24
+ - Added Python 3.11 support
22
25
23
26
`RL Zoo `_
24
27
^^^^^^^^^
28
+ - Upgraded to Huggingface-SB3 >= 2.3
29
+ - Added Python 3.11 support
30
+
25
31
26
32
Bug Fixes:
27
33
^^^^^^^^^^
28
34
- Relaxed check in logger, that was causing issue on Windows with colorama
29
35
- Fixed off-policy algorithms with continuous float64 actions (see #1145) (@tobirohrer)
30
- - Fixed env_checker.py warning messages for out of bounds in complex observation spaces (@Gabo-Tor)
31
-
36
+ - Fixed `` env_checker.py `` warning messages for out of bounds in complex observation spaces (@Gabo-Tor)
37
+
32
38
Deprecations:
33
39
^^^^^^^^^^^^^
34
40
Original file line number Diff line number Diff line change 1
- 2.1.0a4
1
+ 2.1.0
You can’t perform that action at this time.
0 commit comments