-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replace gym with gymnasium (#100)
This commit replaces the https://www.gymlibrary.dev/ library with the new maintained https://gymnasium.farama.org/ library.
- Loading branch information
Showing
24 changed files
with
104 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Cartpole | ||
|
||
* Check if beyond\_Done is still used. | ||
* Check why reward\_range is set. | ||
* Check step function, check reset function, check render function. | ||
* Get up to date with new code. | ||
* Test truncated. | ||
|
||
# Oscillator | ||
|
||
* Review code. | ||
|
||
# Ex3-EKF | ||
|
||
* Review code. | ||
|
||
# Disturber | ||
|
||
* Cleanup code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
gym==0.26.0 | ||
gymnasium==0.28.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
[metadata] | ||
name = simzoo | ||
version = 0.5.6 | ||
description = A python package containing the bayesian_learning_control openai gym environments. | ||
description = A python package containing the bayesian_learning_control gymnasium environments. | ||
long_description = file: README.md, CHANGELOG.md, LICENSE | ||
long_description_content_type=text/markdown | ||
author = Rick Staa | ||
author_email = [email protected] | ||
url = https://github.com/rickstaa/simzoo | ||
keywords = rl, openai gym | ||
keywords = | ||
"reinforcement-learning", | ||
"simulation", | ||
"openai-gym", | ||
"gym-environments", | ||
"gymnasium", | ||
"gymnasium-environments" | ||
license = Rick Staa copyright | ||
license_file = LICENSE | ||
classifiers = | ||
|
@@ -21,7 +27,7 @@ classifiers = | |
packages = find: | ||
include_package_data = True | ||
install_requires = | ||
gym | ||
gymnasium | ||
matplotlib | ||
iteration_utilities | ||
python_requires = >=3.5 | ||
|
@@ -37,7 +43,7 @@ dev = | |
flake8 | ||
black | ||
build = | ||
gym=>0.25.0 | ||
gymnasium | ||
matplotlib==3.7.0 | ||
|
||
[flake8] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
gym==0.26.0 | ||
gymnasium==0.28.1 | ||
matplotlib==3.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.