flyte 0.2.0b18__py3-none-any.whl → 0.2.0b20__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.
Potentially problematic release.
This version of flyte might be problematic. Click here for more details.
- flyte/_code_bundle/bundle.py +2 -2
- flyte/_deploy.py +2 -3
- flyte/_image.py +101 -65
- flyte/_initialize.py +9 -1
- flyte/_internal/imagebuild/__init__.py +4 -0
- flyte/_internal/imagebuild/docker_builder.py +57 -24
- flyte/_internal/imagebuild/image_builder.py +69 -42
- flyte/_internal/imagebuild/remote_builder.py +259 -0
- flyte/_protos/imagebuilder/definition_pb2.py +59 -0
- flyte/_protos/imagebuilder/definition_pb2.pyi +140 -0
- flyte/_protos/imagebuilder/definition_pb2_grpc.py +4 -0
- flyte/_protos/imagebuilder/payload_pb2.py +32 -0
- flyte/_protos/imagebuilder/payload_pb2.pyi +21 -0
- flyte/_protos/imagebuilder/payload_pb2_grpc.py +4 -0
- flyte/_protos/imagebuilder/service_pb2.py +29 -0
- flyte/_protos/imagebuilder/service_pb2.pyi +5 -0
- flyte/_protos/imagebuilder/service_pb2_grpc.py +66 -0
- flyte/_run.py +20 -8
- flyte/_task_environment.py +1 -0
- flyte/_version.py +2 -2
- flyte/cli/__init__.py +9 -0
- flyte/cli/_create.py +15 -0
- flyte/config/_config.py +30 -2
- flyte/config/_internal.py +8 -0
- flyte/config/_reader.py +0 -3
- flyte/extras/_container.py +2 -2
- flyte/remote/_data.py +2 -0
- flyte/remote/_run.py +5 -4
- flyte/remote/_task.py +35 -7
- {flyte-0.2.0b18.dist-info → flyte-0.2.0b20.dist-info}/METADATA +1 -1
- {flyte-0.2.0b18.dist-info → flyte-0.2.0b20.dist-info}/RECORD +34 -25
- {flyte-0.2.0b18.dist-info → flyte-0.2.0b20.dist-info}/WHEEL +0 -0
- {flyte-0.2.0b18.dist-info → flyte-0.2.0b20.dist-info}/entry_points.txt +0 -0
- {flyte-0.2.0b18.dist-info → flyte-0.2.0b20.dist-info}/top_level.txt +0 -0
flyte/remote/_task.py
CHANGED
|
@@ -13,7 +13,7 @@ import flyte.errors
|
|
|
13
13
|
from flyte._context import internal_ctx
|
|
14
14
|
from flyte._initialize import ensure_client, get_client, get_common_config
|
|
15
15
|
from flyte._logging import logger
|
|
16
|
-
from flyte._protos.common import list_pb2
|
|
16
|
+
from flyte._protos.common import identifier_pb2, list_pb2
|
|
17
17
|
from flyte._protos.workflow import task_definition_pb2, task_service_pb2
|
|
18
18
|
from flyte.models import NativeInterface
|
|
19
19
|
from flyte.syncify import syncify
|
|
@@ -83,14 +83,22 @@ class TaskDetails:
|
|
|
83
83
|
pb2: task_definition_pb2.TaskDetails
|
|
84
84
|
|
|
85
85
|
@classmethod
|
|
86
|
-
def get(
|
|
86
|
+
def get(
|
|
87
|
+
cls,
|
|
88
|
+
name: str,
|
|
89
|
+
project: str | None,
|
|
90
|
+
domain: str | None,
|
|
91
|
+
version: str | None = None,
|
|
92
|
+
auto_version: AutoVersioning | None = None,
|
|
93
|
+
) -> LazyEntity:
|
|
87
94
|
"""
|
|
88
95
|
Get a task by its ID or name. If both are provided, the ID will take precedence.
|
|
89
96
|
|
|
90
97
|
Either version or auto_version are required parameters.
|
|
91
98
|
|
|
92
|
-
:param uri: The URI of the task. If provided, do not provide the rest of the parameters.
|
|
93
99
|
:param name: The name of the task.
|
|
100
|
+
:param project: The project of the task.
|
|
101
|
+
:param domain: The domain of the task.
|
|
94
102
|
:param version: The version of the task.
|
|
95
103
|
:param auto_version: If set to "latest", the latest-by-time ordered from now, version of the task will be used.
|
|
96
104
|
If set to "current", the version will be derived from the callee tasks context. This is useful if you are
|
|
@@ -110,6 +118,8 @@ class TaskDetails:
|
|
|
110
118
|
tasks = []
|
|
111
119
|
async for x in Task.listall.aio(
|
|
112
120
|
by_task_name=name,
|
|
121
|
+
project=project,
|
|
122
|
+
domain=domain,
|
|
113
123
|
sort_by=("created_at", "desc"),
|
|
114
124
|
limit=1,
|
|
115
125
|
):
|
|
@@ -125,8 +135,8 @@ class TaskDetails:
|
|
|
125
135
|
cfg = get_common_config()
|
|
126
136
|
task_id = task_definition_pb2.TaskIdentifier(
|
|
127
137
|
org=cfg.org,
|
|
128
|
-
project=cfg.project,
|
|
129
|
-
domain=cfg.domain,
|
|
138
|
+
project=project or cfg.project,
|
|
139
|
+
domain=domain or cfg.domain,
|
|
130
140
|
name=name,
|
|
131
141
|
version=_version,
|
|
132
142
|
)
|
|
@@ -303,26 +313,37 @@ class Task:
|
|
|
303
313
|
return self.pb2.task_id.version
|
|
304
314
|
|
|
305
315
|
@classmethod
|
|
306
|
-
def get(
|
|
316
|
+
def get(
|
|
317
|
+
cls,
|
|
318
|
+
name: str,
|
|
319
|
+
project: str | None = None,
|
|
320
|
+
domain: str | None = None,
|
|
321
|
+
version: str | None = None,
|
|
322
|
+
auto_version: AutoVersioning | None = None,
|
|
323
|
+
) -> LazyEntity:
|
|
307
324
|
"""
|
|
308
325
|
Get a task by its ID or name. If both are provided, the ID will take precedence.
|
|
309
326
|
|
|
310
327
|
Either version or auto_version are required parameters.
|
|
311
328
|
|
|
312
329
|
:param name: The name of the task.
|
|
330
|
+
:param project: The project of the task.
|
|
331
|
+
:param domain: The domain of the task.
|
|
313
332
|
:param version: The version of the task.
|
|
314
333
|
:param auto_version: If set to "latest", the latest-by-time ordered from now, version of the task will be used.
|
|
315
334
|
If set to "current", the version will be derived from the callee tasks context. This is useful if you are
|
|
316
335
|
deploying all environments with the same version. If auto_version is current, you can only access the task from
|
|
317
336
|
within a task context.
|
|
318
337
|
"""
|
|
319
|
-
return TaskDetails.get(name, version=version, auto_version=auto_version)
|
|
338
|
+
return TaskDetails.get(name, project=project, domain=domain, version=version, auto_version=auto_version)
|
|
320
339
|
|
|
321
340
|
@syncify
|
|
322
341
|
@classmethod
|
|
323
342
|
async def listall(
|
|
324
343
|
cls,
|
|
325
344
|
by_task_name: str | None = None,
|
|
345
|
+
project: str | None = None,
|
|
346
|
+
domain: str | None = None,
|
|
326
347
|
sort_by: Tuple[str, Literal["asc", "desc"]] | None = None,
|
|
327
348
|
limit: int = 100,
|
|
328
349
|
) -> Union[AsyncIterator[Task], Iterator[Task]]:
|
|
@@ -330,6 +351,8 @@ class Task:
|
|
|
330
351
|
Get all runs for the current project and domain.
|
|
331
352
|
|
|
332
353
|
:param by_task_name: If provided, only tasks with this name will be returned.
|
|
354
|
+
:param project: The project to filter tasks by. If None, the current project will be used.
|
|
355
|
+
:param domain: The domain to filter tasks by. If None, the current domain will be used.
|
|
333
356
|
:param sort_by: The sorting criteria for the project list, in the format (field, order).
|
|
334
357
|
:param limit: The maximum number of tasks to return.
|
|
335
358
|
:return: An iterator of runs.
|
|
@@ -358,6 +381,11 @@ class Task:
|
|
|
358
381
|
resp = await get_client().task_service.ListTasks(
|
|
359
382
|
task_service_pb2.ListTasksRequest(
|
|
360
383
|
org=cfg.org,
|
|
384
|
+
project_id=identifier_pb2.ProjectIdentifier(
|
|
385
|
+
organization=cfg.org,
|
|
386
|
+
domain=domain or cfg.domain,
|
|
387
|
+
name=project or cfg.project,
|
|
388
|
+
),
|
|
361
389
|
request=list_pb2.ListRequest(
|
|
362
390
|
sort_by=sort_pb2,
|
|
363
391
|
filters=filters,
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
flyte/__init__.py,sha256=VjIdD4AyX7mYNoWDSqZ6tmNKo14ZFwfToKeb49SB60U,1733
|
|
2
2
|
flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
|
|
3
3
|
flyte/_context.py,sha256=K0-TCt-_pHOoE5Xni87_8uIe2vCBOhfNQEtjGT4Hu4k,5239
|
|
4
|
-
flyte/_deploy.py,sha256=
|
|
4
|
+
flyte/_deploy.py,sha256=HU2ksZUvHj77DrJm7MryN0n26DUJqo4h7-op4fUTBUg,9593
|
|
5
5
|
flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
|
|
6
6
|
flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
|
|
7
7
|
flyte/_environment.py,sha256=dmIFmFLRIklOEYL9gsP2IH3-MYcjHYyyOlqlcf3E6_A,2924
|
|
8
8
|
flyte/_excepthook.py,sha256=nXts84rzEg6-7RtFarbKzOsRZTQR4plnbWVIFMAEprs,1310
|
|
9
9
|
flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
|
|
10
10
|
flyte/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
|
|
11
|
-
flyte/_image.py,sha256=
|
|
12
|
-
flyte/_initialize.py,sha256=
|
|
11
|
+
flyte/_image.py,sha256=jnMJujIOCHkzot5KnCW1pglARNlkwv02PLA4GTD0qhs,29724
|
|
12
|
+
flyte/_initialize.py,sha256=xKl_LYMluRt21wWqa6RTKuLo0_DCbSaTfUk27_brtNk,18232
|
|
13
13
|
flyte/_interface.py,sha256=1B9zIwFDjiVp_3l_mk8EpA4g3Re-6DUBEBi9z9vDvPs,3504
|
|
14
14
|
flyte/_logging.py,sha256=_yNo-Nx2yzh0MLoZGbnIYHGKei4wtQmSGM0lE30Ev7w,3662
|
|
15
15
|
flyte/_map.py,sha256=efPd8O-JKUg1OY3_MzU3KGbhsGYDVRNBwWr0ceNIXhQ,7444
|
|
@@ -17,14 +17,14 @@ flyte/_pod.py,sha256=lNaQuWX22QG6Xji7-8GpuKUkqCmVFaRxOVU-eUEa-Vk,637
|
|
|
17
17
|
flyte/_resources.py,sha256=UOLyEVhdxolvrHhddiBbYdJuE1RkM_l7xeS9G1abe6M,7583
|
|
18
18
|
flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
19
19
|
flyte/_reusable_environment.py,sha256=P4FBATVKAYcIKpdFN98sI8acPyKy8eIGx6V0kUb9YdM,1289
|
|
20
|
-
flyte/_run.py,sha256=
|
|
20
|
+
flyte/_run.py,sha256=HDObXGfZKBafebuh1OR5e1NWLUSbBDcceIz3kX2GMss,22828
|
|
21
21
|
flyte/_secret.py,sha256=SqIHs6mi8hEkIIBZe3bI9jJsPt65Mt6dV5uh9_op1ME,2392
|
|
22
22
|
flyte/_task.py,sha256=-3VLSROj8g3-ZWzV272Ww7mt5yIeA753kmpNyr75I58,18087
|
|
23
|
-
flyte/_task_environment.py,sha256=
|
|
23
|
+
flyte/_task_environment.py,sha256=B493b54xpnNFNtHek3cmT4XuNiPNVf2gx9Yylyb1ncw,6905
|
|
24
24
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
25
25
|
flyte/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
|
|
26
26
|
flyte/_trace.py,sha256=C788bgoSc3st8kE8Cae2xegnLx2CT6uuRKKfaDrDUys,5122
|
|
27
|
-
flyte/_version.py,sha256=
|
|
27
|
+
flyte/_version.py,sha256=2zwM42jgtTbQ5nghDiGlcpIjWP03pWSRnSChl7LzXQc,521
|
|
28
28
|
flyte/errors.py,sha256=skXcdexLisFZFcTnUmMvMmuh4Ty96oJkyLKaipzkyeI,4954
|
|
29
29
|
flyte/models.py,sha256=my7Vxo-NK6gHGahyqtHr42wYjPGw0nl2SGBBoSb6hIc,14733
|
|
30
30
|
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -38,7 +38,7 @@ flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBX
|
|
|
38
38
|
flyte/_code_bundle/_ignore.py,sha256=Tfaoa62CQVTH17kBHD6Xv6xEh1FhcAyvXivl9m-MEE0,3853
|
|
39
39
|
flyte/_code_bundle/_packaging.py,sha256=5QUuea6kg9s-ebBg7gFAHaxOMchxR5MhTQ8KohWsjPk,6909
|
|
40
40
|
flyte/_code_bundle/_utils.py,sha256=b0s3ZVKSRwaa_2CMTCqt2iRrUvTTW3FmlyqCD9k5BS0,12028
|
|
41
|
-
flyte/_code_bundle/bundle.py,sha256=
|
|
41
|
+
flyte/_code_bundle/bundle.py,sha256=nUAwYTVAE3Z9dfgkBtsqCoKJImjSl4AicG36yweWHLc,8797
|
|
42
42
|
flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
|
|
43
43
|
flyte/_internal/controllers/__init__.py,sha256=5CBnS9lb1VFMzZuRXUiaPhlN3G9qh7Aq9kTwxW5hsRw,4301
|
|
44
44
|
flyte/_internal/controllers/_local_controller.py,sha256=Wpgtd50C_ovIHpQSZC6asQc7iKyKIraEf-MAHCwcNJI,7124
|
|
@@ -50,10 +50,10 @@ flyte/_internal/controllers/remote/_controller.py,sha256=G4gEUl-2f4FqACz3IK7sK0-
|
|
|
50
50
|
flyte/_internal/controllers/remote/_core.py,sha256=UKjiL3dGidXcR1dPzJswn67g38HQmVXV7n0zoX_8AZY,18422
|
|
51
51
|
flyte/_internal/controllers/remote/_informer.py,sha256=StiPcQLLW0h36uEBhKsupMY79EeFCKA3QQzvv2IyvRo,14188
|
|
52
52
|
flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
|
|
53
|
-
flyte/_internal/imagebuild/__init__.py,sha256=
|
|
54
|
-
flyte/_internal/imagebuild/docker_builder.py,sha256=
|
|
55
|
-
flyte/_internal/imagebuild/image_builder.py,sha256=
|
|
56
|
-
flyte/_internal/imagebuild/remote_builder.py,sha256=
|
|
53
|
+
flyte/_internal/imagebuild/__init__.py,sha256=4fPz5RN3QB1DGw5O2sZo7x71F3EWhyE1jmCCqy4iezk,573
|
|
54
|
+
flyte/_internal/imagebuild/docker_builder.py,sha256=LIfqtLQ4NVxkjgWlASiIi_xqvxhztlUDTVt4P7McLDo,15946
|
|
55
|
+
flyte/_internal/imagebuild/image_builder.py,sha256=dXBXl62qcPabus6dR3eP8P9mBGNhpZHZ2Xm12AymKkk,11150
|
|
56
|
+
flyte/_internal/imagebuild/remote_builder.py,sha256=wm-D3xhdrk8OSQxeyI0nfMpw3P1gW7mqDKAOKOnwY6o,10089
|
|
57
57
|
flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
58
|
flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3Ck3mTlTsm66UI,1973
|
|
59
59
|
flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
|
|
@@ -88,6 +88,15 @@ flyte/_protos/common/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXq
|
|
|
88
88
|
flyte/_protos/common/runtime_version_pb2.py,sha256=djTmB3fRv2V0IV6Jzz4mtmHvEuEK4KPCkJWdRcW3DUQ,2012
|
|
89
89
|
flyte/_protos/common/runtime_version_pb2.pyi,sha256=pPQ9qVtfvE1sGhdZo47aThk2quLtXOOywRhYXFp-Kzg,1132
|
|
90
90
|
flyte/_protos/common/runtime_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
91
|
+
flyte/_protos/imagebuilder/definition_pb2.py,sha256=F5ZuNWfj4pV4m32eXQvRAeCtKCYyiOIiu8P9foRgJe0,6204
|
|
92
|
+
flyte/_protos/imagebuilder/definition_pb2.pyi,sha256=XFqU2GiajohvO8UlbFdTyXedK7MzeOPC1dXEVTqDnHE,6368
|
|
93
|
+
flyte/_protos/imagebuilder/definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
94
|
+
flyte/_protos/imagebuilder/payload_pb2.py,sha256=CwlIgDS3aP-9fcNPnkLBhGvHMvy14YJahrlAx1DY6M0,2411
|
|
95
|
+
flyte/_protos/imagebuilder/payload_pb2.pyi,sha256=67PTfjzvozDcLDeE4aFdUf27CmHiKKc9FlI_RW0G94A,1002
|
|
96
|
+
flyte/_protos/imagebuilder/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
97
|
+
flyte/_protos/imagebuilder/service_pb2.py,sha256=mDmwsjYZAP_TQisdRQOq3hu1CtdjyqqHpIwvh96o0uI,2003
|
|
98
|
+
flyte/_protos/imagebuilder/service_pb2.pyi,sha256=VtgJsGavjjVjxdMJQ2OiA2EckDOoPn1DSzKZ-Nfgzf4,202
|
|
99
|
+
flyte/_protos/imagebuilder/service_pb2_grpc.py,sha256=zAmG2jku0e_uRzjcncuy49-7qOZQTxcPCJYJLHD9BSU,2620
|
|
91
100
|
flyte/_protos/logs/dataplane/payload_pb2.py,sha256=3AqZl3EzNtGZcc5hDxPoP_QQRz1pbCeI-vCcoUyT_U4,12114
|
|
92
101
|
flyte/_protos/logs/dataplane/payload_pb2.pyi,sha256=KuuIIpTUpXR-HVwKc9kqUvs1cRyMQzFhERdr3GUGTeA,9714
|
|
93
102
|
flyte/_protos/logs/dataplane/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
@@ -141,11 +150,11 @@ flyte/_utils/helpers.py,sha256=9N70yzfLF4lLGEEdOv5OcweEpYtrCvZqqhtzkjZUXNY,4779
|
|
|
141
150
|
flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
|
|
142
151
|
flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
|
|
143
152
|
flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
144
|
-
flyte/cli/__init__.py,sha256=
|
|
153
|
+
flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
|
|
145
154
|
flyte/cli/_abort.py,sha256=Ty-63Gtd2PUn6lCuL5AaasfBoPu7TDSU5EQKVbkF4qw,661
|
|
146
155
|
flyte/cli/_build.py,sha256=SBgybTVWOZ22VBHFL8CVFB_oo34lF9wvlwNirYFFyk0,3543
|
|
147
156
|
flyte/cli/_common.py,sha256=CFBmdc0c59XqWb7PuZfLr7Z55HXnlqKaxDCq1sgY9MU,11115
|
|
148
|
-
flyte/cli/_create.py,sha256=
|
|
157
|
+
flyte/cli/_create.py,sha256=8U4kePYmfW02j54184IurNYiTGvjdr3J-ERQM9goHdg,4715
|
|
149
158
|
flyte/cli/_delete.py,sha256=VTmXv09PBjkdtyl23mbSjIQQlN7Y1AI_bO0GkHP-f9E,546
|
|
150
159
|
flyte/cli/_deploy.py,sha256=Zxm7vn1zrqmll73CJTiVGYJI95P-XBI1AlhOlmbmkD0,4635
|
|
151
160
|
flyte/cli/_gen.py,sha256=vlE5l8UR1zz4RSdaRyUfYFvGR0TLxGcTYcP4dhA3Pvg,5458
|
|
@@ -154,12 +163,12 @@ flyte/cli/_params.py,sha256=cDeTvjOQP8EydVJUrncLeAxUaHvGorJyDvMSrAxapmM,19466
|
|
|
154
163
|
flyte/cli/_run.py,sha256=fyxGt5ZbW84EcjPVJq5ADK4254kzYHUa2ggp7MRKarI,7776
|
|
155
164
|
flyte/cli/main.py,sha256=7P8nBWvme7beBola5Oo-tHgn9ydWIA-J3w5XH_ORImM,4836
|
|
156
165
|
flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
|
|
157
|
-
flyte/config/_config.py,sha256=
|
|
158
|
-
flyte/config/_internal.py,sha256=
|
|
159
|
-
flyte/config/_reader.py,sha256=
|
|
166
|
+
flyte/config/_config.py,sha256=WElU--Kw4MM9zx1v-rLD8qYu2T5Zk0-1QbTpkEc27bc,10779
|
|
167
|
+
flyte/config/_internal.py,sha256=LMcAtDjvTjf5bGlsJVxPuLxQQ82mLd00xK5-JlYGCi8,2989
|
|
168
|
+
flyte/config/_reader.py,sha256=K_ZAxSbXVmswMmMtObQWnTw398r6EcwyHOg2i7bp2Cs,7037
|
|
160
169
|
flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
170
|
flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
|
|
162
|
-
flyte/extras/_container.py,sha256=
|
|
171
|
+
flyte/extras/_container.py,sha256=kxwiMltfMizjOKmsXYQ-rLOCHmX-TCCeJRM7ukuHoOg,11367
|
|
163
172
|
flyte/io/__init__.py,sha256=F7hlpin_1JJjsdFZSn7_jQgltPzsjETX1DCYGz-ELqI,629
|
|
164
173
|
flyte/io/_dir.py,sha256=rih9CY1YjNX05bcAu5LG62Xoyij5GXAlv7jLyVF0je8,15310
|
|
165
174
|
flyte/io/_file.py,sha256=kp5700SKPy5htmMhm4hE2ybb99Ykny1b0Kwm3huCWXs,15572
|
|
@@ -168,12 +177,12 @@ flyte/io/_structured_dataset/basic_dfs.py,sha256=D0QzcaMBO_R2s9Oi9mDqiykkBp0kgi-
|
|
|
168
177
|
flyte/io/_structured_dataset/structured_dataset.py,sha256=ddRjz36RhNxIy0gakzdLStBzoo4cAOgXbNqiqt5YhMI,52645
|
|
169
178
|
flyte/remote/__init__.py,sha256=h0J9W1yWbvPq2R9HXa_HezJtxHoWl6d9QKQbuuKDMnU,597
|
|
170
179
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
171
|
-
flyte/remote/_data.py,sha256=
|
|
180
|
+
flyte/remote/_data.py,sha256=h3oR2ZmwOEg6HpWyYVbVcHBs8_LX2RmRolHxgwBjlQE,6121
|
|
172
181
|
flyte/remote/_logs.py,sha256=EOXg4OS8yYclsT6NASgOLMo0TA2sZpKb2MWZXpWBPuI,6404
|
|
173
182
|
flyte/remote/_project.py,sha256=dTBYqORDAbLvh9WnPO1Ytuzw2vxNYZwwNsKE2_b0o14,2807
|
|
174
|
-
flyte/remote/_run.py,sha256=
|
|
183
|
+
flyte/remote/_run.py,sha256=yIFMydcZu57sTZ45_MKJBK_igvmZ_T50j65WCL_0lCw,31573
|
|
175
184
|
flyte/remote/_secret.py,sha256=l5xeMS83uMcWWeSSTRsSZUNhS0N--1Dze09C-thSOQs,4341
|
|
176
|
-
flyte/remote/_task.py,sha256=
|
|
185
|
+
flyte/remote/_task.py,sha256=pIQ2pIIcaEaOo5J1ua3eRlj9NAue9WOSyw64f1-A2oY,15183
|
|
177
186
|
flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
187
|
flyte/remote/_client/_protocols.py,sha256=JyBWHs5WsVOxEDUyG9X7wPLDzzzjkoaNhJlU-X4YlN0,5599
|
|
179
188
|
flyte/remote/_client/controlplane.py,sha256=FsOfj4rO4MIMnYrpAT53F8q588VVf5t4sDuwoPuc840,3102
|
|
@@ -212,8 +221,8 @@ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
|
212
221
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
213
222
|
flyte/types/_type_engine.py,sha256=CCjpqXNX2BMza2cKq42hJXwabWy8GWsimsgiGZJ_00M,96583
|
|
214
223
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
215
|
-
flyte-0.2.
|
|
216
|
-
flyte-0.2.
|
|
217
|
-
flyte-0.2.
|
|
218
|
-
flyte-0.2.
|
|
219
|
-
flyte-0.2.
|
|
224
|
+
flyte-0.2.0b20.dist-info/METADATA,sha256=CiRUMUNThKu0qQUN5XxdtVgPnRUv8flBIGyQpqh2Tsg,5850
|
|
225
|
+
flyte-0.2.0b20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
226
|
+
flyte-0.2.0b20.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
227
|
+
flyte-0.2.0b20.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
228
|
+
flyte-0.2.0b20.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|