sort wheel files list in manifest

This commit is contained in:
Andrej730
2024-09-20 13:16:59 +05:00
parent 31d49a7bbc
commit 774db8e997
+1
View File
@@ -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