Update setup.py dependency versions

This commit is contained in:
Lukas Schneider 2024-03-24 12:25:56 -07:00 committed by GitHub
parent 7ce11711d4
commit 9c0fcdc677
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 8 deletions

View File

@ -8,13 +8,6 @@ setup(
description="Fast and simple RL algorithms implemented in pytorch", description="Fast and simple RL algorithms implemented in pytorch",
python_requires=">=3.6", python_requires=">=3.6",
install_requires=[ install_requires=[
"GitPython", "GitPython", "gym[all]", "numpy", "onnx", "tensorboard", "torch", "torchvision", "wandb",
"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",
], ],
) )