rakam-eval-sdk 0.2.4rc2__py3-none-any.whl → 0.2.4rc3__py3-none-any.whl
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/decorators.py +7 -1
- {rakam_eval_sdk-0.2.4rc2.dist-info → rakam_eval_sdk-0.2.4rc3.dist-info}/METADATA +1 -1
- {rakam_eval_sdk-0.2.4rc2.dist-info → rakam_eval_sdk-0.2.4rc3.dist-info}/RECORD +5 -5
- {rakam_eval_sdk-0.2.4rc2.dist-info → rakam_eval_sdk-0.2.4rc3.dist-info}/WHEEL +0 -0
- {rakam_eval_sdk-0.2.4rc2.dist-info → rakam_eval_sdk-0.2.4rc3.dist-info}/entry_points.txt +0 -0
rakam_eval_sdk/decorators.py
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import functools
|
|
2
2
|
import os
|
|
3
|
+
import sys
|
|
3
4
|
import time
|
|
4
|
-
from typing import Callable, Dict, Optional,
|
|
5
|
+
from typing import Callable, Dict, Optional, TypeVar, Union, overload
|
|
5
6
|
|
|
6
7
|
import psutil
|
|
7
8
|
|
|
9
|
+
if sys.version_info < (3, 9):
|
|
10
|
+
from typing_extensions import ParamSpec
|
|
11
|
+
|
|
12
|
+
else:
|
|
13
|
+
from typing import ParamSpec
|
|
8
14
|
P = ParamSpec("P")
|
|
9
15
|
R = TypeVar("R")
|
|
10
16
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
rakam_eval_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
rakam_eval_sdk/cli.py,sha256=yhs-TSWrq-tCe5FtO50cqbqd66tBsAa2Tlav4ubMkrw,21931
|
|
3
3
|
rakam_eval_sdk/client.py,sha256=8KwpNt7WHgMfcXAQtrAlnUihai9TiADRieiuWeIxg6E,15575
|
|
4
|
-
rakam_eval_sdk/decorators.py,sha256=
|
|
4
|
+
rakam_eval_sdk/decorators.py,sha256=GoaAqnKg-VeYf5eBI-mEgJj6Asqmdqw4QG_qqHu5x2s,1908
|
|
5
5
|
rakam_eval_sdk/schema.py,sha256=S16lSC1p4KuYd9qWZ5aquK6S8AzUEDCZYc4VfI58r9k,3969
|
|
6
6
|
rakam_eval_sdk/utils/decorator_utils.py,sha256=g0TjXtG9o4hwhUAFP8GJsXAkjhZhzeseTAg-YBFjj2g,1763
|
|
7
|
-
rakam_eval_sdk-0.2.
|
|
8
|
-
rakam_eval_sdk-0.2.
|
|
9
|
-
rakam_eval_sdk-0.2.
|
|
10
|
-
rakam_eval_sdk-0.2.
|
|
7
|
+
rakam_eval_sdk-0.2.4rc3.dist-info/WHEEL,sha256=eh7sammvW2TypMMMGKgsM83HyA_3qQ5Lgg3ynoecH3M,79
|
|
8
|
+
rakam_eval_sdk-0.2.4rc3.dist-info/entry_points.txt,sha256=tNhwmM_UGELb3h0zOfgCrtTheUkP-k8jGv0rTOfRSps,56
|
|
9
|
+
rakam_eval_sdk-0.2.4rc3.dist-info/METADATA,sha256=AOfQvo5q_uIiEER-wdYCWWWUjxibRcyft89LpJPX_Tc,6022
|
|
10
|
+
rakam_eval_sdk-0.2.4rc3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|