Rename to gymnasium

This commit is contained in:
pseudo-rnd-thoughts
2022-09-08 10:10:07 +01:00
parent 316f616f14
commit 640c509109
289 changed files with 1441 additions and 1447 deletions

View File

@@ -4,7 +4,7 @@ import re
from setuptools import find_packages, setup
with open("gym/version.py") as file:
with open("gymnasium/version.py") as file:
full_version = file.read()
assert (
re.match(r'VERSION = "\d\.\d+\.\d+"\n', full_version).group(0) == full_version
@@ -51,7 +51,7 @@ setup(
author="Gym Community",
author_email="jkterry@umd.edu",
classifiers=[
# Python 3.6 is minimally supported (only with basic gym environments and API)
# Python 3.6 is minimally supported (only with basic gymnasium environments and API)
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
@@ -71,10 +71,10 @@ setup(
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
name="gym",
packages=[package for package in find_packages() if package.startswith("gym")],
name="gymnasium",
packages=[package for package in find_packages() if package.startswith("gymnasium")],
package_data={
"gym": [
"gymnasium": [
"envs/mujoco/assets/*.xml",
"envs/classic_control/assets/*.png",
"envs/toy_text/font/*.ttf",