[Distutils] Re: Make an ordered list of sdists to be installed?

2018-07-23 Thread Tzu-ping Chung
I just happened to be looking into this area, and may be able to offer some help. Some background information (optional reading): https://github.com/pypa/pipenv/issues/2596#issuecomment-405656806 Sébastien (@sdispater) is the author of Poetry, including the resolver, called Mixology. As he

[Distutils] Re: Make an ordered list of sdists to be installed?

2018-07-23 Thread Pradyun Gedam
On Mon, Jul 23, 2018 at 3:19 PM Thomas Kluyver wrote: > > Hi all, > > Do we know of any tool that can, given the name of one or more packages, > follow dependency chains and produce a list of packages in the order they > need to be installed, assuming every package needed will be built from

[Distutils] Re: Make an ordered list of sdists to be installed?

2018-07-23 Thread Donald Stufft
The things you get from pip download should be order independent. It won’t include build dependencies though. > On Jul 23, 2018, at 5:48 AM, Thomas Kluyver wrote: > > Hi all, > > Do we know of any tool that can, given the name of one or more packages, > follow dependency chains and produce a

[Distutils] Re: Make an ordered list of sdists to be installed?

2018-07-23 Thread Nicholas Chammas
I don’t know the details, but I did read that Poetry has a sophisticated dependency resolver. https://github.com/sdispater/poetry I don’t know if there is a way to access the resolver independently of the tool, but perhaps it would provide a handy reference. 2018년 7월 23일 (월) 오전 5:49, Thomas