1. 04 Dec, 2017 1 commit
  2. 03 Dec, 2017 1 commit
  3. 02 Dec, 2017 2 commits
  4. 01 Dec, 2017 6 commits
  5. 29 Nov, 2017 3 commits
  6. 02 Nov, 2017 2 commits
  7. 22 Sep, 2017 3 commits
  8. 21 Sep, 2017 1 commit
    • David Beitey's avatar
      Use HTTPS for PyPI index · fac9979f
      David Beitey authored
      PyPI redirects HTTP to HTTPS by default now so using HTTPS directly
      avoids the potential for that redirect being modified in flight,
      helping prevent MITM attacks.
      
      Fixes #114.
      fac9979f
  9. 17 Aug, 2017 2 commits
  10. 16 Aug, 2017 1 commit
  11. 15 Aug, 2017 2 commits
  12. 08 Aug, 2017 2 commits
  13. 27 Jul, 2017 1 commit
  14. 20 Jun, 2017 4 commits
  15. 14 Jun, 2017 1 commit
  16. 25 May, 2017 1 commit
    • Jason Madden's avatar
      Sort distributions when computing a signature. (#393) · 47bbc3c4
      Jason Madden authored
      This fixes #392.
      
      Previously under Python 3 (probably prior to 3.6, when dicts became
      ordered by default) or under Python 2 with ``-R`` or
      ``PYTHONHASHSEED=random`` the results were undefined because dict
      iteration order is undefined.
      
      The value being sorted is complex and defined by
      pkg_resources.Distribution:
      
      ```    @property
          def hashcmp(self):
              return (
                  self.parsed_version,
                  self.precedence,
                  self.key,
                  _remove_md5_fragment(self.location),
                  self.py_version or '',
                  self.platform or '',
              )
      
          def __hash__(self):
              return hash(self.hashcmp)
      
          def __lt__(self, other):
              return self.hashcmp < other.hashcmp
      ...
      ```
      47bbc3c4
  17. 30 Mar, 2017 5 commits
  18. 28 Mar, 2017 1 commit
  19. 07 Mar, 2017 1 commit