From b152417393ca427678adafec00c12593c9c0e5fa Mon Sep 17 00:00:00 2001 From: Haoming Date: Sun, 29 Mar 2026 20:51:53 +0700 Subject: [PATCH] bump --- modules/launch_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/launch_utils.py b/modules/launch_utils.py index 2f545588..bc5527f2 100644 --- a/modules/launch_utils.py +++ b/modules/launch_utils.py @@ -97,7 +97,7 @@ def _torch_version() -> tuple[str, str]: if m is None: print("\n\nFailed to parse PyTorch version...") - ver = os.environ.get("PYTORCH_VERSION", "2.9.1+cu128") + ver = os.environ.get("PYTORCH_VERSION", "2.10.0+cu130") print("Assuming: ", ver) print('(you can change this with `export PYTORCH_VERSION="..."`)\n\n') m = re.search(r"(\d+\.\d+\.\d+)(?:[^+]+)?\+(.+)", ver)