We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Order matters.
If a list of dependencies can be generated as a dictionary like this:
{ 'a' : [ 'b', 'c', 'd' ] , 'e' : [ 'b' ] } ( a depends upon b, c, and d. e depends upon b )
Then the following code can generate an ordered build list correctly based upon the dependency dictionary:
https://gist.github.com/3663979
The text was updated successfully, but these errors were encountered:
Will try to convert it to bash, or convert distribute to python (harder.)
Sorry, something went wrong.
I was thinking you could just leave it as is in a python script, and then call it from bash with like a json dict of deps as one of the arguments.
Or if you had a series of files that listed the deps explicitly, the python code could go read that and build the dep list directly.
On Fri, Sep 7, 2012 at 4:59 AM, Mathieu Virbel [email protected]:
Will try to convert it to bash, or convert distribute to python (harder.) — Reply to this email directly or view it on GitHubhttps://github.com//issues/50#issuecomment-8363230.
— Reply to this email directly or view it on GitHubhttps://github.com//issues/50#issuecomment-8363230.
this has been fixed during europython 2013 :)
No branches or pull requests
Order matters.
If a list of dependencies can be generated as a dictionary like this:
Then the following code can generate an ordered build list correctly based upon the dependency dictionary:
https://gist.github.com/3663979
The text was updated successfully, but these errors were encountered: