You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update Gymnasium to v1.0.0a1
* Comment out `gymnasium.wrappers.monitor` (todo update to VideoRecord)
* Fix ruff warnings
* Register Atari envs
* Update `getattr` to `Env.get_wrapper_attr`
* Reorder imports
* Fix `seed` order
* Fix collecting `max_steps`
* Copy and paste video recorder to prevent the need to rewrite the vec vide recorder wrapper
* Use `typing.List` rather than list
* Fix env attribute forwarding
* Separate out env attribute collection from its utilisation
* Update for Gymnasium alpha 2
* Remove assert for OrderedDict
* Update setup.py
* Add type: ignore
* Test with Gymnasium main
* Remove `gymnasium.logger.debug/info`
* Fix github CI yaml
* Run gym 0.29.1 on python 3.10
* Update lower bounds
* Integrate video recorder
* Remove ordered dict
* Update changelog
---------
Co-authored-by: Antonin RAFFIN <[email protected]>
Copy file name to clipboardExpand all lines: docs/misc/changelog.rst
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@
3
3
Changelog
4
4
==========
5
5
6
-
Release 2.4.0a10 (WIP)
6
+
Release 2.4.0a11 (WIP)
7
7
--------------------------
8
8
9
-
**New algorithm: CrossQ in SB3 Contrib**
9
+
**New algorithm: CrossQ in SB3 Contrib, Gymnasium v1.0 support**
10
10
11
11
.. note::
12
12
@@ -24,12 +24,14 @@ Release 2.4.0a10 (WIP)
24
24
25
25
Breaking Changes:
26
26
^^^^^^^^^^^^^^^^^
27
+
- Increase minimum required version of Gymnasium to 0.29.1
27
28
28
29
New Features:
29
30
^^^^^^^^^^^^^
30
31
- Added support for ``pre_linear_modules`` and ``post_linear_modules`` in ``create_mlp`` (useful for adding normalization layers, like in DroQ or CrossQ)
31
32
- Enabled np.ndarray logging for TensorBoardOutputFormat as histogram (see GH#1634) (@iwishwasaneagle)
32
33
- Updated env checker to warn users when using multi-dim array to define `MultiDiscrete` spaces
34
+
- Added support for Gymnasium v1.0
33
35
34
36
Bug Fixes:
35
37
^^^^^^^^^^
@@ -69,6 +71,7 @@ Others:
69
71
- Added a warning to recommend using CPU with on policy algorithms (A2C/PPO) and ``MlpPolicy``
70
72
- Switched to uv to download packages faster on GitHub CI
71
73
- Updated dependencies for read the doc
74
+
- Removed unnecessary ``copy_obs_dict`` method for ``SubprocVecEnv``, remove the use of ordered dict and rename ``flatten_obs`` to ``stack_obs``
0 commit comments