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
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ To install the base Gymnasium library, use `pip install gymnasium`
31
31
32
32
This does not include dependencies for all families of environments (there's a massive number, and some can be problematic to install on certain systems). You can install these dependencies for one family like `pip install "gymnasium[atari]"` or use `pip install "gymnasium[all]"` to install all dependencies.
33
33
34
-
We support and test for Python 3.8, 3.9, 3.10, 3.11 and 3.12 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.
34
+
We support and test for Python 3.10, 3.11 and 3.12 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.
Copy file name to clipboardExpand all lines: docs/api/wrappers/table.md
+2
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ wrapper in the page on the wrapper type
34
34
- Converts an image observation computed by ``reset`` and ``step`` from RGB to Grayscale.
35
35
* - :class:`HumanRendering`
36
36
- Allows human like rendering for environments that support "rgb_array" rendering.
37
+
* - :class:`ToArray`
38
+
- Wraps an environment based on any Array API compatible framework, e.g. torch, jax, numpy, such that it can be interacted with any other Array API compatible framework.
37
39
* - :class:`JaxToNumpy`
38
40
- Wraps a Jax-based environment such that it can be interacted with NumPy arrays.
0 commit comments