-
-
Notifications
You must be signed in to change notification settings - Fork 875
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test again * typo
- Loading branch information
Showing
5 changed files
with
6 additions
and
28 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -102,10 +102,7 @@ def __init__( | |
try: | ||
http_body = http_body.decode("utf-8") | ||
except: | ||
http_body = ( | ||
"<Could not decode body as utf-8. " | ||
"Please report to [email protected]>" | ||
) | ||
http_body = "<Could not decode body as utf-8.>" | ||
|
||
self._message = message | ||
self.http_body = http_body | ||
|
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 |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
version=VERSION, | ||
description="Gym: A universal API for reinforcement learning environments.", | ||
url="https://github.com/openai/gym", | ||
author="Gym community", | ||
author="Gym Community", | ||
author_email="[email protected]", | ||
license="", | ||
packages=[package for package in find_packages() if package.startswith("gym")], | ||
|
@@ -71,5 +71,6 @@ | |
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
) |