From c7e950439dde2d3246cff22e785f27b03c8455d6 Mon Sep 17 00:00:00 2001 From: Lukas Schneider <32388635+e3ntity@users.noreply.github.com> Date: Sun, 24 Mar 2024 15:56:09 -0700 Subject: [PATCH] Update setup.py dependency list --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e450dda..e424db3 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,6 @@ setup( description="Fast and simple RL algorithms implemented in pytorch", python_requires=">=3.6", install_requires=[ - "GitPython", "gym[all]", "numpy", "onnx", "tensorboard", "torch", "torchvision", "wandb", + "GitPython", "gym", "numpy", "onnx", "tensorboard", "torch", "torchvision", "wandb", ], )