1. 23 Jul, 2021 3 commits
  2. 11 Jul, 2021 2 commits
  3. 09 Jul, 2021 1 commit
  4. 06 Jul, 2021 1 commit
  5. 03 Jul, 2021 1 commit
  6. 27 Jun, 2021 1 commit
  7. 23 Jun, 2021 2 commits
  8. 22 Jun, 2021 1 commit
  9. 04 Jun, 2021 7 commits
  10. 01 Jun, 2021 3 commits
  11. 21 May, 2021 6 commits
  12. 18 May, 2021 1 commit
  13. 07 May, 2021 1 commit
  14. 06 May, 2021 3 commits
  15. 05 May, 2021 1 commit
  16. 04 May, 2021 1 commit
  17. 03 May, 2021 1 commit
  18. 30 Apr, 2021 4 commits
    • env: default to enabling pip/wheels/setuptools · f0408d61
      For project virtual environments, default to enabling pip, setuptools
      and wheel packages to retain existing stable behaviour to prevent
      unexpected breakages caused by development environments making
      assumptions of base package availability in virtual environments.
      
      Poetry itself does not require the use of these packages and will
      execute correctly within environments that do not have these packages.
      
      This change retains the ability to manage these packages as direct
      project dependency as introduced in #2826. All poetry internal
      execution of pip is retaining the use of the wheel embedded within
      the virtualenv package used by poetry.
      
      In cases where a one of these reserved packages are being managed as a
      project dependency, the will be treated as any other project
      dependency. Executing `poetry install --remove-untracked` will not
      remove any of these reserved packages. However, `poetry add pip` and
      `poetry remove pip` will trigger the update and removal of `pip`
      respectively.
      
      Relates-to: #2826
      Relates-to: #3916
      Arun Babu Neelicattu committed
    • upgrade dependencies · 3dceee38
      Arun Babu Neelicattu committed
    • tests: ensure ephemeral config usage · 92d92bb4
      Previously, pytest execution was influenced by poetry user
      configuration. This change ensures that a new config.toml is used each
      test case.
      Arun Babu Neelicattu committed