1. 20 Apr, 2016 6 commits
  2. 19 Apr, 2016 1 commit
    • Davanum Srinivas's avatar
      Preserve order of egg_info section in setup.cfg · df05ebf3
      Davanum Srinivas authored
      egg_info is the dictionary with information that is injected
      into setup.cfg. edit_config uses RawConfigParser which uses
      collections.OrderedDict for all the data. When we use a
      simple dict(), when we loop through items in edit_config, we
      see random behavior as a result the fields
      tag_svn_revision/tag_date/tag_build are added to the setup.cfg
      randomly. So if we sort the items by key when we traverse items
      we will get deterministic output as RawConfigParser uses
      OrderedDict internally by default.
      df05ebf3
  3. 16 Apr, 2016 9 commits
  4. 15 Apr, 2016 7 commits
  5. 11 Apr, 2016 3 commits
  6. 10 Apr, 2016 3 commits
  7. 07 Apr, 2016 10 commits
  8. 06 Apr, 2016 1 commit
    • Steve Kowalik's avatar
      Stop comparing repr()'s in TestEntryPoint · b1eeba1c
      Steve Kowalik authored
      In Python 3, the default order of iterables can not determined,
      so comparing the repr of objects that include tuples is not static
      like it is under Python 2. Compare the attributes of EntryPoint
      instead, making sure to sort .attrs and .extras.
      
      Closes: #526
      b1eeba1c