Add support for python 3.11 (#71)

This commit is contained in:
Mark Towers
2022-12-01 12:51:17 +00:00
committed by GitHub
parent e9f4655939
commit 3dfb4a396d
5 changed files with 12 additions and 8 deletions

View File

@@ -36,12 +36,12 @@ def get_version():
extras: Dict[str, List[str]] = {
"atari": ["shimmy[atari]>=0.1.0,<1.0"],
"accept-rom-license": ["autorom[accept-rom-license]~=0.4.2"],
"box2d": ["box2d-py==2.3.5", "pygame==2.1.0", "swig==4.*"],
"classic_control": ["pygame==2.1.0"],
"mujoco_py": ["mujoco_py<2.2,>=2.1"],
"box2d": ["box2d-py==2.3.5", "pygame==2.1.3.dev8", "swig==4.*"],
"classic_control": ["pygame==2.1.3.dev8"],
"mujoco_py": ["mujoco_py"],
"mujoco": ["mujoco==2.2", "imageio>=2.14.1"],
"toy_text": ["pygame==2.1.0"],
"jax": ["jax==0.3.20", "jaxlib==0.3.20"],
"toy_text": ["pygame==2.1.3.dev8"],
"jax": ["jax==0.3.25", "jaxlib==0.3.25"],
"other": ["lz4>=3.1.0", "opencv-python>=3.0", "matplotlib>=3.0", "moviepy>=1.0.0"],
}
@@ -97,6 +97,7 @@ setup(
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
extras_require=extras,
zip_safe=False,