Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Lie Ryan
On 04/26/10 02:37, Jonathan Fine wrote: > > I don't know if the quadratic running time is an issue for my purpose. It's not until you decide it's yes. -- http://mail.python.org/mailman/listinfo/python-list

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Jonathan Fine
Eduardo Schettino wrote: On Sun, Apr 25, 2010 at 11:44 PM, Jonathan Fine wrote: Eduardo Schettino wrote: On Sun, Apr 25, 2010 at 4:53 AM, Jonathan Fine wrote: Hi I'm hoping to avoid reinventing a wheel (or other rolling device). I've got a number of dependencies and, if possible, I want to

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Eduardo Schettino
On Sun, Apr 25, 2010 at 11:44 PM, Jonathan Fine wrote: > Eduardo Schettino wrote: >> >> On Sun, Apr 25, 2010 at 4:53 AM, Jonathan Fine wrote: >>> >>> Hi >>> >>> I'm hoping to avoid reinventing a wheel (or other rolling device).  I've >>> got >>> a number of dependencies and, if possible, I want t

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Jonathan Fine
Eduardo Schettino wrote: On Sun, Apr 25, 2010 at 4:53 AM, Jonathan Fine wrote: Hi I'm hoping to avoid reinventing a wheel (or other rolling device). I've got a number of dependencies and, if possible, I want to order them so that each item has its dependencies met before it is processed. I t

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Jonathan Fine
Makoto Kuwata wrote: On Sun, Apr 25, 2010 at 5:53 AM, Jonathan Fine wrote: I'm hoping to avoid reinventing a wheel (or other rolling device). I've got a number of dependencies and, if possible, I want to order them so that each item has its dependencies met before it is processed. I think I c

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Eduardo Schettino
On Sun, Apr 25, 2010 at 4:53 AM, Jonathan Fine wrote: > Hi > > I'm hoping to avoid reinventing a wheel (or other rolling device).  I've got > a number of dependencies and, if possible, I want to order them so that each > item has its dependencies met before it is processed. > > I think I could get

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Makoto Kuwata
On Sun, Apr 25, 2010 at 5:53 AM, Jonathan Fine wrote: > I'm hoping to avoid reinventing a wheel (or other rolling device).  I've got > a number of dependencies and, if possible, I want to order them so that each > item has its dependencies met before it is processed. > > I think I could get what I

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Jonathan Fine
Aahz wrote: In article , Jonathan Fine wrote: I'm hoping to avoid reinventing a wheel (or other rolling device). I've got a number of dependencies and, if possible, I want to order them so that each item has its dependencies met before it is processed. I think I could get what I want by wr

Re: Wanted: Python solution for ordering dependencies

2010-04-25 Thread Jonathan Fine
Chris Rebert wrote: On Sat, Apr 24, 2010 at 1:53 PM, Jonathan Fine wrote: Hi I'm hoping to avoid reinventing a wheel (or other rolling device). I've got a number of dependencies and, if possible, I want to order them so that each item has its dependencies met before it is processed. I think

Re: Wanted: Python solution for ordering dependencies

2010-04-24 Thread Aahz
In article , Jonathan Fine wrote: > >I'm hoping to avoid reinventing a wheel (or other rolling device). I've >got a number of dependencies and, if possible, I want to order them so >that each item has its dependencies met before it is processed. > >I think I could get what I want by writing an

Re: Wanted: Python solution for ordering dependencies

2010-04-24 Thread Chris Rebert
On Sat, Apr 24, 2010 at 1:53 PM, Jonathan Fine wrote: > Hi > > I'm hoping to avoid reinventing a wheel (or other rolling device).  I've got > a number of dependencies and, if possible, I want to order them so that each > item has its dependencies met before it is processed. > > I think I could get

Wanted: Python solution for ordering dependencies

2010-04-24 Thread Jonathan Fine
Hi I'm hoping to avoid reinventing a wheel (or other rolling device). I've got a number of dependencies and, if possible, I want to order them so that each item has its dependencies met before it is processed. I think I could get what I want by writing and running a suitable makefile, but t