From c0d792788137f41f9dc361bd753cae3d70106184 Mon Sep 17 00:00:00 2001 From: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> Date: Mon, 6 Jul 2026 22:22:25 -0400 Subject: [PATCH 1/2] Remove Fuzzy Gdown Argument Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> --- ci/utils.py | 1 - ci/utils_deparate.py | 1 - ci/utils_deparate_ngc.py | 3 ++- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/utils.py b/ci/utils.py index 3f69f806..aa8af3b9 100644 --- a/ci/utils.py +++ b/ci/utils.py @@ -129,7 +129,6 @@ def download_large_files(bundle_path: str, large_file_name: str = "large_file.ym parser.read_config(os.path.join(bundle_path, large_file_name)) large_files_list = parser.get()["large_files"] for lf_data in large_files_list: - lf_data["fuzzy"] = True if "hash_val" in lf_data and lf_data.get("hash_val", "") == "": lf_data.pop("hash_val") if "hash_type" in lf_data and lf_data.get("hash_type", "") == "": diff --git a/ci/utils_deparate.py b/ci/utils_deparate.py index 2e3e1b1f..d5ffc95c 100644 --- a/ci/utils_deparate.py +++ b/ci/utils_deparate.py @@ -95,7 +95,6 @@ def download_large_files(bundle_path: str, large_file_name: str = "large_file.ym parser.read_config(os.path.join(bundle_path, large_file_name)) large_files_list = parser.get()["large_files"] for lf_data in large_files_list: - lf_data["fuzzy"] = True if "hash_val" in lf_data and lf_data.get("hash_val", "") == "": lf_data.pop("hash_val") if "hash_type" in lf_data and lf_data.get("hash_type", "") == "": diff --git a/ci/utils_deparate_ngc.py b/ci/utils_deparate_ngc.py index dd35171c..aeedd546 100644 --- a/ci/utils_deparate_ngc.py +++ b/ci/utils_deparate_ngc.py @@ -24,6 +24,8 @@ Github, _ = optional_import("github", name="Github") +gdown, has_gdown = optional_import("gdown") + SUPPORTED_HASH_TYPES = {"md5": hashlib.md5, "sha1": hashlib.sha1, "sha256": hashlib.sha256, "sha512": hashlib.sha512} @@ -98,7 +100,6 @@ def download_large_files(bundle_path: str, large_file_name: str = "large_file.ym parser.read_config(os.path.join(bundle_path, large_file_name)) large_files_list = parser.get()["large_files"] for lf_data in large_files_list: - lf_data["fuzzy"] = True if "hash_val" in lf_data and lf_data.get("hash_val", "") == "": lf_data.pop("hash_val") if "hash_type" in lf_data and lf_data.get("hash_type", "") == "": From 3c95a43e11342a8a9320f2e4f18ef7479004b4f1 Mon Sep 17 00:00:00 2001 From: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> Date: Mon, 6 Jul 2026 22:23:23 -0400 Subject: [PATCH 2/2] Fix Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> --- ci/utils_deparate_ngc.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ci/utils_deparate_ngc.py b/ci/utils_deparate_ngc.py index aeedd546..e7c2256e 100644 --- a/ci/utils_deparate_ngc.py +++ b/ci/utils_deparate_ngc.py @@ -24,8 +24,6 @@ Github, _ = optional_import("github", name="Github") -gdown, has_gdown = optional_import("gdown") - SUPPORTED_HASH_TYPES = {"md5": hashlib.md5, "sha1": hashlib.sha1, "sha256": hashlib.sha256, "sha512": hashlib.sha512}