From 058f9ab6e8b1dbd88a0e467686306a7ef9812481 Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Wed, 10 Apr 2024 21:35:02 +0100 Subject: [PATCH] make pytorch dep a lower bound --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a3fb2707c3..01810aa5c2 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ def _init_submodule(): pytorch_package_dep = "torch" if pytorch_package_version is not None: - pytorch_package_dep += "==" + pytorch_package_version + pytorch_package_dep += ">=" + pytorch_package_version class clean(distutils.command.clean.clean):