From 9c0fcdc67756d76645e7381fbef833c990a6508d Mon Sep 17 00:00:00 2001 From: Lukas Schneider <32388635+e3ntity@users.noreply.github.com> Date: Sun, 24 Mar 2024 12:25:56 -0700 Subject: [PATCH] Update setup.py dependency versions --- setup.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/setup.py b/setup.py index e0766e1..e450dda 100644 --- a/setup.py +++ b/setup.py @@ -8,13 +8,6 @@ setup( description="Fast and simple RL algorithms implemented in pytorch", python_requires=">=3.6", install_requires=[ - "GitPython", - "gym[all]>=0.26.0", - "numpy>=1.24.4", - "onnx>=1.14.0", - "tensorboard>=2.10.0", - "torch>=1.10.0", - "torchvision>=0.5.0", - "wandb>=0.15.4", + "GitPython", "gym[all]", "numpy", "onnx", "tensorboard", "torch", "torchvision", "wandb", ], )