rakam-eval-sdk 0.2.4rc5__tar.gz → 0.2.4rc6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/PKG-INFO +1 -1
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/pyproject.toml +5 -4
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/cli.py +2 -4
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/decorators.py +1 -2
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/schema.py +1 -2
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/README.md +0 -0
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/__init__.py +0 -0
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/client.py +0 -0
- {rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/utils/decorator_utils.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "rakam-eval-sdk"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.4rc6"
|
|
8
8
|
description = "Evaluation Framework SDK"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -26,9 +26,6 @@ dev = [
|
|
|
26
26
|
"pytest>=8.3.5",
|
|
27
27
|
"twine>=6.1.0",
|
|
28
28
|
]
|
|
29
|
-
[tool.pytest.ini_options]
|
|
30
|
-
testpaths = ["tests"]
|
|
31
|
-
python_files = "test_*.py"
|
|
32
29
|
|
|
33
30
|
[tool.isort]
|
|
34
31
|
profile = "black"
|
|
@@ -50,3 +47,7 @@ package-dir = {"" = "src"}
|
|
|
50
47
|
where = ["src"]
|
|
51
48
|
[project.scripts]
|
|
52
49
|
rakam_eval = "rakam_eval_sdk.cli:main"
|
|
50
|
+
|
|
51
|
+
[tool.pytest.ini_options]
|
|
52
|
+
testpaths = ["tests"]
|
|
53
|
+
python_files = "test_*.py"
|
|
@@ -199,8 +199,7 @@ def list_runs(
|
|
|
199
199
|
shown = offset + len(items)
|
|
200
200
|
if shown < total:
|
|
201
201
|
typer.echo()
|
|
202
|
-
typer.echo(
|
|
203
|
-
f"Showing {shown} of {total} runs. Use --limit to see more.")
|
|
202
|
+
typer.echo(f"Showing {shown} of {total} runs. Use --limit to see more.")
|
|
204
203
|
|
|
205
204
|
|
|
206
205
|
@app.command()
|
|
@@ -421,8 +420,7 @@ def _print_and_save(
|
|
|
421
420
|
return
|
|
422
421
|
|
|
423
422
|
if out.exists() and not overwrite:
|
|
424
|
-
typer.echo(
|
|
425
|
-
f"❌ File already exists: {out} (use --overwrite to replace)")
|
|
423
|
+
typer.echo(f"❌ File already exists: {out} (use --overwrite to replace)")
|
|
426
424
|
raise typer.Exit(code=1)
|
|
427
425
|
|
|
428
426
|
out.parent.mkdir(parents=True, exist_ok=True)
|
|
@@ -6,9 +6,8 @@ from typing import Callable, Dict, Optional, TypeVar, Union, overload
|
|
|
6
6
|
|
|
7
7
|
import psutil
|
|
8
8
|
|
|
9
|
-
if sys.version_info < (3,
|
|
9
|
+
if sys.version_info < (3, 10):
|
|
10
10
|
from typing_extensions import ParamSpec
|
|
11
|
-
|
|
12
11
|
else:
|
|
13
12
|
from typing import ParamSpec
|
|
14
13
|
P = ParamSpec("P")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rakam_eval_sdk-0.2.4rc5 → rakam_eval_sdk-0.2.4rc6}/src/rakam_eval_sdk/utils/decorator_utils.py
RENAMED
|
File without changes
|