Skip to content

Commit

Permalink
bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
diptanu committed Dec 27, 2024
1 parent 2f7e3d6 commit e7f315b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "indexify"
version = "0.2.44"
version = "0.2.45"
description = "Python Client for Indexify"
authors = ["Tensorlake Inc. <[email protected]>"]
license = "Apache 2.0"
Expand Down
4 changes: 4 additions & 0 deletions python-sdk/tests/test_graph_behaviours.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e7f315b

Please sign in to comment.