Re: Adding behaviour for managing "task" dependencies

2007-10-06 Thread Bruno Desthuilliers
David a écrit : >>Any thoughts would be most appreciated, though I would like to stress >>that I don't think Python should support the syntax I'm proposing I'd >>just like to know if I can extend a copy of it to do that. >> > > > You can use syntax like this: > > class MyJob1(Job): > depends

Re: Adding behaviour for managing "task" dependencies

2007-10-05 Thread David
> > Any thoughts would be most appreciated, though I would like to stress > that I don't think Python should support the syntax I'm proposing I'd > just like to know if I can extend a copy of it to do that. > You can use syntax like this: class MyJob1(Job): depends(MyJob2) depends(MyJob3)

Re: Adding behaviour for managing "task" dependencies

2007-10-04 Thread rayrayson
On Oct 2, 2:23 pm, Paddy <[EMAIL PROTECTED]> wrote: > You could use a professional Job scheduling system such as LSF or Sun Grid > Engine > that both support job dependencies (and a whole lot more). Recently, Grid Engine added support the powerful "Array Job Interdependencies" support. http://gr

Re: Adding behaviour for managing "task" dependencies

2007-10-02 Thread Paddy
On Oct 2, 3:28 pm, [EMAIL PROTECTED] wrote: > Hi, > > I'm currently writing an animation pipeline in Python which is a > system for controlling the flow of work and assets for a team of > people working on a computer animated film. The system will be fairly > large with a database backend. > > One

Re: Adding behaviour for managing "task" dependencies

2007-10-02 Thread m . pricejones
Stargaming: Thanks, that's given me plenty to think about. Some wise words. I guess I should appreciate that with my particular goal there aren't going to be easy solutions but I definitely don't want to dive down the wrong track if it can be avoided. Cheers, Mike -- http://mail.python.org/mail

Re: Adding behaviour for managing "task" dependencies

2007-10-02 Thread Stargaming
On Tue, 02 Oct 2007 14:28:35 +, m.pricejones wrote: > Hi, > > I'm currently writing an animation pipeline in Python which is a system > for controlling the flow of work and assets for a team of people working > on a computer animated film. The system will be fairly large with a > database bac