From e9f7e9cdf0961203f01ef00a56c532f739a11d09 Mon Sep 17 00:00:00 2001 From: tntwise Date: Sat, 7 Dec 2024 23:27:39 -0800 Subject: [PATCH] bump down torch --- CHANGELOG.md | 2 +- src/DownloadDeps.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1704cbc4..15f87ecf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ ### Changed - Make RVE smaller by switching to pyside6-essentials. (thanks zeptofine!) - Make GUI more compact. - - Bump torch to 2.6.0-dev20241207. + - Bump torch to 2.6.0-dev20241206. - Remove CUDA install requirement for GMFSS # RVE 2.1.0 ### Added diff --git a/src/DownloadDeps.py b/src/DownloadDeps.py index c81b49c6..42f7e110 100644 --- a/src/DownloadDeps.py +++ b/src/DownloadDeps.py @@ -62,9 +62,9 @@ class DownloadDependencies: def __init__(self): if PLATFORM == "win32": - self.__torchVersion = "dev20241207" + self.__torchVersion = "dev20241206" elif PLATFORM == "linux": - self.__torchVersion = "dev20241207" + self.__torchVersion = "dev20241206" createDirectory(os.path.join(CWD, "python")) createDirectory(os.path.join(CWD, "bin"))