1. 31 Jul, 2020 1 commit
  2. 30 Jul, 2020 1 commit
    • chef: make cached artifact uri platform independent · 6473994b
      Cached artifact uri was previously constructed manually using a string
      representation of the artifact path. This change ensures that the uri 
      is generated by pathlib instead.
      
      Resolves: #2744
      
      Co-authored-by: Fredrik Averpil <fredrik.averpil@ericsson.com>
      Co-authored-by: Arun Babu Neelicattu <arun.neelicattu@gmail.com>
      Fredrik Averpil committed
  3. 28 Jul, 2020 3 commits
  4. 27 Jul, 2020 1 commit
  5. 24 Jul, 2020 17 commits
  6. 23 Jul, 2020 6 commits
  7. 21 Jul, 2020 7 commits
  8. 20 Jul, 2020 3 commits
  9. 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