python-poetry / roadmap

Public roadmap for the Poetry package manager
2 stars 1 forks source link

No longer rely on pip for installation #1

Closed sdispater closed 1 year ago

sdispater commented 2 years ago

We are currently relying on pip to install downloaded packages. This requires subprocess calls which is far from ideal.

We can now leverage https://github.com/pypa/build and https://github.com/pradyunsg/installer to replace pip calls.

Initial WIP implementation in https://github.com/python-poetry/poetry/pull/4213