From 488838ed8b4512c4207fc71b5388bb992cc31a73 Mon Sep 17 00:00:00 2001 From: John Walz Date: Thu, 12 Dec 2024 13:44:53 -0500 Subject: [PATCH 1/2] fix: fix formatting of required inputs when listing tests --- validmind/tests/load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validmind/tests/load.py b/validmind/tests/load.py index 60df24862..1d8da6b07 100644 --- a/validmind/tests/load.py +++ b/validmind/tests/load.py @@ -169,7 +169,7 @@ def _pretty_list_tests(tests, truncate=True): inspect.getdoc(test), num_lines=(5 if truncate else 999999), ), - "Required Inputs": test.inputs, + "Required Inputs": list(test.inputs.keys()), "Params": test.params, } for test_id, test in tests.items() From cb28be58fc818c372ef9b35593fc472bd15eac81 Mon Sep 17 00:00:00 2001 From: John Walz Date: Thu, 12 Dec 2024 13:45:01 -0500 Subject: [PATCH 2/2] 2.6.10 --- pyproject.toml | 2 +- validmind/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fcf676f21..8588d6395 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ description = "ValidMind Library" license = "Commercial License" name = "validmind" readme = "README.pypi.md" -version = "2.6.9" +version = "2.6.10" [tool.poetry.dependencies] aiohttp = {extras = ["speedups"], version = "*"} diff --git a/validmind/__version__.py b/validmind/__version__.py index 8daa7c8f2..fcfff714f 100644 --- a/validmind/__version__.py +++ b/validmind/__version__.py @@ -1 +1 @@ -__version__ = "2.6.9" +__version__ = "2.6.10"