Commit 0cf4475f authored by Jason R. Coombs's avatar Jason R. Coombs

Merged in moben/setuptools (pull request #76)

make order of lines in top_level.txt deterministic
parents 6c426303 ac14ffe9
......@@ -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