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