* Refactor lunar lander to use pygame
* Fix minor rendering inconsistency
* Refactor bipedal walker to use pygame
* Reformat with black
* Remove viewer
* Fix color for obstacles
* Update dependencies for box2d
* Optimize screen initialization
* Ditch most of the seeding.py and replace np_random with the numpy default_rng. Let's see if tests pass
* Updated a bunch of RNG calls from the RandomState API to Generator API
* black; didn't expect that, did ya?
* Undo a typo
* blaaack
* More typo fixes
* Fixed setting/getting state in multidiscrete spaces
* Fix typo, fix a test to work with the new sampling
* Correctly (?) pass the randomly generated seed if np_random is called with None as seed
* Convert the Discrete sample to a python int (as opposed to np.int64)
* Remove some redundant imports
* First version of the compatibility layer for old-style RNG. Mainly to trigger tests.
* Removed redundant f-strings
* Style fixes, removing unused imports
* Try to make tests pass by removing atari from the dockerfile
* Try to make tests pass by removing atari from the setup
* Try to make tests pass by removing atari from the setup
* Try to make tests pass by removing atari from the setup
* First attempt at deprecating `env.seed` and supporting `env.reset(seed=seed)` instead. Tests should hopefully pass but throw up a million warnings.
* black; didn't expect that, didya?
* Rename the reset parameter in VecEnvs back to `seed`
* Updated tests to use the new seeding method
* Removed a bunch of old `seed` calls.
Fixed a bug in AsyncVectorEnv
* Stop Discrete envs from doing part of the setup (and using the randomness) in init (as opposed to reset)
* Add explicit seed to wrappers reset
* Remove an accidental return
* Re-add some legacy functions with a warning.
* Use deprecation instead of regular warnings for the newly deprecated methods/functions
* reverting to older version of 3.6 python to test if the build is failing because of that
* revert 3.7 to 3.7.3 for the build
* revert python 3.8 version to 3.8.1
* do not install mujoco on 3.8 and 3.9
* enable mujoco for 3.7
* .
* .
* .
* use regex to navigate python version dependent package installation
* .
* drop python 2 support
* remove python 2.7 logic from Dockerfile
* Revert "remove python 2.7 logic from Dockerfile"
This reverts commit 43ceabfa8d70ca083661ab3d0d03f2a1adbef5ff.
* remove python 2.7 logic from Dockerfile
* use python 3.7.3 (3.7.6 segfaults with mujoco for some reason?
* include cmake into system level packages
* add swig to system packages
* python3.8 build still segfaults on mujoco tests, disabling for now
* add python 3.8 and 3.9 to the build
* python 3.9.1 -> 3.9.0
* oops i did not realize python 3.9 is still in alpha