You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
551 B

  1. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804249
  2. https://sources.debian.org/patches/python-setuptools/40.8.0-1/sorted-requires.diff/
  3. Index: b/setuptools/command/egg_info.py
  4. ===================================================================
  5. --- a/setuptools/command/egg_info.py
  6. +++ b/setuptools/command/egg_info.py
  7. @@ -641,7 +641,7 @@ def _write_requirements(stream, reqs):
  8. def append_cr(line):
  9. return line + '\n'
  10. - lines = map(append_cr, lines)
  11. + lines = map(append_cr, sorted(lines))
  12. stream.writelines(lines)