From 774db8e997c788b7a644e58c32d34c783f5eeb30 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 20 Sep 2024 13:16:59 +0500 Subject: [PATCH] sort wheel files list in manifest --- src/bonsai/scripts/get_wheels.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bonsai/scripts/get_wheels.py b/src/bonsai/scripts/get_wheels.py index 1fa8daf95c..8af0c02e82 100644 --- a/src/bonsai/scripts/get_wheels.py +++ b/src/bonsai/scripts/get_wheels.py @@ -8,6 +8,7 @@ def find_whl_files(directory): for file in files: if file.endswith(".whl"): whl_files.append(os.path.relpath(os.path.join(root, file), directory)) + whl_files.sort() return whl_files