polyaxon 2.2.0.post1__py3-none-any.whl → 2.2.0rc1__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 +4 -14
- polyaxon/_cli/run.py +7 -2
- polyaxon/_client/run.py +2 -2
- polyaxon/_compiler/contexts/ray_job.py +2 -4
- polyaxon/_k8s/converter/converters/ray_job.py +2 -4
- polyaxon/_k8s/custom_resources/setter.py +1 -1
- polyaxon/_sdk/schemas/v1_user.py +2 -1
- polyaxon/pkg.py +1 -1
- {polyaxon-2.2.0.post1.dist-info → polyaxon-2.2.0rc1.dist-info}/METADATA +7 -7
- {polyaxon-2.2.0.post1.dist-info → polyaxon-2.2.0rc1.dist-info}/RECORD +14 -14
- {polyaxon-2.2.0.post1.dist-info → polyaxon-2.2.0rc1.dist-info}/LICENSE +0 -0
- {polyaxon-2.2.0.post1.dist-info → polyaxon-2.2.0rc1.dist-info}/WHEEL +0 -0
- {polyaxon-2.2.0.post1.dist-info → polyaxon-2.2.0rc1.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.2.0.post1.dist-info → polyaxon-2.2.0rc1.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,
|
54
|
+
from polyaxon.client import RunClient, V1Run, get_run_logs
|
55
55
|
from polyaxon.exceptions import (
|
56
56
|
ApiException,
|
57
57
|
PolyaxonClientException,
|
@@ -86,14 +86,6 @@ 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
|
-
|
97
89
|
def handle_run_statuses(status, conditions, table):
|
98
90
|
if not conditions:
|
99
91
|
return False
|
@@ -2097,12 +2089,10 @@ def service(ctx, project, uid, yes, external, url):
|
|
2097
2089
|
|
2098
2090
|
wait_for_running_condition(client)
|
2099
2091
|
|
2100
|
-
host_kwargs = get_op_agent_host(client.settings)
|
2101
2092
|
run_url = get_dashboard_url(
|
2102
2093
|
subpath="{}/runs/{}/service".format(
|
2103
2094
|
get_project_subpath_url(owner, team, project_name), run_uuid
|
2104
|
-
)
|
2105
|
-
**host_kwargs,
|
2095
|
+
)
|
2106
2096
|
)
|
2107
2097
|
|
2108
2098
|
namespace = client.run_data.settings.namespace
|
@@ -2126,9 +2116,9 @@ def service(ctx, project, uid, yes, external, url):
|
|
2126
2116
|
if port:
|
2127
2117
|
service_subpath = "{}{}/".format(service_subpath, port)
|
2128
2118
|
|
2129
|
-
host_kwargs = get_op_agent_host(client.settings)
|
2130
2119
|
external_run_url = get_dashboard_url(
|
2131
|
-
base=service_endpoint,
|
2120
|
+
base=service_endpoint,
|
2121
|
+
subpath=service_subpath,
|
2132
2122
|
)
|
2133
2123
|
|
2134
2124
|
if url:
|
polyaxon/_cli/run.py
CHANGED
@@ -14,7 +14,6 @@ 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
|
18
17
|
from polyaxon._cli.operations import logs as run_logs
|
19
18
|
from polyaxon._cli.operations import shell as run_shell
|
20
19
|
from polyaxon._cli.operations import statuses
|
@@ -99,7 +98,13 @@ def _run(
|
|
99
98
|
meta_info=meta_info,
|
100
99
|
pending=pending,
|
101
100
|
)
|
102
|
-
host_kwargs =
|
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
|
103
108
|
run_url = get_dashboard_url(
|
104
109
|
subpath="{}/runs/{}".format(project_url, response.uuid), **host_kwargs
|
105
110
|
)
|
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"):
|
2140
2140
|
for_patterns.append(getattr(self, "_artifacts_path"))
|
2141
|
-
if getattr(self, "_store_path"
|
2141
|
+
if getattr(self, "_store_path"):
|
2142
2142
|
for_patterns.append(getattr(self, "_store_path"))
|
2143
2143
|
context_root = (
|
2144
2144
|
ctx_paths.CONTEXT_OFFLINE_ROOT
|
@@ -33,9 +33,7 @@ class RayJobContextsManager(BaseContextsManager):
|
|
33
33
|
connection_by_names=connection_by_names,
|
34
34
|
)
|
35
35
|
|
36
|
-
|
36
|
+
return {
|
37
37
|
"head": _get_replica(job.head),
|
38
|
+
"workers": {wn: _get_replica(job.workers[wn]) for wn in job.workers},
|
38
39
|
}
|
39
|
-
if job.workers:
|
40
|
-
data["workers"] = {wn: _get_replica(job.workers[wn]) for wn in job.workers}
|
41
|
-
return data
|
@@ -58,9 +58,7 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
58
58
|
config=compiled_operation.plugins, auth=default_auth
|
59
59
|
)
|
60
60
|
head = _get_replica(job.head)
|
61
|
-
workers =
|
62
|
-
if job.workers:
|
63
|
-
workers = {n: _get_replica(w) for n, w in job.workers.items()}
|
61
|
+
workers = {n: _get_replica(w) for n, w in job.workers.items()}
|
64
62
|
labels = self.get_labels(version=pkg.VERSION, labels={})
|
65
63
|
|
66
64
|
return get_ray_job_custom_resource(
|
@@ -70,7 +68,7 @@ class RayJobConverter(RayJobMixin, BaseConverter):
|
|
70
68
|
workers=workers,
|
71
69
|
entrypoint=job.entrypoint,
|
72
70
|
metadata=job.metadata,
|
73
|
-
runtime_env=orjson_dumps(job.runtime_env),
|
71
|
+
runtime_env=encode(orjson_dumps(job.runtime_env)),
|
74
72
|
ray_version=job.ray_version,
|
75
73
|
termination=compiled_operation.termination,
|
76
74
|
collect_logs=plugins.collect_logs,
|
@@ -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 = "All"
|
50
50
|
|
51
51
|
template_spec["cleanPodPolicy"] = clean_pod_policy.capitalize()
|
52
52
|
return template_spec
|
polyaxon/_sdk/schemas/v1_user.py
CHANGED
@@ -2,11 +2,12 @@ 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
|
5
6
|
|
6
7
|
|
7
8
|
class V1User(BaseAllowSchemaModel):
|
8
9
|
username: Optional[StrictStr]
|
9
|
-
email: Optional[
|
10
|
+
email: Optional[EmailStr]
|
10
11
|
name: Optional[StrictStr]
|
11
12
|
kind: Optional[StrictStr]
|
12
13
|
theme: Optional[int]
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.2.
|
3
|
+
Version: 2.2.0rc1
|
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.3,>=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 <1.40,>=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.0 ; extra == 'fs'
|
63
|
+
Requires-Dist: fsspec ==2024.3.1 ; extra == 'fs'
|
64
|
+
Requires-Dist: gcsfs ==2024.3.1 ; extra == 'fs'
|
65
|
+
Requires-Dist: s3fs ==2024.3.1 ; extra == 'fs'
|
66
66
|
Provides-Extra: fsspec
|
67
67
|
Requires-Dist: fsspec ; extra == 'fsspec'
|
68
68
|
Provides-Extra: gcs
|
@@ -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=nw98is-vNGTWgbrOB6odUDJsBip0OfnZPvnlgW43Ipg,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=AqcO4EtMA8sa7sdBhdG2YP3z_G-CzTBWFUobNirNvUc,75255
|
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=j3n0C7BvbgxboaJjFbJ4ty4OcAckoRzkbWepp5--DOo,17874
|
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=7aUowwMB_yDCFYrlBdYuh-LCKcsg7IUbSdaLusoYBX8,118798
|
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=rdf__86SFoUEYf5T3vUTZXGLL-QI10enYwyngXhEJ7Q,1242
|
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
|
@@ -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=gmoHJ0lyeXU1QMpCsptU2ur_T16zxuLAhh3G8KCVYQ0,3221
|
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
|
@@ -329,7 +329,7 @@ polyaxon/_k8s/custom_resources/job.py,sha256=hTETu_oU90y9CujwflodopZ_HMqi3ajMPsy
|
|
329
329
|
polyaxon/_k8s/custom_resources/operation.py,sha256=qrtxZ6i19N5tZIYKqGRoqCM3dvQg5lSVC1mZMo0Kx3w,625
|
330
330
|
polyaxon/_k8s/custom_resources/ray_job.py,sha256=Ytvsiaev4xSL5Y3SN8vcI15DZbStkOZJq11GaZa-T1g,6210
|
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=YgTV0vnTEHMibISHKkt3IRA6cozW-6ynXw8fGfcALpo,1845
|
333
333
|
polyaxon/_k8s/custom_resources/kubeflow/__init__.py,sha256=oCDo38kAVl7L1ehQTfWX04fZHRTa-V5qYKbef9-jG7k,556
|
334
334
|
polyaxon/_k8s/custom_resources/kubeflow/common.py,sha256=_OrM906v50aTziJcGUOQqzr5XYBuTcNeErgAau2ukng,1041
|
335
335
|
polyaxon/_k8s/custom_resources/kubeflow/mpi_job.py,sha256=GwBfAb4LVYvDdHdzBUW2QgCq-_ypEhKyPrkInkaXyZo,2565
|
@@ -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=BOb30Zw0VN-VfW4hNdZ_u0FygBKE-YgSWm7Qy6qxC0M,397
|
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.2.
|
615
|
-
polyaxon-2.2.
|
616
|
-
polyaxon-2.2.
|
617
|
-
polyaxon-2.2.
|
618
|
-
polyaxon-2.2.
|
619
|
-
polyaxon-2.2.
|
614
|
+
polyaxon-2.2.0rc1.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.2.0rc1.dist-info/METADATA,sha256=ISDUCO1LOLCX0kzJaU4eFgD4xCrUOG2HJ6SpKE5xZNE,11712
|
616
|
+
polyaxon-2.2.0rc1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
617
|
+
polyaxon-2.2.0rc1.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.2.0rc1.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.2.0rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|