1. 30 Jul, 2020 2 commits
  2. 28 Jul, 2020 3 commits
  3. 27 Jul, 2020 1 commit
  4. 24 Jul, 2020 17 commits
  5. 23 Jul, 2020 6 commits
  6. 21 Jul, 2020 7 commits
  7. 20 Jul, 2020 3 commits
  8. 14 Jul, 2020 1 commit
    • Standardise on using virtualenv package (#2666) · d5a99f00
      Until now poetry used the built-in venv module available in Python 3.
      This has presented a few concerns. Chief of which has been
      inconsistent environment setup. This includes, but is not limited to,
      pip version used by the `ensurepip` module which is in turn used by the
      built-in `venv.EnvBuilder`. Additionally, the `virtualenv` package
      allows for faster environment creation. This can also allow us to, going
      forward, drop ad-hoc code required to inspect and manage environments.
      Arun Babu Neelicattu committed