1. 18 Dec, 2022 4 commits
  2. 17 Dec, 2022 1 commit
  3. 12 Dec, 2022 1 commit
  4. 11 Dec, 2022 2 commits
  5. 10 Dec, 2022 1 commit
  6. 09 Dec, 2022 2 commits
  7. 07 Dec, 2022 1 commit
  8. 05 Dec, 2022 1 commit
  9. 01 Dec, 2022 5 commits
  10. 22 Nov, 2022 5 commits
  11. 16 Nov, 2022 3 commits
  12. 15 Nov, 2022 5 commits
  13. 13 Nov, 2022 1 commit
  14. 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
  15. 06 Nov, 2022 2 commits
  16. 05 Nov, 2022 1 commit
  17. 03 Nov, 2022 2 commits
    • docs: fix typo in repositories (#6942) · 3a961dfb
      # Pull Request Check List
      
      Resolves: #issue-number-here
      
      <!-- 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.
      - [x] 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! -->
      
      Co-authored-by: Mathieu Kniewallner <mathieu.kniewallner@gmail.com>
      chris committed
    • fix: remove side effects from tests (#6929) · 14ab4497
      Found some cases where tests were writing to the Poetry test runtime
      environment rather than a mocked local directory. This is an issue,
      since it meant that some tests were technically stateful when rerunning
      locally.
      
      Added in placeholders for those tests. Tested that this succeeds by
      using a build where my Poetry venv was made entirely read-only.
      Chad Crawford committed