diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-16 11:04:39 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-16 11:04:39 -0400 |
commit | 0cf4475f33baf74235d563d86979a9546bc7406b (patch) | |
tree | 5ab4ed8fd18505fcf7303f320d21bd365536deb0 | |
parent | 6c42630380e93d2945620bae9a351a506bf42b19 (diff) | |
parent | ac14ffe92376c54bb2d5a443e5177d85faeda75d (diff) | |
download | external_python_setuptools-0cf4475f33baf74235d563d86979a9546bc7406b.tar.gz external_python_setuptools-0cf4475f33baf74235d563d86979a9546bc7406b.tar.bz2 external_python_setuptools-0cf4475f33baf74235d563d86979a9546bc7406b.zip |
Merged in moben/setuptools (pull request #76)
make order of lines in top_level.txt deterministic
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 72493d0b..1ef723da 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -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): |