Commit b14f04b8 authored by Stefan Behnel's avatar Stefan Behnel

try to use deterministic order for utility code generation

parent b844422e
......@@ -249,7 +249,7 @@ class UtilityCodeBase(object):
continue
# only pass lists when we have to: most argument expect one value or None
if name == 'requires':
values = [ cls.load(dep, from_file, **orig_kwargs) for dep in values ]
values = [ cls.load(dep, from_file, **orig_kwargs) for dep in sorted(values) ]
elif not values:
values = None
elif len(values) == 1:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment