Commit ac14ffe9 authored by Benedikt Morbach's avatar Benedikt Morbach

make order of lines in top_level.txt deterministic

like it was done for requirements and entry_points
parent f1861733
......@@ -389,7 +389,7 @@ def write_toplevel_names(cmd, basename, filename):
for k in cmd.distribution.iter_distribution_names()
]
)
cmd.write_file("top-level names", filename, '\n'.join(pkgs) + '\n')
cmd.write_file("top-level names", filename, '\n'.join(sorted(pkgs) + '\n')
def overwrite_arg(cmd, basename, filename):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment