1. 22 Nov, 2022 4 commits
  2. 16 Nov, 2022 3 commits
  3. 15 Nov, 2022 5 commits
  4. 13 Nov, 2022 1 commit
  5. 11 Nov, 2022 3 commits
    • Bump `xattr` version to `0.10.0`. (#7005) · 28b0b1dc
      # Pull Request Check List
      
      Resolves: #6928 
      
      <!-- This is just a reminder about the most common mistakes. Please make
      sure that you tick all *appropriate* boxes. But please read our
      [contribution guide](https://python-poetry.org/docs/contributing/) at
      least once, it will save you unnecessary review cycles! -->
      
      - [ ] Added **tests** for changed code.
      - [ ] Updated **documentation** for changed code.
      
      <!-- If you have *any* questions to *any* of the points above, just
      **submit and ask**! This checklist is here to *help* you, not to deter
      you from contributing! -->
      
      Bump `xattr` version to `0.10.0`.
      
      This fixes #6891, which is not a problem with the user's environment as
      suggested by the maintainer of xattr at xattr/xattr#108, but in fact the
      problem of the package which was fixed by xattr/xattr#106.
      
      Looking at the [changes in the version
      bump](https://github.com/xattr/xattr/compare/v0.9.9...v0.10.0), there
      does not seem to be any significant changes other than shabang
      xattr/xattr#106.
      
      Co-authored-by: Moonsik Park <moonsik.park@estsoft.com>
      Co-authored-by: Bartosz Sokorski <b.sokorski@gmail.com>
      Moonsik Park committed
    • pip install --no-input everywhere (#6966) · 455c0b27
      This is an extension of
      https://github.com/python-poetry/poetry/pull/6724. I think `pip install`
      invoked by poetry should never ask for user input.
      
      Motivation is that it happened to myself and a number of colleagues many
      times that poetry got seemingly stuck while it was just waiting for a
      user input because of a private pypi repository that needed
      authentication.
      
      I hope this is a valuable contribution to a tool I like a lot and would
      like to use more and more :)
      Jakub Urban committed
  6. 06 Nov, 2022 2 commits
  7. 05 Nov, 2022 1 commit
  8. 03 Nov, 2022 7 commits
  9. 01 Nov, 2022 1 commit
  10. 31 Oct, 2022 6 commits
  11. 30 Oct, 2022 3 commits
  12. 29 Oct, 2022 1 commit
  13. 26 Oct, 2022 1 commit
  14. 24 Oct, 2022 2 commits
    • strict flake8-type-checking (#6866) · 1af6e238
      recent flake8-type-checking encourages cast() using the name of the
      class rather than the actual class, presumably with the aim that you
      might find more things you don't need to import at runtime
      
      however here, consistent with other recent MRs, I've taken the view that
      it's better to assert that you have the expected type than to trust that
      it's so
      David Hotham committed
    • remove getattr from SitePackages (#6867) · c9e6d5e4
      `__getattr__` can be cute and all, but it's unhelpful for typechecking
      (and human code readers): suddenly any attribute on an object might be
      valid, and might return any type at all.
      
      mypy and the unit tests agree that no use is made of the `__getattr__`
      on `SitePackages` anyway, so removing it is simply making it clear that
      there is no magic.
      David Hotham committed