Fix compilation order reversed
This commit is contained in:
parent
abdc149f65
commit
56a30a014c
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -305,7 +305,7 @@ def parallel_run(todo, desc='Compiling {} ...'):
|
|||
num_workers = max(1, cpu_count())
|
||||
except Exception:
|
||||
num_workers = 2
|
||||
items = list(todo.items())
|
||||
items = list(reversed(tuple(todo.items())))
|
||||
workers = {}
|
||||
failed = None
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue