mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-22 07:02:19 +00:00
Import vector
in gymnasium.__init__
(#403)
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
"""Root `__init__` of the gymnasium module setting the `__all__` of gymnasium modules."""
|
"""Root `__init__` of the gymnasium module setting the `__all__` of gymnasium modules."""
|
||||||
# isort: skip_file
|
# isort: skip_file
|
||||||
# pyright: reportUnsupportedDunderAll=false
|
|
||||||
|
|
||||||
from gymnasium.core import (
|
from gymnasium.core import (
|
||||||
Env,
|
Env,
|
||||||
@@ -21,6 +20,7 @@ from gymnasium.envs.registration import (
|
|||||||
|
|
||||||
# necessary for `envs.__init__` which registers all gymnasium environments and loads plugins
|
# necessary for `envs.__init__` which registers all gymnasium environments and loads plugins
|
||||||
from gymnasium import envs
|
from gymnasium import envs
|
||||||
|
from gymnasium import experimental, spaces, utils, vector, wrappers, error, logger
|
||||||
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
@@ -48,7 +48,8 @@ __all__ = [
|
|||||||
"error",
|
"error",
|
||||||
"logger",
|
"logger",
|
||||||
]
|
]
|
||||||
__version__ = "0.28.0"
|
__version__ = "0.28.1"
|
||||||
|
|
||||||
|
|
||||||
# Initializing pygame initializes audio connections through SDL. SDL uses alsa by default on all Linux systems
|
# Initializing pygame initializes audio connections through SDL. SDL uses alsa by default on all Linux systems
|
||||||
# SDL connecting to alsa frequently create these giant lists of warnings every time you import an environment using
|
# SDL connecting to alsa frequently create these giant lists of warnings every time you import an environment using
|
||||||
|
Reference in New Issue
Block a user