polyaxon 2.2.0rc0__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/artifacts.py +16 -12
- polyaxon/_cli/components.py +16 -12
- polyaxon/_cli/config.py +31 -0
- polyaxon/_cli/dashboard.py +15 -2
- polyaxon/_cli/init.py +1 -1
- polyaxon/_cli/models.py +16 -12
- polyaxon/_cli/operations.py +53 -32
- polyaxon/_cli/project_versions.py +26 -5
- polyaxon/_cli/projects.py +23 -9
- polyaxon/_cli/run.py +29 -9
- polyaxon/_client/mixin.py +39 -0
- polyaxon/_client/project.py +22 -22
- polyaxon/_client/run.py +44 -25
- polyaxon/_compiler/contexts/ray_job.py +4 -2
- polyaxon/_env_vars/getters/owner_entity.py +4 -2
- polyaxon/_env_vars/getters/project.py +4 -2
- polyaxon/_env_vars/getters/run.py +2 -2
- polyaxon/_k8s/converter/base/base.py +2 -1
- polyaxon/_k8s/converter/common/accelerators.py +3 -0
- 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_settings_catalog.py +1 -0
- polyaxon/_sdk/schemas/v1_team.py +1 -0
- polyaxon/_sdk/schemas/v1_user.py +1 -2
- polyaxon/_utils/fqn_utils.py +25 -2
- polyaxon/pkg.py +1 -1
- {polyaxon-2.2.0rc0.dist-info → polyaxon-2.3.0rc0.dist-info}/METADATA +8 -8
- {polyaxon-2.2.0rc0.dist-info → polyaxon-2.3.0rc0.dist-info}/RECORD +37 -36
- {polyaxon-2.2.0rc0.dist-info → polyaxon-2.3.0rc0.dist-info}/LICENSE +0 -0
- {polyaxon-2.2.0rc0.dist-info → polyaxon-2.3.0rc0.dist-info}/WHEEL +0 -0
- {polyaxon-2.2.0rc0.dist-info → polyaxon-2.3.0rc0.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.2.0rc0.dist-info → polyaxon-2.3.0rc0.dist-info}/top_level.txt +0 -0
polyaxon/_sdk/schemas/v1_team.py
CHANGED
@@ -17,6 +17,7 @@ class V1Team(BaseAllowSchemaModel):
|
|
17
17
|
component_hubs: Optional[List[StrictStr]]
|
18
18
|
model_registries: Optional[List[StrictStr]]
|
19
19
|
settings: Optional[V1TeamSettings]
|
20
|
+
policy: Optional[StrictStr]
|
20
21
|
role: Optional[StrictStr]
|
21
22
|
created_at: Optional[datetime.datetime]
|
22
23
|
updated_at: Optional[datetime.datetime]
|
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/_utils/fqn_utils.py
CHANGED
@@ -9,15 +9,32 @@ from clipped.utils.paths import get_relative_path_to
|
|
9
9
|
from polyaxon.exceptions import PolyaxonSchemaError
|
10
10
|
|
11
11
|
|
12
|
+
def get_owner_team_space(owner: str, team: Optional[str] = None) -> str:
|
13
|
+
if team:
|
14
|
+
return "{}/{}".format(owner, team)
|
15
|
+
return owner
|
16
|
+
|
17
|
+
|
18
|
+
def split_owner_team_space(owner: str) -> Tuple[str, Optional[str]]:
|
19
|
+
return owner.split("/") if owner and "/" in owner else (owner, None)
|
20
|
+
|
21
|
+
|
22
|
+
def _remove_team(owner: str) -> str:
|
23
|
+
return split_owner_team_space(owner)[0]
|
24
|
+
|
25
|
+
|
12
26
|
def get_project_instance(owner: str, project: str) -> str:
|
27
|
+
owner = _remove_team(owner)
|
13
28
|
return "{}.{}".format(owner, project)
|
14
29
|
|
15
30
|
|
16
31
|
def get_run_instance(owner: str, project: str, run_uuid: str) -> str:
|
32
|
+
owner = _remove_team(owner)
|
17
33
|
return "{}.{}.runs.{}".format(owner, project, run_uuid)
|
18
34
|
|
19
35
|
|
20
36
|
def get_cleaner_instance(owner: str, project: str, run_uuid: str) -> str:
|
37
|
+
owner = _remove_team(owner)
|
21
38
|
return "{}.{}.cleaners.{}".format(owner, project, run_uuid)
|
22
39
|
|
23
40
|
|
@@ -53,6 +70,7 @@ def to_fqn_name(name: str) -> str:
|
|
53
70
|
def get_entity_full_name(
|
54
71
|
owner: Optional[str] = None, entity: Optional[str] = None
|
55
72
|
) -> str:
|
73
|
+
owner = _remove_team(owner)
|
56
74
|
if owner and entity:
|
57
75
|
return "{}/{}".format(owner, entity)
|
58
76
|
return entity
|
@@ -65,11 +83,14 @@ def get_entity_info(entity: str) -> Tuple[str, str]:
|
|
65
83
|
)
|
66
84
|
|
67
85
|
parts = entity.replace(".", "/").split("/")
|
68
|
-
if len(parts) >
|
86
|
+
if len(parts) > 3:
|
69
87
|
raise PolyaxonSchemaError(
|
70
88
|
"Received an invalid entity reference: `{}`".format(entity)
|
71
89
|
)
|
72
|
-
if len(parts) ==
|
90
|
+
if len(parts) == 3:
|
91
|
+
owner = "/".join(parts[:2])
|
92
|
+
entity_name = parts[2]
|
93
|
+
elif len(parts) == 2:
|
73
94
|
owner, entity_name = parts
|
74
95
|
else:
|
75
96
|
owner = None
|
@@ -81,6 +102,8 @@ def get_entity_info(entity: str) -> Tuple[str, str]:
|
|
81
102
|
def get_versioned_entity_full_name(
|
82
103
|
owner: Optional[str], component: str, tag: Optional[str] = None
|
83
104
|
) -> str:
|
105
|
+
owner = _remove_team(owner)
|
106
|
+
|
84
107
|
if tag:
|
85
108
|
component = "{}:{}".format(component, tag)
|
86
109
|
if owner:
|
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
|
@@ -23,22 +23,22 @@ polyaxon/_auxiliaries/sidecar.py,sha256=XqAPteBHlSZbXPn_HKBEA5ar2IfcNANqfhe8lHrt
|
|
23
23
|
polyaxon/_auxiliaries/tuner.py,sha256=W27fyK5PDwTSv3z-0nmvmw_dUM3UIoV5JCCNeK9CIKw,941
|
24
24
|
polyaxon/_cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
25
25
|
polyaxon/_cli/admin.py,sha256=xvnQyLKwqyxIzBV7_Xv59Z95-AAxU_h3qdu9UMg8AkE,8872
|
26
|
-
polyaxon/_cli/artifacts.py,sha256=
|
26
|
+
polyaxon/_cli/artifacts.py,sha256=MLNqIcSNeKnCJVGz_XjsDz28zEZhp1i9EE7iNbLl1zs,18474
|
27
27
|
polyaxon/_cli/auth.py,sha256=Ytvw3ik6_LiSICfZu6Qw5IM95Df7eelOeRFD-tu8EUE,5002
|
28
28
|
polyaxon/_cli/check.py,sha256=WSQpQp3enPmgIXrllwgUTd3VcjYCG8P-37ONt7F67wo,1337
|
29
29
|
polyaxon/_cli/completion.py,sha256=soJlrKTAFdxskWNH3YjgCMTM__NqVCr9Rr6z8FSmXao,2017
|
30
|
-
polyaxon/_cli/components.py,sha256=
|
31
|
-
polyaxon/_cli/config.py,sha256
|
32
|
-
polyaxon/_cli/dashboard.py,sha256=
|
30
|
+
polyaxon/_cli/components.py,sha256=pvfZB9NIjwA8qtfdebKWMAbdx--7ARV0FZImPnW6u4A,19818
|
31
|
+
polyaxon/_cli/config.py,sha256=-ruIopLsC0ArPvw8RHlY5uQDu2_eaQ5PnvEDNJsq9f8,9165
|
32
|
+
polyaxon/_cli/dashboard.py,sha256=zRrOJMfowM7YQnYXhz_guKsTi-jkoCuVl_g0UTJ37qE,1681
|
33
33
|
polyaxon/_cli/errors.py,sha256=BYs7-I0CLLNYma-I0eJXB1EHs8ZTs_nWGRKGJz6CzTI,1031
|
34
|
-
polyaxon/_cli/init.py,sha256=
|
35
|
-
polyaxon/_cli/models.py,sha256=
|
36
|
-
polyaxon/_cli/operations.py,sha256=
|
34
|
+
polyaxon/_cli/init.py,sha256=lZhkIbaHGv4FdMypdmXhYXRrH5GpM-qcDEks4IsmKIM,7714
|
35
|
+
polyaxon/_cli/models.py,sha256=71oxGrIe4nQORnnfAiNi6T7A0DBnEe3V6whBABBGL3c,18066
|
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
|
-
polyaxon/_cli/project_versions.py,sha256=
|
40
|
-
polyaxon/_cli/projects.py,sha256=
|
41
|
-
polyaxon/_cli/run.py,sha256=
|
39
|
+
polyaxon/_cli/project_versions.py,sha256=fbgE3tRShrgH8TAA6ETj78J38HG2-BcVoAWbxYS9d5s,20507
|
40
|
+
polyaxon/_cli/projects.py,sha256=RVuTbKtNP_bvw3kRFKaIQBWq0xUwF0BUHK19T87VG5Q,12069
|
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
|
@@ -55,8 +55,9 @@ polyaxon/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
55
55
|
polyaxon/_client/client.py,sha256=wLRAkm05qNi-rc5RpkWic3oJZNF0HTxkrtOOkbB0YqE,8015
|
56
56
|
polyaxon/_client/impersonate.py,sha256=4jRoJoX8nkwvVc3zAYqVqPoysNT1kZoPRbwyTpyHGHw,1260
|
57
57
|
polyaxon/_client/init.py,sha256=QECGjzuBTFaagndubzd9U1COpc5NGe-E0aVkSRetcIs,418
|
58
|
-
polyaxon/_client/
|
59
|
-
polyaxon/_client/
|
58
|
+
polyaxon/_client/mixin.py,sha256=-tPm8RBej0UeG9HAKH3qN2fPX8PBtuXAHY1OpwLIDu4,1017
|
59
|
+
polyaxon/_client/project.py,sha256=-vHLae0fMYqOjMscRm0I25Ixj-hS6o9i6XQm5PIxyiA,65520
|
60
|
+
polyaxon/_client/run.py,sha256=EyuuEL7-oabgv_AlX0osKT8flY-3eLMGOINgBk93xX4,118810
|
60
61
|
polyaxon/_client/store.py,sha256=-Y33ypkijGQnhHTQ_vCTqLlpk0wRqoaP-ntJhdUtv7E,11311
|
61
62
|
polyaxon/_client/decorators/__init__.py,sha256=e5CBijciLP-Ic-YkaL4tFhUdr--uod_TexvxAJamGZQ,186
|
62
63
|
polyaxon/_client/decorators/client_call_handler.py,sha256=dgdidWsL9e8AgJmOfxz4urkI3bBgX64whWI1WHeAJDU,4587
|
@@ -79,7 +80,7 @@ polyaxon/_compiler/contexts/base.py,sha256=4EVQQlLgxvFORZ27ouBhwcJKhl3vMGXyOVP9H
|
|
79
80
|
polyaxon/_compiler/contexts/contexts.py,sha256=tJy8eL9UrUhjisJ3MdYNmMVERSK_m_fKfgPTQgC-0y4,6535
|
80
81
|
polyaxon/_compiler/contexts/dask_job.py,sha256=GxhLcZtCDWSDfc45UenmKsJ6Fhr0f_GeneaAzLHtncg,1265
|
81
82
|
polyaxon/_compiler/contexts/job.py,sha256=1lkjfMO2eHndmmtxC551K6n6RE5XasqkWBfwNpYy_MA,759
|
82
|
-
polyaxon/_compiler/contexts/ray_job.py,sha256=
|
83
|
+
polyaxon/_compiler/contexts/ray_job.py,sha256=6CFFuX63HhyU0z--GoE3Tv2vENBB1QKGCwuFmEwC2PY,1292
|
83
84
|
polyaxon/_compiler/contexts/service.py,sha256=d4zKB608906CXRZeUeOLgOdro5CEFe9byHWrGyy1ZFw,2150
|
84
85
|
polyaxon/_compiler/contexts/kubeflow/__init__.py,sha256=FnOOO9l-eunvun5kGcTfQ9uO8gLhuHIFuh2_gCHxaLA,488
|
85
86
|
polyaxon/_compiler/contexts/kubeflow/mpi_job.py,sha256=UMf7yJPRWEB9MVYS4Eoa7V6IZEQasU5VU71WdNZQ-2k,1214
|
@@ -168,10 +169,10 @@ polyaxon/_env_vars/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVG
|
|
168
169
|
polyaxon/_env_vars/keys.py,sha256=DxRrXFQpiBCnve7tY3I9eeOf7tBvlrt92-XdH50__rk,7586
|
169
170
|
polyaxon/_env_vars/getters/__init__.py,sha256=K59-CiBIqf8dDzvYBV3gL4AREidI9fe8JljFHyWxhtY,711
|
170
171
|
polyaxon/_env_vars/getters/agent.py,sha256=dh-kIp1upD9DE_nTpBktQTxxEy7rZuh50u9UmRCWurg,1061
|
171
|
-
polyaxon/_env_vars/getters/owner_entity.py,sha256=
|
172
|
-
polyaxon/_env_vars/getters/project.py,sha256=
|
172
|
+
polyaxon/_env_vars/getters/owner_entity.py,sha256=IIFVw3tYZtQhieZ8WjSlIx7Z5Q8XQogStzrw703XQn0,1766
|
173
|
+
polyaxon/_env_vars/getters/project.py,sha256=5AoC2jxBe1x6rncGahevAe9J1cffYlCRdcpsRMa-2Nc,2762
|
173
174
|
polyaxon/_env_vars/getters/queue.py,sha256=Ik2u1yVIwZZPM2InKvg9EFd4CmOxv2ZOMJt7UD1ve0g,572
|
174
|
-
polyaxon/_env_vars/getters/run.py,sha256=
|
175
|
+
polyaxon/_env_vars/getters/run.py,sha256=HhE5Cl9-MvPLtNuVoOZEEaN6mMk9HPedQeEbb2zJzFk,2721
|
175
176
|
polyaxon/_env_vars/getters/user.py,sha256=Ey1h9o6I8uMDYzP0MKnpURUaRwQ0FHd4qvkgdtwO4GE,1134
|
176
177
|
polyaxon/_env_vars/getters/versioned_entity.py,sha256=cQ8WYZ_yTBTw-v_26EKnSkLv1Au9Z1ZSH6gB-Y68pCc,2885
|
177
178
|
polyaxon/_flow/__init__.py,sha256=j5h-jGgno0NczmhiPwri9BdkRZxpG3OC3AJSy_yw7gg,2842
|
@@ -294,7 +295,7 @@ polyaxon/_k8s/agent/async_agent.py,sha256=ZK7TkAcFLvdyNCYkqEtoCouJMDObfUZs75PLMg
|
|
294
295
|
polyaxon/_k8s/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
295
296
|
polyaxon/_k8s/converter/mixins.py,sha256=CMzFQ10BKUqaHxgH1RorkpGn4Sw4fGMRl-9BI6iRcMQ,3162
|
296
297
|
polyaxon/_k8s/converter/base/__init__.py,sha256=7cgnegNqjcXSXumcHu55xRYJrCON1C8F68HOFpfYFGg,60
|
297
|
-
polyaxon/_k8s/converter/base/base.py,sha256=
|
298
|
+
polyaxon/_k8s/converter/base/base.py,sha256=OiXQlvcq9KX9Ai2zCorwxJhlP0zUbLUaTRoc3SPxLOg,8413
|
298
299
|
polyaxon/_k8s/converter/base/containers.py,sha256=EbB_SmI_gDs3n-z1Tz8JZKzPchkpQAKn2ecMLXbyXZI,4170
|
299
300
|
polyaxon/_k8s/converter/base/env_vars.py,sha256=BCHTfV2IZvUBErgBGf2GpkD1ktU7mbbh2_gNi_d6oYQ,11062
|
300
301
|
polyaxon/_k8s/converter/base/init.py,sha256=oecgNGVjRrwSUCf5PhMKp7dnPqFmlhsaska0tHHhun0,20404
|
@@ -302,14 +303,14 @@ polyaxon/_k8s/converter/base/main.py,sha256=eT5MlalYQ8U1QlvoBQp2EME6Na6sI4o_9ZTE
|
|
302
303
|
polyaxon/_k8s/converter/base/mounts.py,sha256=YKJ-ifAZHg4lfo_ZWlBHoTBmyOt3wbT5Kx8SLBd21s8,3563
|
303
304
|
polyaxon/_k8s/converter/base/sidecar.py,sha256=hrUWVKr1ijvmAOd0yZHxNJRpODeOsOvkCqEPS4XowjA,5965
|
304
305
|
polyaxon/_k8s/converter/common/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
305
|
-
polyaxon/_k8s/converter/common/accelerators.py,sha256=
|
306
|
+
polyaxon/_k8s/converter/common/accelerators.py,sha256=SGZrbfS3VN7aGdjZ6zwnRPUdYRUDsoIo1hiLNiz8QbQ,1425
|
306
307
|
polyaxon/_k8s/converter/common/annotations.py,sha256=QV7LSxt2ezcu4T4uwNgdrACG1ptcD0H89FQIhSYfUEI,1228
|
307
308
|
polyaxon/_k8s/converter/common/volumes.py,sha256=vjvTCF247hu1uETmRcrtK_sCSGABwaOJ3LkO5s7Os0U,3541
|
308
309
|
polyaxon/_k8s/converter/converters/__init__.py,sha256=jyw6PnVQcG-lfyNbfxomFhh1aa2awv8O-D7YIaNduY8,1177
|
309
310
|
polyaxon/_k8s/converter/converters/dask_job.py,sha256=DNlQczpN29AMJzsAy3q6SlpIH9h-kfcp3UMvfRLGJm8,2784
|
310
311
|
polyaxon/_k8s/converter/converters/helpers.py,sha256=LEfPISHptnC_1W-B5lY3D834U0qAr6wsX4x1EafWlk4,661
|
311
312
|
polyaxon/_k8s/converter/converters/job.py,sha256=luYWU9-qkuT5usk42zmd2JkX8thwWHNcqrmngtbHPJ8,2287
|
312
|
-
polyaxon/_k8s/converter/converters/ray_job.py,sha256=
|
313
|
+
polyaxon/_k8s/converter/converters/ray_job.py,sha256=d57kxNxt3VqN5Bu54NKFqH-HHyv0F2Ps74qJTNVNxSk,3264
|
313
314
|
polyaxon/_k8s/converter/converters/service.py,sha256=F2tW2bTlpaX9J47I8nE6up8xwUbdg2dQ_oXqsJdcdu8,2465
|
314
315
|
polyaxon/_k8s/converter/converters/kubeflow/__init__.py,sha256=ZXdpmleFm0ALmJYPlU9JG6ZpsBW6bq6DvF1d9IVoW68,498
|
315
316
|
polyaxon/_k8s/converter/converters/kubeflow/mpi_job.py,sha256=UyLqLBCmjGIWlj6ZiDJqMByzeVWTKp1wBtu4oogfL3w,2731
|
@@ -323,14 +324,14 @@ polyaxon/_k8s/converter/pod/spec.py,sha256=6PtNHxt6H42pAz6MpStReQx6dABPxXVk8Q7AG
|
|
323
324
|
polyaxon/_k8s/converter/pod/volumes.py,sha256=raFuCP7aKCnpIypJ-jJ4Q_CrkewzHsjwPNbsRy-Yuu0,4687
|
324
325
|
polyaxon/_k8s/custom_resources/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
325
326
|
polyaxon/_k8s/custom_resources/crd.py,sha256=BspgH1EfxI0GL9FQWUV-yDjIYT1J8gGBTDFiOge6Dp4,536
|
326
|
-
polyaxon/_k8s/custom_resources/dask_job.py,sha256=
|
327
|
+
polyaxon/_k8s/custom_resources/dask_job.py,sha256=9AHf7zdDSFzNmZsT0MA8pTvdOojYvEoEOqLjyBpvLwg,6263
|
327
328
|
polyaxon/_k8s/custom_resources/job.py,sha256=hTETu_oU90y9CujwflodopZ_HMqi3ajMPsyld63JN80,2093
|
328
329
|
polyaxon/_k8s/custom_resources/operation.py,sha256=qrtxZ6i19N5tZIYKqGRoqCM3dvQg5lSVC1mZMo0Kx3w,625
|
329
|
-
polyaxon/_k8s/custom_resources/ray_job.py,sha256=
|
330
|
+
polyaxon/_k8s/custom_resources/ray_job.py,sha256=_KnMt9U2aOP00IBwCFixo5alT8MM1vpBCUXvQxGyeUs,6310
|
330
331
|
polyaxon/_k8s/custom_resources/service.py,sha256=M_mptT7JR6jmuctfgo87ov7KXRM4_jggJ5nc3zXL7hA,2370
|
331
|
-
polyaxon/_k8s/custom_resources/setter.py,sha256=
|
332
|
+
polyaxon/_k8s/custom_resources/setter.py,sha256=WCbEf7DaijK2U-FNAPAVI7mEefA7rb-KhHYnWPRX6aU,1846
|
332
333
|
polyaxon/_k8s/custom_resources/kubeflow/__init__.py,sha256=oCDo38kAVl7L1ehQTfWX04fZHRTa-V5qYKbef9-jG7k,556
|
333
|
-
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=
|
334
|
+
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=GaLJe3odjQYTieJzOP_V0jPFFA1beK1a2jtG3sSo1VE,1141
|
334
335
|
polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py,sha256=GwBfAb4LVYvDdHdzBUW2QgCq-_ypEhKyPrkInkaXyZo,2565
|
335
336
|
polyaxon/_k8s/custom_resources/kubeflow/mx_job.py,sha256=FD1pAeWWE1Vfyc1htlYLBGdme2-4K9shLJbO-_U-cz8,3697
|
336
337
|
polyaxon/_k8s/custom_resources/kubeflow/paddle_job.py,sha256=Ad-NAp_B7_tL18qf_gw06TK-rEEJ4fXLGhVB3mFRocw,2636
|
@@ -404,7 +405,7 @@ polyaxon/_polyaxonfile/specs/libs/parser.py,sha256=eOLXtUfhGX0MvBk7esNe4Y4a_OnE5
|
|
404
405
|
polyaxon/_polyaxonfile/specs/libs/validator.py,sha256=NZavIn-D43tbChRQz33JW2EuJPWZ5R8brCxCxGFYO68,938
|
405
406
|
polyaxon/_pql/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
406
407
|
polyaxon/_pql/builder.py,sha256=OhQPLJ4pCOgkviY6HcHqji-Q1taZNeSMUjVfgkwCWho,17840
|
407
|
-
polyaxon/_pql/manager.py,sha256=
|
408
|
+
polyaxon/_pql/manager.py,sha256=GkAgPqG3-IynFvYb7Ho56ISaTGvwLdWaA8VbP5Gl2oU,5748
|
408
409
|
polyaxon/_pql/parser.py,sha256=64V7RiTXeS6wCs2W7FtkEUoAv6mbksucukV1dsZDzXY,14242
|
409
410
|
polyaxon/_runner/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
410
411
|
polyaxon/_runner/executor.py,sha256=Ln5fhc3MGk4cOg0VenbiFh80rWR-dj4t3ll7XXR-2v8,8297
|
@@ -468,7 +469,7 @@ polyaxon/_sdk/api/project_dashboards_v1_api.py,sha256=1QpcixpXNOfpLH87s-YNJq5ge9
|
|
468
469
|
polyaxon/_sdk/api/project_searches_v1_api.py,sha256=9MbGcmckzZvf6qV0CSYQ17AvctR0LLQh639r0NXW9QQ,65058
|
469
470
|
polyaxon/_sdk/api/projects_v1_api.py,sha256=x-XU2bB0yWHv2As7djsjGrmLFnFnqY7AgXnZvXu4Rdg,251855
|
470
471
|
polyaxon/_sdk/api/queues_v1_api.py,sha256=nUwo9O6mgrr0i-n1GsF4avnfbQmohWR2vaLkq-uzET0,77083
|
471
|
-
polyaxon/_sdk/api/runs_v1_api.py,sha256=
|
472
|
+
polyaxon/_sdk/api/runs_v1_api.py,sha256=FT8Xd-ngMdjPYOT_r6OnklEw5ZwrHVQFuRAdXhaSJm0,519203
|
472
473
|
polyaxon/_sdk/api/searches_v1_api.py,sha256=7cEdH1PRBb1AGmjJjqZWddt6nPX__880bXurLxl3LXQ,53284
|
473
474
|
polyaxon/_sdk/api/service_accounts_v1_api.py,sha256=WGWbb3mBoajF_EXclg6ffxHXVse3p3Wgc6_uTlxOHoc,101005
|
474
475
|
polyaxon/_sdk/api/tags_v1_api.py,sha256=F5PBCRTK6RhP_XaX0s2o2Byt-aYtpKoHkSTgJTL8GPs,59912
|
@@ -540,14 +541,14 @@ polyaxon/_sdk/schemas/v1_search.py,sha256=zz1R5x4FEWBSEW18uAbgV4Uea7O4KU7VM_Usm2
|
|
540
541
|
polyaxon/_sdk/schemas/v1_search_spec.py,sha256=mFGNgsbXgSiLx08i9-vM0jsyR3BBGqAxBoE68RV-Rbg,788
|
541
542
|
polyaxon/_sdk/schemas/v1_section_spec.py,sha256=SA78rt-FydtKQb4wiol75g0LpkRnqcKD8g7X_h24uSE,569
|
542
543
|
polyaxon/_sdk/schemas/v1_service_account.py,sha256=03S_33y9_TBP-SCorFtwP6rxKYiFJxJyMPe32DIhXzg,569
|
543
|
-
polyaxon/_sdk/schemas/v1_settings_catalog.py,sha256=
|
544
|
+
polyaxon/_sdk/schemas/v1_settings_catalog.py,sha256=Ee53jUnDqIZqbnQlIKmzg3yLurxGKl_PWue6QMdF-vw,340
|
544
545
|
polyaxon/_sdk/schemas/v1_tag.py,sha256=dLAThV2aJbaQjE52w4rfGVmD5mXJqUN0jcs-LLDFfrk,411
|
545
|
-
polyaxon/_sdk/schemas/v1_team.py,sha256=
|
546
|
+
polyaxon/_sdk/schemas/v1_team.py,sha256=CUD3oHdjy00LoDFA9NtaKsM2qWrOksrz6VYVFYwdq-o,711
|
546
547
|
polyaxon/_sdk/schemas/v1_team_member.py,sha256=Sfj3-GH6iwf5auTbj9u3Uy6NGgYY5HP9n7kfkFrNtFw,450
|
547
548
|
polyaxon/_sdk/schemas/v1_team_settings.py,sha256=bfWhOItuTCOnQQ15jkaYQWH4kwBKJI8QkwKj4vJ9xnw,301
|
548
549
|
polyaxon/_sdk/schemas/v1_token.py,sha256=g2g2bfPtgBcZskfou-RO5sfDP9FqEoXYBgxoOkIhjC8,604
|
549
550
|
polyaxon/_sdk/schemas/v1_trial_start.py,sha256=h1Ut9R529Vsfug8HRtDEdjWlmTEWAPOsvbxavJAb4hQ,418
|
550
|
-
polyaxon/_sdk/schemas/v1_user.py,sha256=
|
551
|
+
polyaxon/_sdk/schemas/v1_user.py,sha256=HmbtjJavgA7GkSQIPN2xqFG2hNFEj5zjf1xg0m8dpuk,357
|
551
552
|
polyaxon/_sdk/schemas/v1_user_access.py,sha256=TwFqN1RFBhvE8JDopjikChQV0OQewuVLYoNR_J0fDaE,303
|
552
553
|
polyaxon/_sdk/schemas/v1_user_email.py,sha256=BpMbTfccBdFr_s5i2KO_d_6MXRz_lcY94WTHdmZ1AdA,198
|
553
554
|
polyaxon/_sdk/schemas/v1_user_singup.py,sha256=eqG5Uic8CBHtnDRh7LWf-hO6K6M2pFPXQhYOb6-K1pk,392
|
@@ -572,7 +573,7 @@ polyaxon/_utils/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
572
573
|
polyaxon/_utils/cache.py,sha256=hsnADZUnnYKQ2jrzuQjg3z9_4YGznL-pof9wH-cObR8,1717
|
573
574
|
polyaxon/_utils/cli_constants.py,sha256=v8qmVMEFYtYI33Fghsq5IlY7ceYgWa7osZB9d6NwlP8,795
|
574
575
|
polyaxon/_utils/formatting.py,sha256=OLMfC7YRJKmmbF37_6xHr6tQKOdhEIU6Ij87h_tRDV0,2483
|
575
|
-
polyaxon/_utils/fqn_utils.py,sha256=
|
576
|
+
polyaxon/_utils/fqn_utils.py,sha256=ixfFZyGdxvnuhaDbIJ6vTig2K48Z59ZqFMzisVkaDls,3260
|
576
577
|
polyaxon/_utils/host_utils.py,sha256=SAs_cC409rDO6qwUequOoybNUJw0fpNgOhljMiDlSdc,265
|
577
578
|
polyaxon/_utils/test_utils.py,sha256=a6JU1T635ZseZWjHYx9Ga59fUcCBwfpFXy86Qo4fpMk,4873
|
578
579
|
polyaxon/_utils/urls_utils.py,sha256=zdhR1M9r9kHcShT8GhvZaBsMi9mdKh-3wFSsvBPiw8c,1722
|
@@ -610,9 +611,9 @@ polyaxon/tuners/hyperopt.py,sha256=zd6MblMGkooqLGDFJVo5kClqYnBoMwGj-opqqj8FDzQ,7
|
|
610
611
|
polyaxon/tuners/mapping.py,sha256=pOdHCiwEufTk-QT7pNyjBjAEWNTM-lMC17WNTCk7C24,69
|
611
612
|
polyaxon/tuners/random_search.py,sha256=6VEekM3N9h6E1lbpVTTUGKFPJlGMY2u-GkG615_nQcI,80
|
612
613
|
polyaxon_sdk/__init__.py,sha256=HWvFdGWESyVG3f26K_szewiG-McMOHFkXKTfZcBlHsM,92
|
613
|
-
polyaxon-2.
|
614
|
-
polyaxon-2.
|
615
|
-
polyaxon-2.
|
616
|
-
polyaxon-2.
|
617
|
-
polyaxon-2.
|
618
|
-
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
|