From e7f315b74fd669b58285ec8c595bf512de376e57 Mon Sep 17 00:00:00 2001 From: Diptanu Gon Choudhury Date: Fri, 27 Dec 2024 14:09:28 -0800 Subject: [PATCH] bump up version --- python-sdk/pyproject.toml | 2 +- python-sdk/tests/test_graph_behaviours.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/python-sdk/pyproject.toml b/python-sdk/pyproject.toml index 1f493880e..117fbe2d6 100644 --- a/python-sdk/pyproject.toml +++ b/python-sdk/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "indexify" -version = "0.2.44" +version = "0.2.45" description = "Python Client for Indexify" authors = ["Tensorlake Inc. "] license = "Apache 2.0" diff --git a/python-sdk/tests/test_graph_behaviours.py b/python-sdk/tests/test_graph_behaviours.py index 1b9226032..5314b9d55 100644 --- a/python-sdk/tests/test_graph_behaviours.py +++ b/python-sdk/tests/test_graph_behaviours.py @@ -535,6 +535,10 @@ def my_func_2(input: dict) -> int: self.assertEqual(len(output), 1) self.assertEqual(output[0], 6) + output1 = graph.output(invocation_id, my_func.name) + self.assertEqual(len(output1), 1) + self.assertEqual(output1[0], {"x": 1, "y": 2, "z": 3}) + @parameterized.expand([(False), (True)]) def test_return_dict_args_as_kwargs_in_list(self, is_remote): @indexify_function()