- 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.