From 36499b917e73d5be0029f2d44e7f0b83014c77ef Mon Sep 17 00:00:00 2001 From: J K Terry Date: Tue, 17 Aug 2021 10:25:59 -0400 Subject: [PATCH] More setup.py fixes (#2321) * move cloud pickle * more fixes * move cloud pickle back --- requirements.txt | 6 +++--- setup.py | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index a0e62ed5b7a..790d1570a8a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,8 +2,8 @@ atari-py==0.2.6 opencv-python>=3. box2d-py~=2.3.5 mujoco_py>=1.50, <2.0 -imageio -scipy +scipy>=1.4.1 numpy>=1.18.0 pyglet>=1.4.0 -cloudpickle>=1.2.0,<1.7.0 \ No newline at end of file +cloudpickle>=1.2.0 +lz4>=3.1.0 \ No newline at end of file diff --git a/setup.py b/setup.py index c28802922ae..28b517b1272 100644 --- a/setup.py +++ b/setup.py @@ -12,10 +12,10 @@ "atari": ["atari-py==0.2.6", "opencv-python>=3."], "box2d": ["box2d-py~=2.3.5", "pyglet>=1.4.0"], "classic_control": ["pyglet>=1.4.0"], - "mujoco": ["mujoco_py>=1.50, <2.0", "imageio"], - "robotics": ["mujoco_py>=1.50, <2.0", "imageio"], - "toy_text": ["scipy"], - "wrappers": ["lz4~=3.1", "opencv-python>=3."], + "mujoco": ["mujoco_py>=1.50, <2.0"], + "robotics": ["mujoco_py>=1.50, <2.0"], + "toy_text": ["scipy>=1.4.1"], + "wrappers": ["lz4>=3.1.0", "opencv-python>=3."], } # Meta dependency groups. @@ -34,16 +34,16 @@ setup( name="gym", version=VERSION, - description="The OpenAI Gym: A toolkit for developing and comparing your reinforcement learning agents.", + description="Gym: A universal API for reinforcement learning environments.", url="https://github.com/openai/gym", author="OpenAI", - author_email="gym@openai.com", + author_email="jkterry@umd.edu", license="", packages=[package for package in find_packages() if package.startswith("gym")], zip_safe=False, install_requires=[ "numpy>=1.18.0", - "cloudpickle>=1.2.0,<1.7.0", + "cloudpickle>=1.2.0", ], extras_require=extras, package_data={