polyaxon 2.5.1__py3-none-any.whl → 2.5.2.post1__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/run.py +14 -0
- polyaxon/_fs/async_manager.py +1 -1
- polyaxon/_polyaxonfile/specs/libs/parser.py +1 -1
- polyaxon/_polyaxonfile/specs/sections.py +8 -0
- polyaxon/_runner/agent/async_agent.py +7 -4
- polyaxon/_runner/agent/base_agent.py +8 -5
- polyaxon/_runner/agent/sync_agent.py +7 -4
- polyaxon/_runner/converter/converter.py +11 -3
- polyaxon/_schemas/lifecycle.py +2 -2
- polyaxon/_sdk/schemas/v1_project.py +1 -1
- polyaxon/_sdk/schemas/v1_project_version.py +1 -1
- polyaxon/_sdk/schemas/v1_run.py +1 -1
- polyaxon/pkg.py +1 -1
- {polyaxon-2.5.1.dist-info → polyaxon-2.5.2.post1.dist-info}/METADATA +2 -2
- {polyaxon-2.5.1.dist-info → polyaxon-2.5.2.post1.dist-info}/RECORD +19 -19
- {polyaxon-2.5.1.dist-info → polyaxon-2.5.2.post1.dist-info}/WHEEL +1 -1
- {polyaxon-2.5.1.dist-info → polyaxon-2.5.2.post1.dist-info}/LICENSE +0 -0
- {polyaxon-2.5.1.dist-info → polyaxon-2.5.2.post1.dist-info}/entry_points.txt +0 -0
- {polyaxon-2.5.1.dist-info → polyaxon-2.5.2.post1.dist-info}/top_level.txt +0 -0
polyaxon/_cli/run.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
import sys
|
2
|
+
import time
|
2
3
|
|
3
4
|
from collections import namedtuple
|
4
5
|
from typing import Dict, List, Optional
|
@@ -56,6 +57,7 @@ def _run(
|
|
56
57
|
upload_to: str,
|
57
58
|
upload_from: str,
|
58
59
|
watch: bool,
|
60
|
+
approve_after: Optional[int] = None,
|
59
61
|
output: Optional[str] = None,
|
60
62
|
local: Optional[bool] = False,
|
61
63
|
executor: Optional[RunnerKind] = None,
|
@@ -167,6 +169,9 @@ def _run(
|
|
167
169
|
ctx.invoke(
|
168
170
|
run_upload, path_to=upload_to, path_from=upload_from, sync_failure=True
|
169
171
|
)
|
172
|
+
if approve_after and approve_after > 0:
|
173
|
+
Printer.print(f"Waiting {approve_after}s to approve the run...")
|
174
|
+
time.sleep(approve_after)
|
170
175
|
ctx.invoke(approve)
|
171
176
|
|
172
177
|
if not output:
|
@@ -375,11 +380,18 @@ def _run(
|
|
375
380
|
)
|
376
381
|
@click.option(
|
377
382
|
"--approved",
|
383
|
+
"-ap",
|
378
384
|
help="To enable/disable human in the loop validation without changing the polyaxonfile, "
|
379
385
|
"similar to 'isApproved: true/false'. "
|
380
386
|
"Can be used with yes/no, y/n, false/true, f/t, 1/0. "
|
381
387
|
"e.g. '--approved=1', '--approved=yes', '--approved=false', '--approved=t', ...",
|
382
388
|
)
|
389
|
+
@click.option(
|
390
|
+
"--approve-after",
|
391
|
+
"-aa",
|
392
|
+
type=int,
|
393
|
+
help="To delay or automatically approve a run after a certain number of seconds.",
|
394
|
+
)
|
383
395
|
@click.option(
|
384
396
|
"--git-preset",
|
385
397
|
is_flag=True,
|
@@ -441,6 +453,7 @@ def run(
|
|
441
453
|
nocache,
|
442
454
|
cache,
|
443
455
|
approved,
|
456
|
+
approve_after,
|
444
457
|
git_preset,
|
445
458
|
git_revision,
|
446
459
|
ignore_template,
|
@@ -591,6 +604,7 @@ def run(
|
|
591
604
|
upload_to=upload_to,
|
592
605
|
upload_from=upload_from,
|
593
606
|
watch=watch,
|
607
|
+
approve_after=approve_after,
|
594
608
|
output=output,
|
595
609
|
shell=shell,
|
596
610
|
local=local,
|
polyaxon/_fs/async_manager.py
CHANGED
@@ -314,7 +314,7 @@ async def list_files(
|
|
314
314
|
|
315
315
|
|
316
316
|
async def delete_file_or_dir(
|
317
|
-
fs: FSSystem, store_path: str, subpath:
|
317
|
+
fs: FSSystem, store_path: str, subpath: Optional[str], is_file: bool
|
318
318
|
) -> bool:
|
319
319
|
try:
|
320
320
|
await ensure_async_execution(
|
@@ -93,7 +93,7 @@ class PolyaxonfileParser:
|
|
93
93
|
# Check workflow
|
94
94
|
for section in Sections.PARSING_SECTIONS:
|
95
95
|
config_section = cls._get_section(config, section)
|
96
|
-
if config_section:
|
96
|
+
if config_section is not None:
|
97
97
|
parsed_data[section] = cls.parse_expression(
|
98
98
|
config_section, parsed_params
|
99
99
|
)
|
@@ -99,6 +99,14 @@ class Sections:
|
|
99
99
|
CONDITIONS,
|
100
100
|
SKIP_ON_UPSTREAM_SKIP,
|
101
101
|
PATCH_STRATEGY,
|
102
|
+
"is_approved",
|
103
|
+
"patch_strategy",
|
104
|
+
"is_preset",
|
105
|
+
"hub_ref",
|
106
|
+
"dag_ref",
|
107
|
+
"path_ref",
|
108
|
+
"url_ref",
|
109
|
+
"skip_on_upstream_skip",
|
102
110
|
)
|
103
111
|
|
104
112
|
REQUIRED_SECTIONS = (VERSION, KIND)
|
@@ -81,13 +81,16 @@ class BaseAsyncAgent(BaseAgent):
|
|
81
81
|
|
82
82
|
async def reconcile(self):
|
83
83
|
if (
|
84
|
-
now() - self.
|
84
|
+
now() - self._last_data_collected_at
|
85
85
|
).total_seconds() > self.SLEEP_AGENT_DATA_COLLECT_TIME:
|
86
|
+
await self.collect_agent_data()
|
87
|
+
if (
|
88
|
+
now() - self._last_reconciled_at
|
89
|
+
).total_seconds() < self.SLEEP_AGENT_DATA_RECONCILE_TIME:
|
86
90
|
return
|
87
91
|
|
88
|
-
|
89
|
-
|
90
|
-
|
92
|
+
logger.info("Checking cluster state.")
|
93
|
+
self._last_reconciled_at = now()
|
91
94
|
# Update reconcile
|
92
95
|
namespaces = [settings.AGENT_CONFIG.namespace]
|
93
96
|
namespaces += settings.AGENT_CONFIG.additional_namespaces or []
|
@@ -4,7 +4,7 @@ import traceback
|
|
4
4
|
from concurrent.futures import ThreadPoolExecutor
|
5
5
|
from typing import Any, Dict, Optional, Tuple, Type
|
6
6
|
|
7
|
-
from clipped.utils.tz import now
|
7
|
+
from clipped.utils.tz import get_datetime_from_now, now
|
8
8
|
|
9
9
|
from polyaxon import settings
|
10
10
|
from polyaxon._auxiliaries import V1PolyaxonInitContainer, V1PolyaxonSidecarContainer
|
@@ -24,7 +24,8 @@ class BaseAgent:
|
|
24
24
|
HEALTH_FILE = "/tmp/.healthz"
|
25
25
|
SLEEP_STOP_TIME = 60 * 5
|
26
26
|
SLEEP_ARCHIVED_TIME = 60 * 60
|
27
|
-
SLEEP_AGENT_DATA_COLLECT_TIME = 60 *
|
27
|
+
SLEEP_AGENT_DATA_COLLECT_TIME = 60 * 15
|
28
|
+
SLEEP_AGENT_DATA_RECONCILE_TIME = 60 * 5
|
28
29
|
IS_ASYNC = False
|
29
30
|
|
30
31
|
def __init__(
|
@@ -38,11 +39,13 @@ class BaseAgent:
|
|
38
39
|
self.max_interval = max(max_interval, 3)
|
39
40
|
if not agent_uuid and not owner:
|
40
41
|
owner = DEFAULT
|
42
|
+
last_hour = get_datetime_from_now(days=0, hours=1)
|
41
43
|
self.executor = None
|
42
44
|
self._default_auth = bool(agent_uuid)
|
43
|
-
self._executor_refreshed_at =
|
45
|
+
self._executor_refreshed_at = last_hour
|
44
46
|
self._graceful_shutdown = False
|
45
|
-
self.
|
47
|
+
self._last_data_collected_at = last_hour
|
48
|
+
self._last_reconciled_at = last_hour
|
46
49
|
self.client = AgentClient(
|
47
50
|
owner=owner, agent_uuid=agent_uuid, is_async=self.IS_ASYNC
|
48
51
|
)
|
@@ -60,7 +63,7 @@ class BaseAgent:
|
|
60
63
|
|
61
64
|
def collect_agent_data(self):
|
62
65
|
logger.info("Collecting agent data.")
|
63
|
-
self.
|
66
|
+
self._last_data_collected_at = now()
|
64
67
|
try:
|
65
68
|
return self.client.collect_agent_data(
|
66
69
|
namespace=settings.CLIENT_CONFIG.namespace
|
@@ -79,14 +79,17 @@ class BaseSyncAgent(BaseAgent):
|
|
79
79
|
|
80
80
|
def reconcile(self):
|
81
81
|
if (
|
82
|
-
now() - self.
|
82
|
+
now() - self._last_data_collected_at
|
83
83
|
).total_seconds() > self.SLEEP_AGENT_DATA_COLLECT_TIME:
|
84
|
+
self.collect_agent_data()
|
85
|
+
if (
|
86
|
+
now() - self._last_reconciled_at
|
87
|
+
).total_seconds() < self.SLEEP_AGENT_DATA_RECONCILE_TIME:
|
84
88
|
return
|
85
89
|
|
86
|
-
# Collect data
|
87
|
-
self.collect_agent_data()
|
88
|
-
|
89
90
|
# Update reconcile
|
91
|
+
logger.info("Checking cluster state.")
|
92
|
+
self._last_reconciled_at = now()
|
90
93
|
namespaces = [settings.AGENT_CONFIG.namespace]
|
91
94
|
namespaces += settings.AGENT_CONFIG.additional_namespaces or []
|
92
95
|
ops = []
|
@@ -930,15 +930,23 @@ class BaseConverter:
|
|
930
930
|
|
931
931
|
# Add outputs
|
932
932
|
if plugins and plugins.collect_artifacts:
|
933
|
+
_artifacts_init_env = []
|
934
|
+
if log_level:
|
935
|
+
_artifacts_init_env.append(
|
936
|
+
self._get_env_var(name=ENV_KEYS_LOG_LEVEL, value=log_level)
|
937
|
+
)
|
938
|
+
proxy_env = self._get_proxy_env_vars(
|
939
|
+
settings.AGENT_CONFIG.use_proxy_env_vars_use_in_ops
|
940
|
+
)
|
941
|
+
if proxy_env:
|
942
|
+
_artifacts_init_env += proxy_env
|
933
943
|
containers += to_list(
|
934
944
|
self._get_artifacts_path_init_container(
|
935
945
|
polyaxon_init=polyaxon_init,
|
936
946
|
artifacts_store=artifacts_store,
|
937
947
|
run_path=self.run_path,
|
938
948
|
auto_resume=plugins.auto_resume,
|
939
|
-
env=
|
940
|
-
settings.AGENT_CONFIG.use_proxy_env_vars_use_in_ops
|
941
|
-
),
|
949
|
+
env=_artifacts_init_env,
|
942
950
|
),
|
943
951
|
check_none=True,
|
944
952
|
)
|
polyaxon/_schemas/lifecycle.py
CHANGED
@@ -185,7 +185,7 @@ class LifeCycle:
|
|
185
185
|
|
186
186
|
@classmethod
|
187
187
|
def is_pending(cls, status: str) -> bool:
|
188
|
-
"""Checks if a run with this status is in
|
188
|
+
"""Checks if a run with this status is in one of the pending(not compiled or queued yet) statuses."""
|
189
189
|
return status in cls.PENDING_VALUES
|
190
190
|
|
191
191
|
@classmethod
|
@@ -220,7 +220,7 @@ class LifeCycle:
|
|
220
220
|
|
221
221
|
@classmethod
|
222
222
|
def is_safe_stoppable(cls, status: str) -> bool:
|
223
|
-
"""Checks if a run with this status is
|
223
|
+
"""Checks if a run with this status is can be stopped without calling the operator."""
|
224
224
|
return status in cls.SAFE_STOP_VALUES
|
225
225
|
|
226
226
|
@classmethod
|
@@ -25,5 +25,5 @@ class V1Project(BaseAllowSchemaModel):
|
|
25
25
|
archived_deletion_interval: Optional[int]
|
26
26
|
settings: Optional[V1ProjectSettings]
|
27
27
|
role: Optional[StrictStr]
|
28
|
-
contributors: Optional[Dict[str, Any]]
|
28
|
+
contributors: Optional[List[Dict[str, Any]]]
|
29
29
|
live_state: Optional[int]
|
polyaxon/_sdk/schemas/v1_run.py
CHANGED
@@ -53,7 +53,7 @@ class V1Run(BaseAllowSchemaModel):
|
|
53
53
|
pipeline: Optional[V1Pipeline]
|
54
54
|
status_conditions: Optional[List[V1StatusCondition]]
|
55
55
|
role: Optional[StrictStr]
|
56
|
-
contributors: Optional[Dict[str, Any]]
|
56
|
+
contributors: Optional[List[Dict[str, Any]]]
|
57
57
|
settings: Optional[V1RunSettings]
|
58
58
|
resources: Optional[V1RunResources]
|
59
59
|
graph: Optional[Dict[str, Any]]
|
polyaxon/pkg.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: polyaxon
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.2.post1
|
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.
|
@@ -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-5/)
|
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=1xiR82_9p83IobjvvDYD5hxv7BybUhrugH3zWU7MXsk,268
|
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
|
@@ -38,7 +38,7 @@ 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=H4BgCJgeXYoh_GxXF-jHhCOHCsj0z6KH2h6DF7agje4,18172
|
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=O0nCxn4rqc5JwPYUXUJzceiap3rEqXY7kTqrwU5woEY,4588
|
@@ -265,7 +265,7 @@ polyaxon/_flow/schedules/interval.py,sha256=f8htwcdlMY0QhrIPzBAXrgxASkdvAPkBSzhf
|
|
265
265
|
polyaxon/_flow/templates/__init__.py,sha256=48uuXIvy3G10V2o5oWw9oztNIZt5yIAXcWjVxNhHwVI,2676
|
266
266
|
polyaxon/_flow/termination/__init__.py,sha256=MLO-LxCNSEDJDYQihjh8_uTIxs6w2y-MNcLPau7nugY,3496
|
267
267
|
polyaxon/_fs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
268
|
-
polyaxon/_fs/async_manager.py,sha256=
|
268
|
+
polyaxon/_fs/async_manager.py,sha256=xSGTHQw_pfNobGcsNjx_7Sry0Yv6AfXqDiVhqsxK2gQ,10757
|
269
269
|
polyaxon/_fs/fs.py,sha256=LXVmpOGAYayl5RZVrrE8nf3w7ILEJ4SSUtx621DKGYE,3412
|
270
270
|
polyaxon/_fs/manager.py,sha256=DjhGHRHEUd7Oj-pS4uhfYxCpJJAwP7tt5Xu0KWZqDik,991
|
271
271
|
polyaxon/_fs/tar.py,sha256=1Gk9HwhdwPlG7r2ZuXuaPAMu4q_eYqPe9MSQibYuf_E,891
|
@@ -398,10 +398,10 @@ polyaxon/_polyaxonfile/specs/compiled_operation.py,sha256=9F_4iajgjf8lR3gVC08tT-
|
|
398
398
|
polyaxon/_polyaxonfile/specs/component.py,sha256=EU7KndS18mTVUmsYdiKpNaVnjzn6DAOl1qfw4GKayyU,361
|
399
399
|
polyaxon/_polyaxonfile/specs/kinds.py,sha256=_5XqP-K6PACWjwL8Ak43fgMbcJAQAhIHQNRAJsNghvE,141
|
400
400
|
polyaxon/_polyaxonfile/specs/operation.py,sha256=JIV1o-4o2AeqUAXnWq1AXuxeezQC-NA2EW2sacw8oYs,4443
|
401
|
-
polyaxon/_polyaxonfile/specs/sections.py,sha256=
|
401
|
+
polyaxon/_polyaxonfile/specs/sections.py,sha256=f0nVkG42eb4CdChIWj51QToJuQWiQ09neUIpT-Y2Y30,2417
|
402
402
|
polyaxon/_polyaxonfile/specs/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
403
403
|
polyaxon/_polyaxonfile/specs/libs/engine.py,sha256=4wR-LbX5BehTPCnF1oHGPgqNZn6LztuFcs7_wm0OqpY,373
|
404
|
-
polyaxon/_polyaxonfile/specs/libs/parser.py,sha256=
|
404
|
+
polyaxon/_polyaxonfile/specs/libs/parser.py,sha256=2M9QU0hFoQMmXnBl82vNQNyvvTNr1kUjyAmKDbWznJQ,10416
|
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
|
@@ -411,12 +411,12 @@ polyaxon/_runner/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,
|
|
411
411
|
polyaxon/_runner/executor.py,sha256=Ln5fhc3MGk4cOg0VenbiFh80rWR-dj4t3ll7XXR-2v8,8297
|
412
412
|
polyaxon/_runner/kinds.py,sha256=IhEL-HfztpDU4wUA7z8koQwN1Z32g2q57iDiiT9YZ40,132
|
413
413
|
polyaxon/_runner/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
414
|
-
polyaxon/_runner/agent/async_agent.py,sha256=
|
415
|
-
polyaxon/_runner/agent/base_agent.py,sha256=
|
414
|
+
polyaxon/_runner/agent/async_agent.py,sha256=HMHrSQrz8h_8glFLyv3VwqiGksXan0uuHtu2Ak0mfKA,15689
|
415
|
+
polyaxon/_runner/agent/base_agent.py,sha256=d3lYR0p4VFbCBDVCl6CMXzKBFJbIE9EERvviQRaIZRg,7498
|
416
416
|
polyaxon/_runner/agent/client.py,sha256=Nnu3zy9dh8w5W9QYjcITytMNtP5WAeqh0_97yYF1ByI,5485
|
417
|
-
polyaxon/_runner/agent/sync_agent.py,sha256=
|
417
|
+
polyaxon/_runner/agent/sync_agent.py,sha256=2vEjd4Bd-MNdNTuvMpCDGk7e1gXzKrK8xMaNfpDvvDM,14787
|
418
418
|
polyaxon/_runner/converter/__init__.py,sha256=I6njdCBfyW_Pt1tvxIcpD1Eiy4Vs46QtQpbABgYjyoY,63
|
419
|
-
polyaxon/_runner/converter/converter.py,sha256=
|
419
|
+
polyaxon/_runner/converter/converter.py,sha256=bNHP_uunnWgpyWrtwetnAmIDRotOrH3kp6mtbtZ2MlQ,38313
|
420
420
|
polyaxon/_runner/converter/types.py,sha256=Sg8BaqSEHHwUzeG_MP5gv-j9NPiL1IdUpcOlkJQLZzI,567
|
421
421
|
polyaxon/_runner/converter/common/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
422
422
|
polyaxon/_runner/converter/common/constants.py,sha256=D5batbx4p8UwQNX3oFbZHPQ6Ln3tUtBEIH02GezaUB0,201
|
@@ -440,7 +440,7 @@ polyaxon/_schemas/compatibility.py,sha256=qNNYxkOr5crVJFny_Bc3e0xDt9O8A51rWcX_8T
|
|
440
440
|
polyaxon/_schemas/container_resources.py,sha256=aZ4XZn0uwCbVGnyhfpAB8Ejs8miNJpwmhVxgs7dC_38,1401
|
441
441
|
polyaxon/_schemas/home.py,sha256=3RFrNvgXeCEVWMGbQ_WtnBqP6aAczeDktyUW4h7u6Pk,510
|
442
442
|
polyaxon/_schemas/installation.py,sha256=thpf0W0jE6DWNHUyuOePHzx-M4_qVFC4N6PeBauzokg,425
|
443
|
-
polyaxon/_schemas/lifecycle.py,sha256=
|
443
|
+
polyaxon/_schemas/lifecycle.py,sha256=M2Cc3ia3_zjMleqivlNIlpyEE_wzeQ_gLgOuAulnhlo,11664
|
444
444
|
polyaxon/_schemas/log_handler.py,sha256=kws7k8pZrdeHqkn1dE54bdlGst-cjxe2qk9zL0LX3d8,430
|
445
445
|
polyaxon/_schemas/services.py,sha256=J3mr-7xj52I5s5JHlaq2pYeCocqvH6GgV8WP6EfshKY,1481
|
446
446
|
polyaxon/_schemas/user.py,sha256=kTtPQdvFoeDca5v5Esf9lnIuVThXPNj99QBziTRyn6w,341
|
@@ -526,11 +526,11 @@ polyaxon/_sdk/schemas/v1_organization_member.py,sha256=ww8icQ-Z4E09fhoMLT7oxtAWk
|
|
526
526
|
polyaxon/_sdk/schemas/v1_password_change.py,sha256=gKqrwN-f4beEJGFOnrpsWuw2tRUYWRcQeSD3hrzZ5eQ,295
|
527
527
|
polyaxon/_sdk/schemas/v1_pipeline.py,sha256=hPhg5Bwz6oacOjDvYgBhjP_Vk3lR0N9BH1eevrqnrB8,349
|
528
528
|
polyaxon/_sdk/schemas/v1_preset.py,sha256=qTZlI0RXZBvWYjvvw8raiMGxkceNDJDPIsSLYYSd0QA,770
|
529
|
-
polyaxon/_sdk/schemas/v1_project.py,sha256=
|
529
|
+
polyaxon/_sdk/schemas/v1_project.py,sha256=hfK-f_LNPVMti5BDTqf6SUS6L1QX0U9PvXRUV62-Hnc,957
|
530
530
|
polyaxon/_sdk/schemas/v1_project_settings.py,sha256=5ITp9NZRbewyrXf2Mcy9zOue7_51-mbAp9ObZEH7Pl0,669
|
531
|
-
polyaxon/_sdk/schemas/v1_project_version.py,sha256
|
531
|
+
polyaxon/_sdk/schemas/v1_project_version.py,sha256=-aYy00sL6hwVD9xmoRWN7GHVXFaz-pHzSKoWwTyVX0g,1073
|
532
532
|
polyaxon/_sdk/schemas/v1_queue.py,sha256=FrRSqdrg8TxgW_vWvpua8tUtVLqvG5YdJqrRT-Wb1fc,654
|
533
|
-
polyaxon/_sdk/schemas/v1_run.py,sha256=
|
533
|
+
polyaxon/_sdk/schemas/v1_run.py,sha256=Psr0Sn9a9dL7LXN1o6GfngqQHlY8sIjbDkdnee4rm3M,2028
|
534
534
|
polyaxon/_sdk/schemas/v1_run_connection.py,sha256=C2-cO4XgMFYsWI0YTpmyX3yGEczKoKOYFuboM8yPvSQ,306
|
535
535
|
polyaxon/_sdk/schemas/v1_run_edge.py,sha256=Yb7qqNJa49zIv8ond-EAUfrfHiJGKmoHVCoGGoORzYw,456
|
536
536
|
polyaxon/_sdk/schemas/v1_run_edge_lineage.py,sha256=ziBmqEH499DVjd6KiX2UZv2PJbgzsn_GfruvdAgn0Co,318
|
@@ -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.5.
|
615
|
-
polyaxon-2.5.
|
616
|
-
polyaxon-2.5.
|
617
|
-
polyaxon-2.5.
|
618
|
-
polyaxon-2.5.
|
619
|
-
polyaxon-2.5.
|
614
|
+
polyaxon-2.5.2.post1.dist-info/LICENSE,sha256=86kroZbQUDsmSWOomB7dpceG65UXiVSPob4581tStBc,11349
|
615
|
+
polyaxon-2.5.2.post1.dist-info/METADATA,sha256=tYp_-H-V_lFp2Fs3piJhWO28Kmb7FK0Qlm0Glo7xOTM,11667
|
616
|
+
polyaxon-2.5.2.post1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
617
|
+
polyaxon-2.5.2.post1.dist-info/entry_points.txt,sha256=aFbUMjkg9vzRBVAFhqvR1m92yG8Cov7UAF0zViGfoQw,70
|
618
|
+
polyaxon-2.5.2.post1.dist-info/top_level.txt,sha256=I_2e_Vv8rdcqWcMMdZocbrHiKPNGqoSMBqIObrw00Rg,22
|
619
|
+
polyaxon-2.5.2.post1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|