From b5ff72db6426a8edda2b74da6c383af3da5f8902 Mon Sep 17 00:00:00 2001 From: NeonScreams Date: Tue, 21 Apr 2026 18:02:49 -0700 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- utils/install_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/install_util.py b/utils/install_util.py index 7febbdf29..da6cf0d6b 100644 --- a/utils/install_util.py +++ b/utils/install_util.py @@ -43,7 +43,7 @@ def get_required_packages_versions(): if len(s) == 2: version_str = s[-1] if not is_valid_version(version_str): - logging.warning(f"Skipping unrecognised version format in requirements.txt: {version_str}") + logging.warning(f"Skipping unrecognized version format in requirements.txt for package {s[0]}: {version_str}") continue out[s[0]] = version_str return out.copy()