* Added a new compatibility wrapper along with tests
* Fix for 3.6 typing
* Fix for 3.6 typing again
* Add make integration
* Unrelated change that for some reason is necessary to fix pyright
* Ignore weird (and very non-critical) type check bug
* Adjust old tests
* Rename the compatibility argument in make
* Rename the compatibility argument in register and envspec
* Documentation updates
* Remove test envs from the registry
* Some rogue renames
* Add nicer str and repr to the compatibility layer
* Reorder the compatibility layer application
* Add metadata to test envs
* Add proper handling of automatic human rendering
* Add auto human rendering to reset
* Enable setting render_mode in gym.make
* Documentation update
* Fix an unrelated stochastic test
The `warnings.simplefilter(...)` call mistakenly voids and nullifies
all the previous warning filters for DeprecationWarning, registered by
other packages or user programs via `warnings.filterwarnings` call
which has an explicit intention of suppress DeprecationWarning.
Control of DeprecationWarning's made in the gym library should have
effects only within the gym package.
* initial commit
* Fix the multi-binary sample and upgrade multi-discrete sample
* Fix MultiBinary sample tests and pre-commit
* Adds coverage tests and updates test_utils.py to use the utils.py spaces. Fix bug in text.py
* pre-commit
* Initial commit
* Add missing __init__ for EnvSpec
* third time a charm
* Replace entry_point=None with entry_point="no-entry-point"
* Readd make overloads, updated with all gym envs
* pre-commit
* Add apply_step_compatibility to make and add testing
* Code review by Arjun
* initial commit
* Fix CI
* Fixed CI
* third time the charm
* Fix mujoco environment render modes order
* Remove unnecessary changes
* pre-commit
* Fix tests
* Comment out test render modes
* Fix code review and readd mujoco
* pre-commit
* Fix testing envs
* Fix all GenericTestEnvs
* Do not run mujoco-py render environments
* removed return_info, made info dict mandatory in reset
* tenatively removed deprecated seed api for environments
* added more info type checks to wrapper tests
* formatting/style compliance
* addressed some comments
* polish to address review
* fixed tests after merge, and added a test of the return_info deprecation assertion if found in reset signature
* some organization of env_checker tests, reverted a probably merge error
* added deprecation check for seed function in env
* updated docstring
* removed debug prints, tweaked test_check_seed_deprecation
* changed return_info deprecation check from assertion to warning
* fixes to vector envs, now should be correctly structured
* added some explanation and typehints for mockup depcreated return info reset function
* re-removed seed function from vector envs
* added explanation to _reset_return_info_type and changed the return statement