File "/home/ikolpako/.local/lib/python3.5/site-packages/cosmos/models/Workflow.py", line 544, in <listcomp>
ready_tasks = [task for task, degree in list(task_queue.in_degree()) if
TypeError: 'Task' object is not iterable
Both tests fail with the same error when executed via python3 setup.py test:
EDIT:
As discussed on gitter this happens when an old version (<2.0) networkx is imported. I guess it's appropriate to require networkx>=2.0 in setup.py.
Running
ex1.py
on a fresh py3 install fails withBoth tests fail with the same error when executed via
python3 setup.py test
:EDIT: As discussed on gitter this happens when an old version (<2.0) networkx is imported. I guess it's appropriate to require
networkx>=2.0
insetup.py
.