Skip to content

v0.7.0

Compare
Choose a tag to compare
@cedricleroy cedricleroy released this 17 Mar 22:26
· 31 commits to master since this release
  1. Refactoring, and introduction of Input and Output objects.

  2. Contracts feature.:

graph.add_node(
    my_function,
    inputs=[Input(name='a', contract='>0'), Input(name='b', contract='float')],
    outputs=[Output(name='g', contract='float')]
)
  1. Nodes IDs refactoring (now uses uuid).

  2. Run topological sort only when needed.

  3. Everything accessible from pyungo init (@nelsontodd)

  4. Docstrings / Sphinx doc / GitHub page