Skip to content

v0.9.0

Latest
Compare
Choose a tag to compare
@cedricleroy cedricleroy released this 13 Jun 20:54
  • Drop support / compatibility for Python 2.7.
  • Inputs / outputs names are now optional:
@graph.register()
def f_my_function(a, b):
    c = a + b
    return c
  • Additional argument to Graph to prevent inputs deepcopy (@Tosa95). This is useful when having large inputs when the deepcopy might be slow, but remove inputs immutability.