v0.7.0
-
Refactoring, and introduction of Input and Output objects.
-
Contracts feature.:
graph.add_node(
my_function,
inputs=[Input(name='a', contract='>0'), Input(name='b', contract='float')],
outputs=[Output(name='g', contract='float')]
)
-
Nodes IDs refactoring (now uses uuid).
-
Run topological sort only when needed.
-
Everything accessible from pyungo init (@nelsontodd)
-
Docstrings / Sphinx doc / GitHub page