polyaxon 2.2.0rc1__py3-none-any.whl → 2.3.0rc0__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.
- polyaxon/_cli/operations.py +14 -4
- polyaxon/_cli/run.py +2 -7
- polyaxon/_client/run.py +2 -2
- polyaxon/_compiler/contexts/ray_job.py +4 -2
- polyaxon/_k8s/converter/base/base.py +2 -1
- polyaxon/_k8s/converter/converters/ray_job.py +4 -2
- polyaxon/_k8s/custom_resources/dask_job.py +3 -0
- polyaxon/_k8s/custom_resources/kubeflow/common.py +3 -0
- polyaxon/_k8s/custom_resources/ray_job.py +3 -0
- polyaxon/_k8s/custom_resources/setter.py +1 -1
- polyaxon/_pql/manager.py +1 -1
- polyaxon/_sdk/api/runs_v1_api.py +30 -30
- polyaxon/_sdk/schemas/v1_user.py +1 -2
- polyaxon/pkg.py +1 -1
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc0.dist-info}/METADATA +8 -8
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc0.dist-info}/RECORD +20 -20
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc0.dist-info}/LICENSE +0 -0
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc0.dist-info}/WHEEL +0 -0
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc0.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.2.0rc1.dist-info → polyaxon-2.3.0rc0.dist-info}/top_level.txt +0 -0
polyaxon/_cli/operations.py
CHANGED
@@ -51,7 +51,7 @@ from polyaxon.api import (
|
|
51
51
|
REWRITE_SERVICES_V1,
|
52
52
|
SERVICES_V1,
|
53
53
|
)
|
54
|
-
from polyaxon.client import RunClient, V1Run, get_run_logs
|
54
|
+
from polyaxon.client import RunClient, V1Run, V1RunSettings, get_run_logs
|
55
55
|
from polyaxon.exceptions import (
|
56
56
|
ApiException,
|
57
57
|
PolyaxonClientException,
|
@@ -86,6 +86,14 @@ DEFAULT_EXCLUDE = [
|
|
86
86
|
]
|
87
87
|
|
88
88
|
|
89
|
+
def get_op_agent_host(runSettings: V1RunSettings):
|
90
|
+
host_kwargs = {}
|
91
|
+
if runSettings and runSettings.agent and runSettings.agent.url:
|
92
|
+
host_kwargs["host"] = runSettings.agent.url
|
93
|
+
|
94
|
+
return host_kwargs
|
95
|
+
|
96
|
+
|
89
97
|
def handle_run_statuses(status, conditions, table):
|
90
98
|
if not conditions:
|
91
99
|
return False
|
@@ -2089,10 +2097,12 @@ def service(ctx, project, uid, yes, external, url):
|
|
2089
2097
|
|
2090
2098
|
wait_for_running_condition(client)
|
2091
2099
|
|
2100
|
+
host_kwargs = get_op_agent_host(client.settings)
|
2092
2101
|
run_url = get_dashboard_url(
|
2093
2102
|
subpath="{}/runs/{}/service".format(
|
2094
2103
|
get_project_subpath_url(owner, team, project_name), run_uuid
|
2095
|
-
)
|
2104
|
+
),
|
2105
|
+
**host_kwargs,
|
2096
2106
|
)
|
2097
2107
|
|
2098
2108
|
namespace = client.run_data.settings.namespace
|
@@ -2116,9 +2126,9 @@ def service(ctx, project, uid, yes, external, url):
|
|
2116
2126
|
if port:
|
2117
2127
|
service_subpath = "{}{}/".format(service_subpath, port)
|
2118
2128
|
|
2129
|
+
host_kwargs = get_op_agent_host(client.settings)
|
2119
2130
|
external_run_url = get_dashboard_url(
|
2120
|
-
base=service_endpoint,
|
2121
|
-
subpath=service_subpath,
|
2131
|
+
base=service_endpoint, subpath=service_subpath, **host_kwargs
|
2122
2132
|
)
|
2123
2133
|
|
2124
2134
|
if url:
|
polyaxon/_cli/run.py
CHANGED
@@ -14,6 +14,7 @@ from polyaxon._cli.dashboard import get_dashboard_url, get_project_subpath_url
|
|
14
14
|
from polyaxon._cli.errors import handle_cli_error
|
15
15
|
from polyaxon._cli.operations import approve
|
16
16
|
from polyaxon._cli.operations import execute as run_execute
|
17
|
+
from polyaxon._cli.operations import get_op_agent_host
|
17
18
|
from polyaxon._cli.operations import logs as run_logs
|
18
19
|
from polyaxon._cli.operations import shell as run_shell
|
19
20
|
from polyaxon._cli.operations import statuses
|
@@ -98,13 +99,7 @@ def _run(
|
|
98
99
|
meta_info=meta_info,
|
99
100
|
pending=pending,
|
100
101
|
)
|
101
|
-
host_kwargs =
|
102
|
-
if (
|
103
|
-
response.settings
|
104
|
-
and response.settings.agent
|
105
|
-
and response.settings.agent.host
|
106
|
-
):
|
107
|
-
host_kwargs["host"] = response.settings.agent.host
|
102
|
+
host_kwargs = get_op_agent_host(response.settings)
|
108
103
|
run_url = get_dashboard_url(
|
109
104
|
subpath="{}/runs/{}".format(project_url, response.uuid), **host_kwargs
|
110
105
|
)
|
polyaxon/_client/run.py
CHANGED
@@ -2136,9 +2136,9 @@ class RunClient(ClientMixin):
|
|
2136
2136
|
abspath = filepath if is_abs() else os.path.abspath(filepath)
|
2137
2137
|
|
2138
2138
|
for_patterns = []
|
2139
|
-
if getattr(self, "_artifacts_path"):
|
2139
|
+
if getattr(self, "_artifacts_path", None):
|
2140
2140
|
for_patterns.append(getattr(self, "_artifacts_path"))
|
2141
|
-
if getattr(self, "_store_path"):
|
2141
|
+
if getattr(self, "_store_path", None):
|
2142
2142
|
for_patterns.append(getattr(self, "_store_path"))
|
2143
2143
|
context_root = (
|
2144
2144
|
ctx_paths.CONTEXT_OFFLINE_ROOT
|
@@ -33,7 +33,9 @@ class RayJobContextsManager(BaseContextsManager):
|
|
33
33
|
connection_by_names=connection_by_names,
|
34
34
|
)
|
35
35
|
|
36
|
-
|
36
|
+
data = {
|
37
37
|
"head": _get_replica(job.head),
|
38
|
-
"workers": {wn: _get_replica(job.workers[wn]) for wn in job.workers},
|
39
38
|
}
|
39
|
+
if job.workers:
|
40
|
+
data["workers"] = {wn: _get_replica(job.workers[wn]) for wn in job.workers}
|
41
|
+
return data
|
@@ -2,6 +2,7 @@ import copy
|
|
2
2
|
|
3
3
|
from typing import Dict, Iterable, List, Optional
|
4
4
|
|
5
|
+
from clipped.utils.enums import get_enum_value
|
5
6
|
from clipped.utils.sanitizers import sanitize_string_dict
|
6
7
|
from clipped.utils.strings import slugify
|
7
8
|
|
@@ -85,7 +86,7 @@ class BaseConverter(
|
|
85
86
|
"operation.polyaxon.com/name": self.run_name,
|
86
87
|
"operation.polyaxon.com/owner": self.owner_name,
|
87
88
|
"operation.polyaxon.com/project": self.project_name,
|
88
|
-
"operation.polyaxon.com/kind": self.K8S_ANNOTATIONS_KIND,
|
89
|
+
"operation.polyaxon.com/kind": get_enum_value(self.K8S_ANNOTATIONS_KIND),
|
89
90
|
}
|
90
91
|
|
91
92
|
def get_annotations(
|
@@ -58,7 +58,9 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
58
58
|
config=compiled_operation.plugins, auth=default_auth
|
59
59
|
)
|
60
60
|
head = _get_replica(job.head)
|
61
|
-
workers =
|
61
|
+
workers = None
|
62
|
+
if job.workers:
|
63
|
+
workers = {n: _get_replica(w) for n, w in job.workers.items()}
|
62
64
|
labels = self.get_labels(version=pkg.VERSION, labels={})
|
63
65
|
|
64
66
|
return get_ray_job_custom_resource(
|
@@ -68,7 +70,7 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
68
70
|
workers=workers,
|
69
71
|
entrypoint=job.entrypoint,
|
70
72
|
metadata=job.metadata,
|
71
|
-
runtime_env=
|
73
|
+
runtime_env=orjson_dumps(job.runtime_env),
|
72
74
|
ray_version=job.ray_version,
|
73
75
|
termination=compiled_operation.termination,
|
74
76
|
collect_logs=plugins.collect_logs,
|
@@ -46,6 +46,9 @@ def get_dask_replicas_template(
|
|
46
46
|
if liveness_probe and replica.main_container.liveness_probe is None:
|
47
47
|
replica.main_container.liveness_probe = liveness_probe
|
48
48
|
|
49
|
+
labels = {**labels, **replica.labels}
|
50
|
+
annotations = {**annotations, **replica.annotations}
|
51
|
+
|
49
52
|
metadata, pod_spec = get_pod_spec(
|
50
53
|
namespace=namespace,
|
51
54
|
main_container=replica.main_container,
|
@@ -16,6 +16,9 @@ def get_kf_replicas_template(
|
|
16
16
|
if not replica:
|
17
17
|
return
|
18
18
|
|
19
|
+
labels = {**labels, **replica.labels}
|
20
|
+
annotations = {**annotations, **replica.annotations}
|
21
|
+
|
19
22
|
metadata, pod_spec = get_pod_spec(
|
20
23
|
namespace=namespace,
|
21
24
|
main_container=replica.main_container,
|
@@ -26,6 +26,9 @@ def _get_ray_replicas_template(
|
|
26
26
|
if not replica:
|
27
27
|
return
|
28
28
|
|
29
|
+
labels = {**labels, **replica.labels}
|
30
|
+
annotations = {**annotations, **replica.annotations}
|
31
|
+
|
29
32
|
metadata, pod_spec = get_pod_spec(
|
30
33
|
namespace=namespace,
|
31
34
|
main_container=replica.main_container,
|
@@ -46,7 +46,7 @@ def set_notify(custom_object: Dict, notifications: List[V1Notification]) -> Dict
|
|
46
46
|
def set_clean_pod_policy(template_spec: Dict, clean_pod_policy: str) -> Dict:
|
47
47
|
if not clean_pod_policy:
|
48
48
|
# Sets default clean pod policy
|
49
|
-
clean_pod_policy = "
|
49
|
+
clean_pod_policy = "None"
|
50
50
|
|
51
51
|
template_spec["cleanPodPolicy"] = clean_pod_policy.capitalize()
|
52
52
|
return template_spec
|
polyaxon/_pql/manager.py
CHANGED
@@ -13,7 +13,7 @@ class PQLManager:
|
|
13
13
|
FIELDS_PROXY = {}
|
14
14
|
FIELDS_TRANS = {}
|
15
15
|
FIELDS_ORDERING = None
|
16
|
-
FIELDS_ORDERING_PROXY = None
|
16
|
+
FIELDS_ORDERING_PROXY = None # Do not set a field on both field and proxy
|
17
17
|
FIELDS_DEFAULT_ORDERING = None
|
18
18
|
FIELDS_DISTINCT = None
|
19
19
|
CHECK_ALIVE = True
|
polyaxon/_sdk/api/runs_v1_api.py
CHANGED
@@ -3014,8 +3014,8 @@ class RunsV1Api(BaseApi):
|
|
3014
3014
|
self,
|
3015
3015
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3016
3016
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3017
|
-
|
3018
|
-
StrictStr, Field(..., description="
|
3017
|
+
entity: Annotated[
|
3018
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3019
3019
|
],
|
3020
3020
|
kind: Annotated[str, Field(..., description="The artifact kind")],
|
3021
3021
|
names: Annotated[
|
@@ -3046,15 +3046,15 @@ class RunsV1Api(BaseApi):
|
|
3046
3046
|
This method makes a synchronous HTTP request by default. To make an
|
3047
3047
|
asynchronous HTTP request, please pass async_req=True
|
3048
3048
|
|
3049
|
-
>>> thread = api.get_multi_run_events(namespace, owner,
|
3049
|
+
>>> thread = api.get_multi_run_events(namespace, owner, entity, kind, names, runs, orient, force, sample, connection, status, async_req=True)
|
3050
3050
|
>>> result = thread.get()
|
3051
3051
|
|
3052
3052
|
:param namespace: namespace (required)
|
3053
3053
|
:type namespace: str
|
3054
3054
|
:param owner: Owner of the namespace (required)
|
3055
3055
|
:type owner: str
|
3056
|
-
:param
|
3057
|
-
:type
|
3056
|
+
:param entity: Entity where the run will be assigned (required)
|
3057
|
+
:type entity: str
|
3058
3058
|
:param kind: The artifact kind (required)
|
3059
3059
|
:type kind: str
|
3060
3060
|
:param names: Names query param.
|
@@ -3090,7 +3090,7 @@ class RunsV1Api(BaseApi):
|
|
3090
3090
|
return self.get_multi_run_events_with_http_info(
|
3091
3091
|
namespace,
|
3092
3092
|
owner,
|
3093
|
-
|
3093
|
+
entity,
|
3094
3094
|
kind,
|
3095
3095
|
names,
|
3096
3096
|
runs,
|
@@ -3107,8 +3107,8 @@ class RunsV1Api(BaseApi):
|
|
3107
3107
|
self,
|
3108
3108
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3109
3109
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3110
|
-
|
3111
|
-
StrictStr, Field(..., description="
|
3110
|
+
entity: Annotated[
|
3111
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3112
3112
|
],
|
3113
3113
|
kind: Annotated[str, Field(..., description="The artifact kind")],
|
3114
3114
|
names: Annotated[
|
@@ -3139,15 +3139,15 @@ class RunsV1Api(BaseApi):
|
|
3139
3139
|
This method makes a synchronous HTTP request by default. To make an
|
3140
3140
|
asynchronous HTTP request, please pass async_req=True
|
3141
3141
|
|
3142
|
-
>>> thread = api.get_multi_run_events_with_http_info(namespace, owner,
|
3142
|
+
>>> thread = api.get_multi_run_events_with_http_info(namespace, owner, entity, kind, names, runs, orient, force, sample, connection, status, async_req=True)
|
3143
3143
|
>>> result = thread.get()
|
3144
3144
|
|
3145
3145
|
:param namespace: namespace (required)
|
3146
3146
|
:type namespace: str
|
3147
3147
|
:param owner: Owner of the namespace (required)
|
3148
3148
|
:type owner: str
|
3149
|
-
:param
|
3150
|
-
:type
|
3149
|
+
:param entity: Entity where the run will be assigned (required)
|
3150
|
+
:type entity: str
|
3151
3151
|
:param kind: The artifact kind (required)
|
3152
3152
|
:type kind: str
|
3153
3153
|
:param names: Names query param.
|
@@ -3193,7 +3193,7 @@ class RunsV1Api(BaseApi):
|
|
3193
3193
|
_all_params = [
|
3194
3194
|
"namespace",
|
3195
3195
|
"owner",
|
3196
|
-
"
|
3196
|
+
"entity",
|
3197
3197
|
"kind",
|
3198
3198
|
"names",
|
3199
3199
|
"runs",
|
@@ -3233,8 +3233,8 @@ class RunsV1Api(BaseApi):
|
|
3233
3233
|
_path_params["namespace"] = _params["namespace"]
|
3234
3234
|
if _params["owner"]:
|
3235
3235
|
_path_params["owner"] = _params["owner"]
|
3236
|
-
if _params["
|
3237
|
-
_path_params["
|
3236
|
+
if _params["entity"]:
|
3237
|
+
_path_params["entity"] = _params["entity"]
|
3238
3238
|
if _params["kind"]:
|
3239
3239
|
_path_params["kind"] = _params["kind"]
|
3240
3240
|
|
@@ -3281,7 +3281,7 @@ class RunsV1Api(BaseApi):
|
|
3281
3281
|
}
|
3282
3282
|
|
3283
3283
|
return self.api_client.call_api(
|
3284
|
-
"/streams/v1/{namespace}/{owner}/{
|
3284
|
+
"/streams/v1/{namespace}/{owner}/{entity}/runs/multi/events/{kind}",
|
3285
3285
|
"GET",
|
3286
3286
|
_path_params,
|
3287
3287
|
_query_params,
|
@@ -3304,8 +3304,8 @@ class RunsV1Api(BaseApi):
|
|
3304
3304
|
self,
|
3305
3305
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3306
3306
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3307
|
-
|
3308
|
-
StrictStr, Field(..., description="
|
3307
|
+
entity: Annotated[
|
3308
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3309
3309
|
],
|
3310
3310
|
body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
|
3311
3311
|
**kwargs
|
@@ -3315,15 +3315,15 @@ class RunsV1Api(BaseApi):
|
|
3315
3315
|
This method makes a synchronous HTTP request by default. To make an
|
3316
3316
|
asynchronous HTTP request, please pass async_req=True
|
3317
3317
|
|
3318
|
-
>>> thread = api.get_multi_run_importance(namespace, owner,
|
3318
|
+
>>> thread = api.get_multi_run_importance(namespace, owner, entity, body, async_req=True)
|
3319
3319
|
>>> result = thread.get()
|
3320
3320
|
|
3321
3321
|
:param namespace: namespace (required)
|
3322
3322
|
:type namespace: str
|
3323
3323
|
:param owner: Owner of the namespace (required)
|
3324
3324
|
:type owner: str
|
3325
|
-
:param
|
3326
|
-
:type
|
3325
|
+
:param entity: Entity where the run will be assigned (required)
|
3326
|
+
:type entity: str
|
3327
3327
|
:param body: Params/Metrics data (required)
|
3328
3328
|
:type body: object
|
3329
3329
|
:param async_req: Whether to execute the request asynchronously.
|
@@ -3343,7 +3343,7 @@ class RunsV1Api(BaseApi):
|
|
3343
3343
|
"""
|
3344
3344
|
kwargs["_return_http_data_only"] = True
|
3345
3345
|
return self.get_multi_run_importance_with_http_info(
|
3346
|
-
namespace, owner,
|
3346
|
+
namespace, owner, entity, body, **kwargs
|
3347
3347
|
) # noqa: E501
|
3348
3348
|
|
3349
3349
|
@validate_arguments
|
@@ -3351,8 +3351,8 @@ class RunsV1Api(BaseApi):
|
|
3351
3351
|
self,
|
3352
3352
|
namespace: Annotated[StrictStr, Field(..., description="namespace")],
|
3353
3353
|
owner: Annotated[StrictStr, Field(..., description="Owner of the namespace")],
|
3354
|
-
|
3355
|
-
StrictStr, Field(..., description="
|
3354
|
+
entity: Annotated[
|
3355
|
+
StrictStr, Field(..., description="Entity where the run will be assigned")
|
3356
3356
|
],
|
3357
3357
|
body: Annotated[Dict[str, Any], Field(..., description="Params/Metrics data")],
|
3358
3358
|
**kwargs
|
@@ -3362,15 +3362,15 @@ class RunsV1Api(BaseApi):
|
|
3362
3362
|
This method makes a synchronous HTTP request by default. To make an
|
3363
3363
|
asynchronous HTTP request, please pass async_req=True
|
3364
3364
|
|
3365
|
-
>>> thread = api.get_multi_run_importance_with_http_info(namespace, owner,
|
3365
|
+
>>> thread = api.get_multi_run_importance_with_http_info(namespace, owner, entity, body, async_req=True)
|
3366
3366
|
>>> result = thread.get()
|
3367
3367
|
|
3368
3368
|
:param namespace: namespace (required)
|
3369
3369
|
:type namespace: str
|
3370
3370
|
:param owner: Owner of the namespace (required)
|
3371
3371
|
:type owner: str
|
3372
|
-
:param
|
3373
|
-
:type
|
3372
|
+
:param entity: Entity where the run will be assigned (required)
|
3373
|
+
:type entity: str
|
3374
3374
|
:param body: Params/Metrics data (required)
|
3375
3375
|
:type body: object
|
3376
3376
|
:param async_req: Whether to execute the request asynchronously.
|
@@ -3399,7 +3399,7 @@ class RunsV1Api(BaseApi):
|
|
3399
3399
|
|
3400
3400
|
_params = locals()
|
3401
3401
|
|
3402
|
-
_all_params = ["namespace", "owner", "
|
3402
|
+
_all_params = ["namespace", "owner", "entity", "body"]
|
3403
3403
|
_all_params.extend(
|
3404
3404
|
[
|
3405
3405
|
"async_req",
|
@@ -3432,8 +3432,8 @@ class RunsV1Api(BaseApi):
|
|
3432
3432
|
if _params["owner"]:
|
3433
3433
|
_path_params["owner"] = _params["owner"]
|
3434
3434
|
|
3435
|
-
if _params["
|
3436
|
-
_path_params["
|
3435
|
+
if _params["entity"]:
|
3436
|
+
_path_params["entity"] = _params["entity"]
|
3437
3437
|
|
3438
3438
|
# process the query parameters
|
3439
3439
|
_query_params = []
|
@@ -3471,7 +3471,7 @@ class RunsV1Api(BaseApi):
|
|
3471
3471
|
}
|
3472
3472
|
|
3473
3473
|
return self.api_client.call_api(
|
3474
|
-
"/streams/v1/{namespace}/{owner}/{
|
3474
|
+
"/streams/v1/{namespace}/{owner}/{entity}/runs/multi/importance",
|
3475
3475
|
"POST",
|
3476
3476
|
_path_params,
|
3477
3477
|
_query_params,
|
polyaxon/_sdk/schemas/v1_user.py
CHANGED
@@ -2,12 +2,11 @@ from typing import Optional
|
|
2
2
|
|
3
3
|
from clipped.compact.pydantic import StrictStr
|
4
4
|
from clipped.config.schema import BaseAllowSchemaModel
|
5
|
-
from clipped.types.email import EmailStr
|
6
5
|
|
7
6
|
|
8
7
|
class V1User(BaseAllowSchemaModel):
|
9
8
|
username: Optional[StrictStr]
|
10
|
-
email: Optional[
|
9
|
+
email: Optional[StrictStr]
|
11
10
|
name: Optional[StrictStr]
|
12
11
|
kind: Optional[StrictStr]
|
13
12
|
theme: Optional[int]
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.3.0rc0
|
4
4
|
Summary: Command Line Interface (CLI) and client to interact with Polyaxon API.
|
5
5
|
Home-page: https://github.com/polyaxon/polyaxon
|
6
6
|
Author: Polyaxon, Inc.
|
@@ -36,7 +36,7 @@ License-File: LICENSE
|
|
36
36
|
Requires-Dist: click <9.0.0,>=7.1.1
|
37
37
|
Requires-Dist: clipped ==0.7.*
|
38
38
|
Requires-Dist: vents ==0.4.*
|
39
|
-
Requires-Dist: Jinja2 <3.1.
|
39
|
+
Requires-Dist: Jinja2 <3.1.5,>=2.10.3
|
40
40
|
Requires-Dist: kubernetes >=10.0.1
|
41
41
|
Requires-Dist: python-dateutil >=2.7.3
|
42
42
|
Requires-Dist: pytz >=2019.2
|
@@ -46,7 +46,7 @@ Requires-Dist: psutil >=5.4.7
|
|
46
46
|
Requires-Dist: requests >=2.20.1
|
47
47
|
Requires-Dist: requests-toolbelt >=0.8.0
|
48
48
|
Requires-Dist: rich >=12.0.0
|
49
|
-
Requires-Dist: sentry-sdk <
|
49
|
+
Requires-Dist: sentry-sdk <2.6,>=1.2.0
|
50
50
|
Requires-Dist: urllib3 >=1.25.6
|
51
51
|
Requires-Dist: certifi >=2022.12.7
|
52
52
|
Requires-Dist: pydantic >=1.10.2
|
@@ -59,10 +59,10 @@ Requires-Dist: moto ==2.0.5 ; extra == 'dev'
|
|
59
59
|
Provides-Extra: docker
|
60
60
|
Requires-Dist: docker ; extra == 'docker'
|
61
61
|
Provides-Extra: fs
|
62
|
-
Requires-Dist: adlfs ==2024.4.
|
63
|
-
Requires-Dist: fsspec ==2024.
|
64
|
-
Requires-Dist: gcsfs ==2024.
|
65
|
-
Requires-Dist: s3fs ==2024.
|
62
|
+
Requires-Dist: adlfs ==2024.4.1 ; extra == 'fs'
|
63
|
+
Requires-Dist: fsspec ==2024.6.1 ; extra == 'fs'
|
64
|
+
Requires-Dist: gcsfs ==2024.6.1 ; extra == 'fs'
|
65
|
+
Requires-Dist: s3fs ==2024.6.1 ; extra == 'fs'
|
66
66
|
Provides-Extra: fsspec
|
67
67
|
Requires-Dist: fsspec ; extra == 'fsspec'
|
68
68
|
Provides-Extra: gcs
|
@@ -93,7 +93,7 @@ Requires-Dist: anyio ; extra == 'sidecar'
|
|
93
93
|
[](https://polyaxon.com/slack/)
|
94
94
|
|
95
95
|
[](https://polyaxon.com/docs/)
|
96
|
-
[](https://polyaxon.com/docs/releases/2-1/)
|
97
97
|
[](https://github.com/polyaxon/polyaxon/issues)
|
98
98
|
[](https://github.com/orgs/polyaxon/projects/5)
|
99
99
|
|
@@ -9,7 +9,7 @@ polyaxon/exceptions.py,sha256=ujvG9p1Pn2KHYbHqB3-faadW46dEuULUQXNtfkd2zk8,10236
|
|
9
9
|
polyaxon/fs.py,sha256=RS8XmVrrfXfIJXN6cTCCRRYwesCLHVVfC01Vi56lecs,246
|
10
10
|
polyaxon/k8s.py,sha256=nI5oPCSlqU4aaeVShM6SlYS9eqYiYUL4GDXIZ4bnq-I,1051
|
11
11
|
polyaxon/logger.py,sha256=gdZQms37Pe5G2j-Ear5jbSAJeGgX6fnvg7oE8_9MSlc,2309
|
12
|
-
polyaxon/pkg.py,sha256=
|
12
|
+
polyaxon/pkg.py,sha256=7WoPkmjAGnsjsE-BWohvb8w8pjoke4npZvSnvyifJuM,266
|
13
13
|
polyaxon/polyaxonfile.py,sha256=xHmHT_cHomfuAQm82Jhnp71YNN5mQ-Lod7EbonjY4b4,429
|
14
14
|
polyaxon/schemas.py,sha256=-CykY3emoAUCs_zRNbjwkuMkqbaEDjfKsZC86rI8154,5870
|
15
15
|
polyaxon/settings.py,sha256=Pxx1-T2oeJ5XmvGFN0YgnVzum_9FyTPaQtl68aQvYc4,4116
|
@@ -33,12 +33,12 @@ polyaxon/_cli/dashboard.py,sha256=zRrOJMfowM7YQnYXhz_guKsTi-jkoCuVl_g0UTJ37qE,16
|
|
33
33
|
polyaxon/_cli/errors.py,sha256=BYs7-I0CLLNYma-I0eJXB1EHs8ZTs_nWGRKGJz6CzTI,1031
|
34
34
|
polyaxon/_cli/init.py,sha256=lZhkIbaHGv4FdMypdmXhYXRrH5GpM-qcDEks4IsmKIM,7714
|
35
35
|
polyaxon/_cli/models.py,sha256=71oxGrIe4nQORnnfAiNi6T7A0DBnEe3V6whBABBGL3c,18066
|
36
|
-
polyaxon/_cli/operations.py,sha256=
|
36
|
+
polyaxon/_cli/operations.py,sha256=iQTVHkVvUxFCRlaKBLP0xVxuxcb9KJHgTrtNe4Rf8LM,75624
|
37
37
|
polyaxon/_cli/options.py,sha256=-jeMZsdfg0JOV_QzVDf1hAhqK55NI0dkC_x4MZZWty8,1927
|
38
38
|
polyaxon/_cli/port_forward.py,sha256=Lshpcrv7-4tXcriHmppiFW_3QZ7ZosDtUbJDIvdddSA,2733
|
39
39
|
polyaxon/_cli/project_versions.py,sha256=fbgE3tRShrgH8TAA6ETj78J38HG2-BcVoAWbxYS9d5s,20507
|
40
40
|
polyaxon/_cli/projects.py,sha256=RVuTbKtNP_bvw3kRFKaIQBWq0xUwF0BUHK19T87VG5Q,12069
|
41
|
-
polyaxon/_cli/run.py,sha256=
|
41
|
+
polyaxon/_cli/run.py,sha256=3KM_E0iLw8WUe36zeXuwMA5urzGljo6yf4A-DL1uz6k,17737
|
42
42
|
polyaxon/_cli/session.py,sha256=5Plolpxwkv3wiup0pRYBpBPD64dvb4GzeRPz_nuIGRo,6033
|
43
43
|
polyaxon/_cli/utils.py,sha256=jRD1npuD89-0SxtzAx5SE3i4Lvhi8vnfYkmyOMbDxEY,1319
|
44
44
|
polyaxon/_cli/version.py,sha256=bC0T8S6Momr7EvHGV9Swn868x9ZHD7oL8ahQv57yInk,4536
|
@@ -57,7 +57,7 @@ polyaxon/_client/impersonate.py,sha256=4jRoJoX8nkwvVc3zAYqVqPoysNT1kZoPRbwyTpyHG
|
|
57
57
|
polyaxon/_client/init.py,sha256=QECGjzuBTFaagndubzd9U1COpc5NGe-E0aVkSRetcIs,418
|
58
58
|
polyaxon/_client/mixin.py,sha256=-tPm8RBej0UeG9HAKH3qN2fPX8PBtuXAHY1OpwLIDu4,1017
|
59
59
|
polyaxon/_client/project.py,sha256=-vHLae0fMYqOjMscRm0I25Ixj-hS6o9i6XQm5PIxyiA,65520
|
60
|
-
polyaxon/_client/run.py,sha256=
|
60
|
+
polyaxon/_client/run.py,sha256=EyuuEL7-oabgv_AlX0osKT8flY-3eLMGOINgBk93xX4,118810
|
61
61
|
polyaxon/_client/store.py,sha256=-Y33ypkijGQnhHTQ_vCTqLlpk0wRqoaP-ntJhdUtv7E,11311
|
62
62
|
polyaxon/_client/decorators/__init__.py,sha256=e5CBijciLP-Ic-YkaL4tFhUdr--uod_TexvxAJamGZQ,186
|
63
63
|
polyaxon/_client/decorators/client_call_handler.py,sha256=dgdidWsL9e8AgJmOfxz4urkI3bBgX64whWI1WHeAJDU,4587
|
@@ -80,7 +80,7 @@ polyaxon/_compiler/contexts/base.py,sha256=4EVQQlLgxvFORZ27ouBhwcJKhl3vMGXyOVP9H
|
|
80
80
|
polyaxon/_compiler/contexts/contexts.py,sha256=tJy8eL9UrUhjisJ3MdYNmMVERSK_m_fKfgPTQgC-0y4,6535
|
81
81
|
polyaxon/_compiler/contexts/dask_job.py,sha256=GxhLcZtCDWSDfc45UenmKsJ6Fhr0f_GeneaAzLHtncg,1265
|
82
82
|
polyaxon/_compiler/contexts/job.py,sha256=1lkjfMO2eHndmmtxC551K6n6RE5XasqkWBfwNpYy_MA,759
|
83
|
-
polyaxon/_compiler/contexts/ray_job.py,sha256=
|
83
|
+
polyaxon/_compiler/contexts/ray_job.py,sha256=6CFFuX63HhyU0z--GoE3Tv2vENBB1QKGCwuFmEwC2PY,1292
|
84
84
|
polyaxon/_compiler/contexts/service.py,sha256=d4zKB608906CXRZeUeOLgOdro5CEFe9byHWrGyy1ZFw,2150
|
85
85
|
polyaxon/_compiler/contexts/kubeflow/__init__.py,sha256=FnOOO9l-eunvun5kGcTfQ9uO8gLhuHIFuh2_gCHxaLA,488
|
86
86
|
polyaxon/_compiler/contexts/kubeflow/mpi_job.py,sha256=UMf7yJPRWEB9MVYS4Eoa7V6IZEQasU5VU71WdNZQ-2k,1214
|
@@ -295,7 +295,7 @@ polyaxon/_k8s/agent/async_agent.py,sha256=ZK7TkAcFLvdyNCYkqEtoCouJMDObfUZs75PLMg
|
|
295
295
|
polyaxon/_k8s/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
296
296
|
polyaxon/_k8s/converter/mixins.py,sha256=CMzFQ10BKUqaHxgH1RorkpGn4Sw4fGMRl-9BI6iRcMQ,3162
|
297
297
|
polyaxon/_k8s/converter/base/__init__.py,sha256=7cgnegNqjcXSXumcHu55xRYJrCON1C8F68HOFpfYFGg,60
|
298
|
-
polyaxon/_k8s/converter/base/base.py,sha256=
|
298
|
+
polyaxon/_k8s/converter/base/base.py,sha256=OiXQlvcq9KX9Ai2zCorwxJhlP0zUbLUaTRoc3SPxLOg,8413
|
299
299
|
polyaxon/_k8s/converter/base/containers.py,sha256=EbB_SmI_gDs3n-z1Tz8JZKzPchkpQAKn2ecMLXbyXZI,4170
|
300
300
|
polyaxon/_k8s/converter/base/env_vars.py,sha256=BCHTfV2IZvUBErgBGf2GpkD1ktU7mbbh2_gNi_d6oYQ,11062
|
301
301
|
polyaxon/_k8s/converter/base/init.py,sha256=oecgNGVjRrwSUCf5PhMKp7dnPqFmlhsaska0tHHhun0,20404
|
@@ -310,7 +310,7 @@ polyaxon/_k8s/converter/converters/__init__.py,sha256=jyw6PnVQcG-lfyNbfxomFhh1aa
|
|
310
310
|
polyaxon/_k8s/converter/converters/dask_job.py,sha256=DNlQczpN29AMJzsAy3q6SlpIH9h-kfcp3UMvfRLGJm8,2784
|
311
311
|
polyaxon/_k8s/converter/converters/helpers.py,sha256=LEfPISHptnC_1W-B5lY3D834U0qAr6wsX4x1EafWlk4,661
|
312
312
|
polyaxon/_k8s/converter/converters/job.py,sha256=luYWU9-qkuT5usk42zmd2JkX8thwWHNcqrmngtbHPJ8,2287
|
313
|
-
polyaxon/_k8s/converter/converters/ray_job.py,sha256=
|
313
|
+
polyaxon/_k8s/converter/converters/ray_job.py,sha256=d57kxNxt3VqN5Bu54NKFqH-HHyv0F2Ps74qJTNVNxSk,3264
|
314
314
|
polyaxon/_k8s/converter/converters/service.py,sha256=F2tW2bTlpaX9J47I8nE6up8xwUbdg2dQ_oXqsJdcdu8,2465
|
315
315
|
polyaxon/_k8s/converter/converters/kubeflow/__init__.py,sha256=ZXdpmleFm0ALmJYPlU9JG6ZpsBW6bq6DvF1d9IVoW68,498
|
316
316
|
polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py,sha256=UyLqLBCmjGIWlj6ZiDJqMByzeVWTKp1wBtu4oogfL3w,2731
|
@@ -324,14 +324,14 @@ polyaxon/_k8s/converter/pod/spec.py,sha256=6PtNHxt6H42pAz6MpStReQx6dABPxXVk8Q7AG
|
|
324
324
|
polyaxon/_k8s/converter/pod/volumes.py,sha256=raFuCP7aKCnpIypJ-jJ4Q_CrkewzHsjwPNbsRy-Yuu0,4687
|
325
325
|
polyaxon/_k8s/custom_resources/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
326
326
|
polyaxon/_k8s/custom_resources/crd.py,sha256=BspgH1EfxI0GL9FQWUV-yDjIYT1J8gGBTDFiOge6Dp4,536
|
327
|
-
polyaxon/_k8s/custom_resources/dask_job.py,sha256=
|
327
|
+
polyaxon/_k8s/custom_resources/dask_job.py,sha256=9AHf7zdDSFzNmZsT0MA8pTvdOojYvEoEOqLjyBpvLwg,6263
|
328
328
|
polyaxon/_k8s/custom_resources/job.py,sha256=hTETu_oU90y9CujwflodopZ_HMqi3ajMPsyld63JN80,2093
|
329
329
|
polyaxon/_k8s/custom_resources/operation.py,sha256=qrtxZ6i19N5tZIYKqGRoqCM3dvQg5lSVC1mZMo0Kx3w,625
|
330
|
-
polyaxon/_k8s/custom_resources/ray_job.py,sha256=
|
330
|
+
polyaxon/_k8s/custom_resources/ray_job.py,sha256=_KnMt9U2aOP00IBwCFixo5alT8MM1vpBCUXvQxGyeUs,6310
|
331
331
|
polyaxon/_k8s/custom_resources/service.py,sha256=M_mptT7JR6jmuctfgo87ov7KXRM4_jggJ5nc3zXL7hA,2370
|
332
|
-
polyaxon/_k8s/custom_resources/setter.py,sha256=
|
332
|
+
polyaxon/_k8s/custom_resources/setter.py,sha256=WCbEf7DaijK2U-FNAPAVI7mEefA7rb-KhHYnWPRX6aU,1846
|
333
333
|
polyaxon/_k8s/custom_resources/kubeflow/__init__.py,sha256=oCDo38kAVl7L1ehQTfWX04fZHRTa-V5qYKbef9-jG7k,556
|
334
|
-
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=
|
334
|
+
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=GaLJe3odjQYTieJzOP_V0jPFFA1beK1a2jtG3sSo1VE,1141
|
335
335
|
polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py,sha256=GwBfAb4LVYvDdHdzBUW2QgCq-_ypEhKyPrkInkaXyZo,2565
|
336
336
|
polyaxon/_k8s/custom_resources/kubeflow/mx_job.py,sha256=FD1pAeWWE1Vfyc1htlYLBGdme2-4K9shLJbO-_U-cz8,3697
|
337
337
|
polyaxon/_k8s/custom_resources/kubeflow/paddle_job.py,sha256=Ad-NAp_B7_tL18qf_gw06TK-rEEJ4fXLGhVB3mFRocw,2636
|
@@ -405,7 +405,7 @@ polyaxon/_polyaxonfile/specs/libs/parser.py,sha256=eOLXtUfhGX0MvBk7esNe4Y4a_OnE5
|
|
405
405
|
polyaxon/_polyaxonfile/specs/libs/validator.py,sha256=NZavIn-D43tbChRQz33JW2EuJPWZ5R8brCxCxGFYO68,938
|
406
406
|
polyaxon/_pql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
407
407
|
polyaxon/_pql/builder.py,sha256=OhQPLJ4pCOgkviY6HcHqji-Q1taZNeSMUjVfgkwCWho,17840
|
408
|
-
polyaxon/_pql/manager.py,sha256=
|
408
|
+
polyaxon/_pql/manager.py,sha256=GkAgPqG3-IynFvYb7Ho56ISaTGvwLdWaA8VbP5Gl2oU,5748
|
409
409
|
polyaxon/_pql/parser.py,sha256=64V7RiTXeS6wCs2W7FtkEUoAv6mbksucukV1dsZDzXY,14242
|
410
410
|
polyaxon/_runner/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
411
411
|
polyaxon/_runner/executor.py,sha256=Ln5fhc3MGk4cOg0VenbiFh80rWR-dj4t3ll7XXR-2v8,8297
|
@@ -469,7 +469,7 @@ polyaxon/_sdk/api/project_dashboards_v1_api.py,sha256=1QpcixpXNOfpLH87s-YNJq5ge9
|
|
469
469
|
polyaxon/_sdk/api/project_searches_v1_api.py,sha256=9MbGcmckzZvf6qV0CSYQ17AvctR0LLQh639r0NXW9QQ,65058
|
470
470
|
polyaxon/_sdk/api/projects_v1_api.py,sha256=x-XU2bB0yWHv2As7djsjGrmLFnFnqY7AgXnZvXu4Rdg,251855
|
471
471
|
polyaxon/_sdk/api/queues_v1_api.py,sha256=nUwo9O6mgrr0i-n1GsF4avnfbQmohWR2vaLkq-uzET0,77083
|
472
|
-
polyaxon/_sdk/api/runs_v1_api.py,sha256=
|
472
|
+
polyaxon/_sdk/api/runs_v1_api.py,sha256=FT8Xd-ngMdjPYOT_r6OnklEw5ZwrHVQFuRAdXhaSJm0,519203
|
473
473
|
polyaxon/_sdk/api/searches_v1_api.py,sha256=7cEdH1PRBb1AGmjJjqZWddt6nPX__880bXurLxl3LXQ,53284
|
474
474
|
polyaxon/_sdk/api/service_accounts_v1_api.py,sha256=WGWbb3mBoajF_EXclg6ffxHXVse3p3Wgc6_uTlxOHoc,101005
|
475
475
|
polyaxon/_sdk/api/tags_v1_api.py,sha256=F5PBCRTK6RhP_XaX0s2o2Byt-aYtpKoHkSTgJTL8GPs,59912
|
@@ -548,7 +548,7 @@ polyaxon/_sdk/schemas/v1_team_member.py,sha256=Sfj3-GH6iwf5auTbj9u3Uy6NGgYY5HP9n
|
|
548
548
|
polyaxon/_sdk/schemas/v1_team_settings.py,sha256=bfWhOItuTCOnQQ15jkaYQWH4kwBKJI8QkwKj4vJ9xnw,301
|
549
549
|
polyaxon/_sdk/schemas/v1_token.py,sha256=g2g2bfPtgBcZskfou-RO5sfDP9FqEoXYBgxoOkIhjC8,604
|
550
550
|
polyaxon/_sdk/schemas/v1_trial_start.py,sha256=h1Ut9R529Vsfug8HRtDEdjWlmTEWAPOsvbxavJAb4hQ,418
|
551
|
-
polyaxon/_sdk/schemas/v1_user.py,sha256=
|
551
|
+
polyaxon/_sdk/schemas/v1_user.py,sha256=HmbtjJavgA7GkSQIPN2xqFG2hNFEj5zjf1xg0m8dpuk,357
|
552
552
|
polyaxon/_sdk/schemas/v1_user_access.py,sha256=TwFqN1RFBhvE8JDopjikChQV0OQewuVLYoNR_J0fDaE,303
|
553
553
|
polyaxon/_sdk/schemas/v1_user_email.py,sha256=BpMbTfccBdFr_s5i2KO_d_6MXRz_lcY94WTHdmZ1AdA,198
|
554
554
|
polyaxon/_sdk/schemas/v1_user_singup.py,sha256=eqG5Uic8CBHtnDRh7LWf-hO6K6M2pFPXQhYOb6-K1pk,392
|
@@ -611,9 +611,9 @@ polyaxon/tuners/hyperopt.py,sha256=zd6MblMGkooqLGDFJVo5kClqYnBoMwGj-opqqj8FDzQ,7
|
|
611
611
|
polyaxon/tuners/mapping.py,sha256=pOdHCiwEufTk-QT7pNyjBjAEWNTM-lMC17WNTCk7C24,69
|
612
612
|
polyaxon/tuners/random_search.py,sha256=6VEekM3N9h6E1lbpVTTUGKFPJlGMY2u-GkG615_nQcI,80
|
613
613
|
polyaxon_sdk/__init__.py,sha256=HWvFdGWESyVG3f26K_szewiG-McMOHFkXKTfZcBlHsM,92
|
614
|
-
polyaxon-2.
|
615
|
-
polyaxon-2.
|
616
|
-
polyaxon-2.
|
617
|
-
polyaxon-2.
|
618
|
-
polyaxon-2.
|
619
|
-
polyaxon-2.
|
614
|
+
polyaxon-2.3.0rc0.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.3.0rc0.dist-info/METADATA,sha256=KqMQHta1OI2x6JJPqEFvwEXhtd8_EoobKd5PyrJbD8c,11711
|
616
|
+
polyaxon-2.3.0rc0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
617
|
+
polyaxon-2.3.0rc0.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.3.0rc0.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.3.0rc0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|