From 911d542c8f63ac6ea516a69b0e77c384ff43957b Mon Sep 17 00:00:00 2001 From: takuseno Date: Sat, 2 Nov 2024 16:46:16 +0900 Subject: [PATCH] Update torch dependency --- README.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6557916a..7b2fa9a9 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ d3rlpy supports Linux, macOS and Windows. ### Dependencies Installing d3rlpy package will install or upgrade the following packages to satisfy requirements: -- torch>=2.0.0 +- torch>=2.5.0 - tqdm>=4.66.3 - gym>=0.26.0 - gymnasium>=1.0.0 diff --git a/requirements.txt b/requirements.txt index e2514a46..604cca3b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -torch==2.0.1 +torch==2.5.0 tqdm>=4.66.1 h5py==2.10.0 gym==0.26.2 diff --git a/setup.py b/setup.py index 1b6c90ce..b6be1cb6 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ "Operating System :: MacOS :: MacOS X", ], install_requires=[ - "torch>=2.0.0", + "torch>=2.5.0", "tqdm>=4.66.3", "h5py", "gym>=0.26.0",