flyte 0.2.0b10__py3-none-any.whl → 0.2.0b12__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/__init__.py +2 -0
- flyte/_bin/runtime.py +17 -5
- flyte/_deploy.py +29 -0
- flyte/_initialize.py +21 -6
- flyte/_internal/controllers/_local_controller.py +2 -1
- flyte/_internal/controllers/_trace.py +1 -0
- flyte/_internal/controllers/remote/_action.py +1 -1
- flyte/_internal/controllers/remote/_informer.py +1 -1
- flyte/_internal/runtime/convert.py +7 -4
- flyte/_internal/runtime/task_serde.py +80 -10
- flyte/_internal/runtime/taskrunner.py +1 -1
- flyte/_logging.py +1 -1
- flyte/_pod.py +19 -0
- flyte/_protos/common/list_pb2.py +3 -3
- flyte/_protos/common/list_pb2.pyi +2 -0
- flyte/_protos/workflow/environment_pb2.py +29 -0
- flyte/_protos/workflow/environment_pb2.pyi +12 -0
- flyte/_protos/workflow/environment_pb2_grpc.py +4 -0
- flyte/_protos/workflow/run_definition_pb2.py +61 -61
- flyte/_protos/workflow/run_definition_pb2.pyi +4 -2
- flyte/_protos/workflow/run_service_pb2.py +20 -24
- flyte/_protos/workflow/run_service_pb2.pyi +2 -6
- flyte/_protos/workflow/task_definition_pb2.py +28 -22
- flyte/_protos/workflow/task_definition_pb2.pyi +16 -4
- flyte/_protos/workflow/task_service_pb2.py +27 -11
- flyte/_protos/workflow/task_service_pb2.pyi +29 -1
- flyte/_protos/workflow/task_service_pb2_grpc.py +34 -0
- flyte/_task.py +2 -13
- flyte/_trace.py +0 -2
- flyte/_utils/__init__.py +4 -0
- flyte/_utils/org_discovery.py +57 -0
- flyte/_version.py +2 -2
- flyte/cli/_abort.py +4 -2
- flyte/cli/_common.py +10 -4
- flyte/cli/_create.py +17 -8
- flyte/cli/_deploy.py +14 -7
- flyte/cli/_get.py +11 -10
- flyte/cli/_params.py +1 -1
- flyte/cli/_run.py +1 -1
- flyte/cli/main.py +3 -7
- flyte/errors.py +11 -0
- flyte/extras/_container.py +0 -7
- flyte/remote/__init__.py +2 -1
- flyte/remote/_client/_protocols.py +2 -0
- flyte/remote/_data.py +2 -1
- flyte/remote/_task.py +141 -9
- flyte/syncify/_api.py +0 -1
- flyte/types/_type_engine.py +3 -1
- {flyte-0.2.0b10.dist-info → flyte-0.2.0b12.dist-info}/METADATA +1 -1
- {flyte-0.2.0b10.dist-info → flyte-0.2.0b12.dist-info}/RECORD +53 -48
- {flyte-0.2.0b10.dist-info → flyte-0.2.0b12.dist-info}/WHEEL +0 -0
- {flyte-0.2.0b10.dist-info → flyte-0.2.0b12.dist-info}/entry_points.txt +0 -0
- {flyte-0.2.0b10.dist-info → flyte-0.2.0b12.dist-info}/top_level.txt +0 -0
flyte/remote/_task.py
CHANGED
|
@@ -3,27 +3,44 @@ from __future__ import annotations
|
|
|
3
3
|
import functools
|
|
4
4
|
from dataclasses import dataclass
|
|
5
5
|
from threading import Lock
|
|
6
|
-
from typing import Any, Callable, Coroutine, Dict, Literal, Optional, Union
|
|
6
|
+
from typing import Any, AsyncIterator, Callable, Coroutine, Dict, Iterator, Literal, Optional, Tuple, Union
|
|
7
7
|
|
|
8
8
|
import rich.repr
|
|
9
|
+
from google.protobuf import timestamp
|
|
9
10
|
|
|
10
11
|
import flyte
|
|
11
12
|
import flyte.errors
|
|
12
13
|
from flyte._context import internal_ctx
|
|
13
|
-
from flyte._initialize import get_client, get_common_config
|
|
14
|
+
from flyte._initialize import ensure_client, get_client, get_common_config
|
|
15
|
+
from flyte._logging import logger
|
|
16
|
+
from flyte._protos.common import list_pb2
|
|
14
17
|
from flyte._protos.workflow import task_definition_pb2, task_service_pb2
|
|
15
18
|
from flyte.models import NativeInterface
|
|
16
19
|
from flyte.syncify import syncify
|
|
17
20
|
|
|
18
21
|
|
|
22
|
+
def _repr_task_metadata(metadata: task_definition_pb2.TaskMetadata) -> rich.repr.Result:
|
|
23
|
+
"""
|
|
24
|
+
Rich representation of the task metadata.
|
|
25
|
+
"""
|
|
26
|
+
if metadata.deployed_by:
|
|
27
|
+
if metadata.deployed_by.user:
|
|
28
|
+
yield "deployed_by", f"User: {metadata.deployed_by.user.spec.email}"
|
|
29
|
+
else:
|
|
30
|
+
yield "deployed_by", f"App: {metadata.deployed_by.application.spec.name}"
|
|
31
|
+
yield "short_name", metadata.short_name
|
|
32
|
+
yield "deployed_at", timestamp.to_datetime(metadata.deployed_at)
|
|
33
|
+
yield "environment_name", metadata.environment_name
|
|
34
|
+
|
|
35
|
+
|
|
19
36
|
class LazyEntity:
|
|
20
37
|
"""
|
|
21
38
|
Fetches the entity when the entity is called or when the entity is retrieved.
|
|
22
39
|
The entity is derived from RemoteEntity so that it behaves exactly like the mimicked entity.
|
|
23
40
|
"""
|
|
24
41
|
|
|
25
|
-
def __init__(self, name: str, getter: Callable[..., Coroutine[Any, Any,
|
|
26
|
-
self._task: Optional[
|
|
42
|
+
def __init__(self, name: str, getter: Callable[..., Coroutine[Any, Any, TaskDetails]], *args, **kwargs):
|
|
43
|
+
self._task: Optional[TaskDetails] = None
|
|
27
44
|
self._getter = getter
|
|
28
45
|
self._name = name
|
|
29
46
|
self._mutex = Lock()
|
|
@@ -33,7 +50,7 @@ class LazyEntity:
|
|
|
33
50
|
return self._name
|
|
34
51
|
|
|
35
52
|
@syncify
|
|
36
|
-
async def fetch(self) ->
|
|
53
|
+
async def fetch(self) -> TaskDetails:
|
|
37
54
|
"""
|
|
38
55
|
Forwards all other attributes to task, causing the task to be fetched!
|
|
39
56
|
"""
|
|
@@ -62,7 +79,7 @@ AutoVersioning = Literal["latest", "current"]
|
|
|
62
79
|
|
|
63
80
|
|
|
64
81
|
@dataclass
|
|
65
|
-
class
|
|
82
|
+
class TaskDetails:
|
|
66
83
|
pb2: task_definition_pb2.TaskDetails
|
|
67
84
|
|
|
68
85
|
@classmethod
|
|
@@ -87,10 +104,19 @@ class Task:
|
|
|
87
104
|
if version is None and auto_version not in ["latest", "current"]:
|
|
88
105
|
raise ValueError("auto_version must be either 'latest' or 'current'.")
|
|
89
106
|
|
|
90
|
-
async def deferred_get(_version: str | None, _auto_version: AutoVersioning | None) ->
|
|
107
|
+
async def deferred_get(_version: str | None, _auto_version: AutoVersioning | None) -> TaskDetails:
|
|
91
108
|
if _version is None:
|
|
92
109
|
if _auto_version == "latest":
|
|
93
|
-
|
|
110
|
+
tasks = []
|
|
111
|
+
async for x in Task.listall.aio(
|
|
112
|
+
by_task_name=name,
|
|
113
|
+
sort_by=("created_at", "desc"),
|
|
114
|
+
limit=1,
|
|
115
|
+
):
|
|
116
|
+
tasks.append(x)
|
|
117
|
+
if not tasks:
|
|
118
|
+
raise flyte.errors.ReferenceTaskError(f"Task {name} not found.")
|
|
119
|
+
_version = tasks[0].version
|
|
94
120
|
elif _auto_version == "current":
|
|
95
121
|
ctx = flyte.ctx()
|
|
96
122
|
if ctx is None:
|
|
@@ -205,7 +231,7 @@ class Task:
|
|
|
205
231
|
env: Optional[Dict[str, str]] = None,
|
|
206
232
|
secrets: Optional[flyte.SecretRequest] = None,
|
|
207
233
|
**kwargs: Any,
|
|
208
|
-
) ->
|
|
234
|
+
) -> TaskDetails:
|
|
209
235
|
raise NotImplementedError
|
|
210
236
|
|
|
211
237
|
def __rich_repr__(self) -> rich.repr.Result:
|
|
@@ -223,5 +249,111 @@ class Task:
|
|
|
223
249
|
yield "resources", self.resources
|
|
224
250
|
|
|
225
251
|
|
|
252
|
+
@dataclass
|
|
253
|
+
class Task:
|
|
254
|
+
pb2: task_definition_pb2.Task
|
|
255
|
+
|
|
256
|
+
def __init__(self, pb2: task_definition_pb2.Task):
|
|
257
|
+
self.pb2 = pb2
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
def name(self) -> str:
|
|
261
|
+
"""
|
|
262
|
+
The name of the task.
|
|
263
|
+
"""
|
|
264
|
+
return self.pb2.task_id.name
|
|
265
|
+
|
|
266
|
+
@property
|
|
267
|
+
def version(self) -> str:
|
|
268
|
+
"""
|
|
269
|
+
The version of the task.
|
|
270
|
+
"""
|
|
271
|
+
return self.pb2.task_id.version
|
|
272
|
+
|
|
273
|
+
@classmethod
|
|
274
|
+
def get(cls, name: str, version: str | None = None, auto_version: AutoVersioning | None = None) -> LazyEntity:
|
|
275
|
+
"""
|
|
276
|
+
Get a task by its ID or name. If both are provided, the ID will take precedence.
|
|
277
|
+
|
|
278
|
+
Either version or auto_version are required parameters.
|
|
279
|
+
|
|
280
|
+
:param name: The name of the task.
|
|
281
|
+
:param version: The version of the task.
|
|
282
|
+
:param auto_version: If set to "latest", the latest-by-time ordered from now, version of the task will be used.
|
|
283
|
+
If set to "current", the version will be derived from the callee tasks context. This is useful if you are
|
|
284
|
+
deploying all environments with the same version. If auto_version is current, you can only access the task from
|
|
285
|
+
within a task context.
|
|
286
|
+
"""
|
|
287
|
+
return TaskDetails.get(name, version=version, auto_version=auto_version)
|
|
288
|
+
|
|
289
|
+
@syncify
|
|
290
|
+
@classmethod
|
|
291
|
+
async def listall(
|
|
292
|
+
cls,
|
|
293
|
+
by_task_name: str | None = None,
|
|
294
|
+
sort_by: Tuple[str, Literal["asc", "desc"]] | None = None,
|
|
295
|
+
limit: int = 100,
|
|
296
|
+
) -> Union[AsyncIterator[Task], Iterator[Task]]:
|
|
297
|
+
"""
|
|
298
|
+
Get all runs for the current project and domain.
|
|
299
|
+
|
|
300
|
+
:param by_task_name: If provided, only tasks with this name will be returned.
|
|
301
|
+
:param sort_by: The sorting criteria for the project list, in the format (field, order).
|
|
302
|
+
:param limit: The maximum number of tasks to return.
|
|
303
|
+
:return: An iterator of runs.
|
|
304
|
+
"""
|
|
305
|
+
ensure_client()
|
|
306
|
+
token = None
|
|
307
|
+
sort_by = sort_by or ("created_at", "asc")
|
|
308
|
+
sort_pb2 = list_pb2.Sort(
|
|
309
|
+
key=sort_by[0], direction=list_pb2.Sort.ASCENDING if sort_by[1] == "asc" else list_pb2.Sort.DESCENDING
|
|
310
|
+
)
|
|
311
|
+
cfg = get_common_config()
|
|
312
|
+
filters = []
|
|
313
|
+
if by_task_name:
|
|
314
|
+
filters.append(
|
|
315
|
+
list_pb2.Filter(
|
|
316
|
+
function=list_pb2.Filter.Function.EQUAL,
|
|
317
|
+
field="name",
|
|
318
|
+
values=[by_task_name],
|
|
319
|
+
)
|
|
320
|
+
)
|
|
321
|
+
original_limit = limit
|
|
322
|
+
if limit > cfg.batch_size:
|
|
323
|
+
limit = cfg.batch_size
|
|
324
|
+
retrieved = 0
|
|
325
|
+
while True:
|
|
326
|
+
resp = await get_client().task_service.ListTasks(
|
|
327
|
+
task_service_pb2.ListTasksRequest(
|
|
328
|
+
org=cfg.org,
|
|
329
|
+
request=list_pb2.ListRequest(
|
|
330
|
+
sort_by=sort_pb2,
|
|
331
|
+
filters=filters,
|
|
332
|
+
limit=limit,
|
|
333
|
+
token=token,
|
|
334
|
+
),
|
|
335
|
+
)
|
|
336
|
+
)
|
|
337
|
+
token = resp.token
|
|
338
|
+
for t in resp.tasks:
|
|
339
|
+
retrieved += 1
|
|
340
|
+
yield cls(t)
|
|
341
|
+
if not token or retrieved >= original_limit:
|
|
342
|
+
logger.debug(f"Retrieved {retrieved} tasks, stopping iteration.")
|
|
343
|
+
break
|
|
344
|
+
|
|
345
|
+
def __rich_repr__(self) -> rich.repr.Result:
|
|
346
|
+
"""
|
|
347
|
+
Rich representation of the task.
|
|
348
|
+
"""
|
|
349
|
+
yield "project", self.pb2.task_id.project
|
|
350
|
+
yield "domain", self.pb2.task_id.domain
|
|
351
|
+
yield "name", self.pb2.task_id.name
|
|
352
|
+
yield "version", self.pb2.task_id.version
|
|
353
|
+
yield "short_name", self.pb2.metadata.short_name
|
|
354
|
+
for t in _repr_task_metadata(self.pb2.metadata):
|
|
355
|
+
yield t
|
|
356
|
+
|
|
357
|
+
|
|
226
358
|
if __name__ == "__main__":
|
|
227
359
|
tk = Task.get(name="example_task")
|
flyte/syncify/_api.py
CHANGED
|
@@ -141,7 +141,6 @@ class _BackgroundLoop:
|
|
|
141
141
|
aio_future: asyncio.Future[R_co] = asyncio.wrap_future(future)
|
|
142
142
|
# await for the future to complete and yield its result
|
|
143
143
|
v = await aio_future
|
|
144
|
-
print(f"Yielding value: {v}")
|
|
145
144
|
yield v
|
|
146
145
|
except StopAsyncIteration:
|
|
147
146
|
break
|
flyte/types/_type_engine.py
CHANGED
|
@@ -1207,7 +1207,9 @@ class TypeEngine(typing.Generic[T]):
|
|
|
1207
1207
|
python_type = type_hints.get(k, type(d[k]))
|
|
1208
1208
|
e: BaseException = literal_map[k].exception() # type: ignore
|
|
1209
1209
|
if isinstance(e, TypeError):
|
|
1210
|
-
raise TypeError(
|
|
1210
|
+
raise TypeError(
|
|
1211
|
+
f"Error converting: Var:{k}, type:{type(v)}, into:{python_type}, received_value {v}"
|
|
1212
|
+
)
|
|
1211
1213
|
else:
|
|
1212
1214
|
raise e
|
|
1213
1215
|
literal_map[k] = v.result()
|
|
@@ -1,33 +1,34 @@
|
|
|
1
|
-
flyte/__init__.py,sha256=
|
|
1
|
+
flyte/__init__.py,sha256=e8-Obt_5OZDdC5Riznft0Y4ctQMYkYYO1UU7Z6EirLA,1464
|
|
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=Nw1E-jU2AxFMbRG_DWfxiKO6InZCr1Ow2azd6PbKe0E,8987
|
|
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=BkChtdVhWB3SwMSvetDZ-KiNBgRFlAXgq69PHT4zyG0,2942
|
|
8
8
|
flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
|
|
9
9
|
flyte/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
|
|
10
10
|
flyte/_image.py,sha256=NeBvjCdwFAVGd666ufi1q-YOvhwdTEzAeJl5YBfl0bI,29043
|
|
11
|
-
flyte/_initialize.py,sha256=
|
|
11
|
+
flyte/_initialize.py,sha256=zPcygfpUM24vZ8-6BizPTiDYHeEgXSPbqD4QqJ_pA_A,17831
|
|
12
12
|
flyte/_interface.py,sha256=MP5o_qpIwfBNtAc7zo_cLSjMugsPyanuO6EgUSk4fBE,3644
|
|
13
|
-
flyte/_logging.py,sha256=
|
|
13
|
+
flyte/_logging.py,sha256=n3pi1cE_oqA03vQHlqSxexXcjRhCsZg1ODvUSoWlwk4,3382
|
|
14
14
|
flyte/_map.py,sha256=efPd8O-JKUg1OY3_MzU3KGbhsGYDVRNBwWr0ceNIXhQ,7444
|
|
15
|
+
flyte/_pod.py,sha256=lNaQuWX22QG6Xji7-8GpuKUkqCmVFaRxOVU-eUEa-Vk,637
|
|
15
16
|
flyte/_resources.py,sha256=UOLyEVhdxolvrHhddiBbYdJuE1RkM_l7xeS9G1abe6M,7583
|
|
16
17
|
flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
17
18
|
flyte/_reusable_environment.py,sha256=P4FBATVKAYcIKpdFN98sI8acPyKy8eIGx6V0kUb9YdM,1289
|
|
18
19
|
flyte/_run.py,sha256=ePlFrABDR0ud_qxY55Nk4eATDialHGHsxNdTiVWYQkw,19919
|
|
19
20
|
flyte/_secret.py,sha256=SqIHs6mi8hEkIIBZe3bI9jJsPt65Mt6dV5uh9_op1ME,2392
|
|
20
|
-
flyte/_task.py,sha256=
|
|
21
|
+
flyte/_task.py,sha256=AHxg4lqHfExdSU6adwPiFzAT2EtrLI8mBdRxTUL1RgA,17902
|
|
21
22
|
flyte/_task_environment.py,sha256=J1LFH9Zz1nPhlsrc_rYny1SS3QC1b55X7tRYoTG7Vk4,6815
|
|
22
23
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
23
24
|
flyte/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
|
|
24
|
-
flyte/_trace.py,sha256=
|
|
25
|
-
flyte/_version.py,sha256=
|
|
26
|
-
flyte/errors.py,sha256=
|
|
25
|
+
flyte/_trace.py,sha256=C788bgoSc3st8kE8Cae2xegnLx2CT6uuRKKfaDrDUys,5122
|
|
26
|
+
flyte/_version.py,sha256=fZarBZQ7Xio1cvBlNhy9XSzDSr6WjWMDLsvFkl7L8Cw,521
|
|
27
|
+
flyte/errors.py,sha256=lJgSiZb2nZnuTZqBEB9rg-bV_GXVAYNjQFRuKWQskyY,4683
|
|
27
28
|
flyte/models.py,sha256=A85HnTLqInJiMmQKhpl2IXb2Uh6_46tdRrwW2TTzD9o,12908
|
|
28
29
|
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
30
|
flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
flyte/_bin/runtime.py,sha256=
|
|
31
|
+
flyte/_bin/runtime.py,sha256=09OKQeUwyEDkXF2HtzHeYVJsIMkEzLIO2tVCARvPGJE,5783
|
|
31
32
|
flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
|
|
32
33
|
flyte/_cache/cache.py,sha256=ErhWzzJdEjTIuEF4f-r6IBgko-3Al9iUs1Eq4O42TUE,5021
|
|
33
34
|
flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
|
|
@@ -39,14 +40,14 @@ flyte/_code_bundle/_utils.py,sha256=b0s3ZVKSRwaa_2CMTCqt2iRrUvTTW3FmlyqCD9k5BS0,
|
|
|
39
40
|
flyte/_code_bundle/bundle.py,sha256=8T0gcXck6dmg-8L2-0G3B2iNjC-Xwydu806iyKneMMY,8789
|
|
40
41
|
flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
|
|
41
42
|
flyte/_internal/controllers/__init__.py,sha256=5CBnS9lb1VFMzZuRXUiaPhlN3G9qh7Aq9kTwxW5hsRw,4301
|
|
42
|
-
flyte/_internal/controllers/_local_controller.py,sha256=
|
|
43
|
-
flyte/_internal/controllers/_trace.py,sha256=
|
|
43
|
+
flyte/_internal/controllers/_local_controller.py,sha256=Wpgtd50C_ovIHpQSZC6asQc7iKyKIraEf-MAHCwcNJI,7124
|
|
44
|
+
flyte/_internal/controllers/_trace.py,sha256=biI-lXSIe3gXuWI-KT6T-jTtojQCQ7BLOHTCG3J6MQc,1145
|
|
44
45
|
flyte/_internal/controllers/remote/__init__.py,sha256=9_azH1eHLqY6VULpDugXi7Kf1kK1ODqEnsQ_3wM6IqU,1919
|
|
45
|
-
flyte/_internal/controllers/remote/_action.py,sha256=
|
|
46
|
+
flyte/_internal/controllers/remote/_action.py,sha256=5V26eE1ggtf95M8l_3wBRGrtbQ1DkOD_ePRT2bppMGM,4906
|
|
46
47
|
flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
|
|
47
48
|
flyte/_internal/controllers/remote/_controller.py,sha256=IbCRMTbQrNz96zjSZo2KHDmB0nW3dwT8VlWLu4zElGQ,19462
|
|
48
49
|
flyte/_internal/controllers/remote/_core.py,sha256=2dka1rDnA8Ui_qhfE1ymZuN8E2BYQPn123h_eMixSiM,18091
|
|
49
|
-
flyte/_internal/controllers/remote/_informer.py,sha256=
|
|
50
|
+
flyte/_internal/controllers/remote/_informer.py,sha256=StiPcQLLW0h36uEBhKsupMY79EeFCKA3QQzvv2IyvRo,14188
|
|
50
51
|
flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
|
|
51
52
|
flyte/_internal/imagebuild/__init__.py,sha256=cLXVxkAyFpbdC1y-k3Rb6FRW9f_xpoRQWVn__G9IqKs,354
|
|
52
53
|
flyte/_internal/imagebuild/docker_builder.py,sha256=bkr2fs9jInTq8jqU8ka7NGvp0RPfYhbTfX1RqtqTvvs,13986
|
|
@@ -57,12 +58,12 @@ flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3C
|
|
|
57
58
|
flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
|
|
58
59
|
flyte/_internal/resolvers/default.py,sha256=nX4DHUYod1nRvEsl_vSgutQVEdExu2xL8pRkyi4VWbY,981
|
|
59
60
|
flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
flyte/_internal/runtime/convert.py,sha256=
|
|
61
|
+
flyte/_internal/runtime/convert.py,sha256=0ttgaC8GrRkM2nXuG0K-7Kcg6nFsKWC9BG2LSEzgWzM,9325
|
|
61
62
|
flyte/_internal/runtime/entrypoints.py,sha256=Kyi19i7LYk7YM3ZV_Y4FXGt5Pc1tIftGkIDohopblyY,5127
|
|
62
63
|
flyte/_internal/runtime/io.py,sha256=Lgdy4iPjlKjUO-V_AkoPZff6lywaFjZUG-PErRukmx4,4248
|
|
63
64
|
flyte/_internal/runtime/resources_serde.py,sha256=tvMMv3l6cZEt_cfs7zVE_Kqs5qh-_r7fsEPxb6xMxMk,4812
|
|
64
|
-
flyte/_internal/runtime/task_serde.py,sha256=
|
|
65
|
-
flyte/_internal/runtime/taskrunner.py,sha256=
|
|
65
|
+
flyte/_internal/runtime/task_serde.py,sha256=wN7lsusEUuEQE4-jPh0f_sTFZisH76o1VlMMXHC7etI,13012
|
|
66
|
+
flyte/_internal/runtime/taskrunner.py,sha256=rHWS4t5qgZnzGdGrs0_O0sSs_PVGoE1CNPDb-fTwwmo,7332
|
|
66
67
|
flyte/_internal/runtime/types_serde.py,sha256=EjRh9Yypx9-20XXQprtNgp766LeQVRoYWtY6XPGMZQg,1813
|
|
67
68
|
flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
69
|
flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
|
|
@@ -74,8 +75,8 @@ flyte/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMh
|
|
|
74
75
|
flyte/_protos/common/identity_pb2.py,sha256=Q3UHzjnYkgHPjBC001DSRSVd5IbiarijpWpUt-GSWAo,4581
|
|
75
76
|
flyte/_protos/common/identity_pb2.pyi,sha256=gjcp8lg-XIBP4ZzFBI8-Uf8DofAkheZlZLG5Cj3m4-g,3720
|
|
76
77
|
flyte/_protos/common/identity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
77
|
-
flyte/_protos/common/list_pb2.py,sha256=
|
|
78
|
-
flyte/_protos/common/list_pb2.pyi,sha256=
|
|
78
|
+
flyte/_protos/common/list_pb2.py,sha256=T8LVB2Gj8_FLEEfCjDOjBdqfhJ2ve4vizyqbgQ_exxw,3276
|
|
79
|
+
flyte/_protos/common/list_pb2.pyi,sha256=Mz0ZTm3eHTbaK86joit0xl8_jUWpswxDhLZmU3kg8hY,3398
|
|
79
80
|
flyte/_protos/common/list_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
80
81
|
flyte/_protos/common/policy_pb2.py,sha256=NceBASAzGQVU0A-WKSViDndQ_3cEGbDA3vXg8Lf-g0s,2966
|
|
81
82
|
flyte/_protos/common/policy_pb2.pyi,sha256=LCHthmNrqlRI-rrAB7D4gMrH-OnlrCGymquNGN6vO9Q,1535
|
|
@@ -103,72 +104,76 @@ flyte/_protos/validate/validate/validate_pb2.py,sha256=yJOyUdZVPAVOSvo8uNgynvObi
|
|
|
103
104
|
flyte/_protos/workflow/common_pb2.py,sha256=NmukAKm8cxBvxYrZ7VuARExi5M5SB0mcP1AxSkq7n5E,1812
|
|
104
105
|
flyte/_protos/workflow/common_pb2.pyi,sha256=h69_9esVb6NRD5QNC-ahv7IbjxH77UrT9M9wvqbcjSA,652
|
|
105
106
|
flyte/_protos/workflow/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
107
|
+
flyte/_protos/workflow/environment_pb2.py,sha256=N3zUd5CdKy6rZmZiAaiQRNmAv-3NOMMTzYRSQc5xIxs,1923
|
|
108
|
+
flyte/_protos/workflow/environment_pb2.pyi,sha256=ly3FuUNeCPo845N307SZ5-W1-DJGqOJK454jpJwoUVk,459
|
|
109
|
+
flyte/_protos/workflow/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
106
110
|
flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
|
|
107
111
|
flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
|
|
108
112
|
flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
|
|
109
113
|
flyte/_protos/workflow/queue_service_pb2.py,sha256=FuphK-Fy5kCjk9rLmQpD45-P9YS4B4aG8v7DEoF2XtE,11993
|
|
110
114
|
flyte/_protos/workflow/queue_service_pb2.pyi,sha256=qSCS0NyNRfNSjPuAlmVRprD4Be9d9rJNP6Of8lNsKGM,7819
|
|
111
115
|
flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=6KK87jYXrmK0jacf4AKhHp21QU9JFJPOiEBjbDRkBm0,7839
|
|
112
|
-
flyte/_protos/workflow/run_definition_pb2.py,sha256=
|
|
113
|
-
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=
|
|
116
|
+
flyte/_protos/workflow/run_definition_pb2.py,sha256=9RuY5xbz7Fp8R9fHb3cCqfCvGYT3txLnTnuKUmcCpZA,16156
|
|
117
|
+
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=lUt30Pnbqlg6vUD2pF64BpRjlAAbRUZe0of-vHCOeg8,15371
|
|
114
118
|
flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
115
119
|
flyte/_protos/workflow/run_logs_service_pb2.py,sha256=MKG9keauunf7EmIrlthQKgXrQAfMjbX9LyeBMlLhK30,3358
|
|
116
120
|
flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=88_Qp-qQh9PSUUPSsyuawc9gBi9_4OEbnp37cgH1VGE,1534
|
|
117
121
|
flyte/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=xoNyNBaK9dmrjZtiYkZQSQnSLNY7d2CK9pr5BTP7zxQ,2694
|
|
118
|
-
flyte/_protos/workflow/run_service_pb2.py,sha256=
|
|
119
|
-
flyte/_protos/workflow/run_service_pb2.pyi,sha256=
|
|
122
|
+
flyte/_protos/workflow/run_service_pb2.py,sha256=aKeLCUAC_oIHHm4k6Pd7rbbspUwY5Cl3Rp7keasNbVo,14910
|
|
123
|
+
flyte/_protos/workflow/run_service_pb2.pyi,sha256=AZBcXfw6tvlfa3OjQzVt3pSB5xc2DJGyW4aUgF2y_9s,9045
|
|
120
124
|
flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=tO1qnrD5_0KrtToCIcuseVhkQNdNIQ2yfZHCzysV5sY,19657
|
|
121
125
|
flyte/_protos/workflow/state_service_pb2.py,sha256=xDEak38Egukk2yR4kr7Y7y-SsL4Y1rCnPN-FiGmmYsM,5785
|
|
122
126
|
flyte/_protos/workflow/state_service_pb2.pyi,sha256=S3oEFSPHem-t7ySb2UGcWjmf-QK7gFG2rNCWAiIwzGk,3545
|
|
123
127
|
flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=E5yH8ZHNWUBFJkvsvqgX7ZmVU45UmbaHZynHGcQUd70,5801
|
|
124
|
-
flyte/_protos/workflow/task_definition_pb2.py,sha256=
|
|
125
|
-
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=
|
|
128
|
+
flyte/_protos/workflow/task_definition_pb2.py,sha256=fqqvgxX6DykFHwRJFIrmYkBxLx6Qhtq3CuzBViuzvag,7833
|
|
129
|
+
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=WO23j393scV5Q5GFJfWOrydzNLG0indVAT36RxB6tw4,4163
|
|
126
130
|
flyte/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
127
|
-
flyte/_protos/workflow/task_service_pb2.py,sha256=
|
|
128
|
-
flyte/_protos/workflow/task_service_pb2.pyi,sha256=
|
|
129
|
-
flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=
|
|
130
|
-
flyte/_utils/__init__.py,sha256=
|
|
131
|
+
flyte/_protos/workflow/task_service_pb2.py,sha256=7kCVgR8Is9MzlbdoGd1kVCwz1ot39r2qyY3oZzE_Xuo,5781
|
|
132
|
+
flyte/_protos/workflow/task_service_pb2.pyi,sha256=W0OZWui3TbQANi0GL7lCVmbpJKRwJ0X-8vjXj1qNP5k,3100
|
|
133
|
+
flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=whmfmOTiNhz6_CBsXm8aXUCwtA5bncOikqKYz-bKdok,5992
|
|
134
|
+
flyte/_utils/__init__.py,sha256=RByuYa2hSqsKrpLkFfjKspKxH3K7DzfVzTVnZsxkO0A,757
|
|
131
135
|
flyte/_utils/asyn.py,sha256=KeJKarXNIyD16g6oPM0T9cH7JDmh1KY7JLbwo7i0IlQ,3673
|
|
132
136
|
flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
|
|
133
137
|
flyte/_utils/coro_management.py,sha256=_JTt9x9fOc_1OSe03DSheYoKOvlonBB_4WNCS9XSaoU,698
|
|
134
138
|
flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
|
|
135
139
|
flyte/_utils/helpers.py,sha256=45ZC2OSNKS66DkTvif8W8x7MH4KxluvAyn0a92mKRqM,4366
|
|
136
140
|
flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
|
|
141
|
+
flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
|
|
137
142
|
flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
138
143
|
flyte/cli/__init__.py,sha256=M02O-UGqQlA8JJ_jyWRiwQhTNc5CJJ7x9J7fNxTxBT0,52
|
|
139
|
-
flyte/cli/_abort.py,sha256=
|
|
140
|
-
flyte/cli/_common.py,sha256=
|
|
141
|
-
flyte/cli/_create.py,sha256=
|
|
144
|
+
flyte/cli/_abort.py,sha256=Ty-63Gtd2PUn6lCuL5AaasfBoPu7TDSU5EQKVbkF4qw,661
|
|
145
|
+
flyte/cli/_common.py,sha256=aDc1zT16I5htzYwfcztvoh0TxICbQFISlEyCU_8h5Bo,11053
|
|
146
|
+
flyte/cli/_create.py,sha256=a75II-xT71SpdopNY14rPuidO5qL0mH1UAwf205sVzQ,4313
|
|
142
147
|
flyte/cli/_delete.py,sha256=qq5A9d6vXdYvYz-SECXiC6LU5rAzahNTZKiKacOtcZ4,545
|
|
143
|
-
flyte/cli/_deploy.py,sha256=
|
|
148
|
+
flyte/cli/_deploy.py,sha256=mlpOG5P5rVVOZpFYHcxvqWjooJwnw7tmJXV7mbQm_7M,4795
|
|
144
149
|
flyte/cli/_gen.py,sha256=vlE5l8UR1zz4RSdaRyUfYFvGR0TLxGcTYcP4dhA3Pvg,5458
|
|
145
|
-
flyte/cli/_get.py,sha256=
|
|
146
|
-
flyte/cli/_params.py,sha256=
|
|
147
|
-
flyte/cli/_run.py,sha256=
|
|
148
|
-
flyte/cli/main.py,sha256=
|
|
150
|
+
flyte/cli/_get.py,sha256=U1OmRCqd39lGnkmmZVUJ3O8wyuKG_LEpGJg3UM-tV_Q,9895
|
|
151
|
+
flyte/cli/_params.py,sha256=cDeTvjOQP8EydVJUrncLeAxUaHvGorJyDvMSrAxapmM,19466
|
|
152
|
+
flyte/cli/_run.py,sha256=dkuf6PfmizFU1-RWX_9TsTcGuUNDpjY7f6ok90nZ2iM,7889
|
|
153
|
+
flyte/cli/main.py,sha256=P5a0Q4pKVKnc9QMdbdfp9I5ReGVykVCN-cUy0gURpLI,4287
|
|
149
154
|
flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
|
|
150
155
|
flyte/config/_config.py,sha256=QE3T0W8xOULjJaqDMdMF90f9gFVjGR6h8QPOLsyqjYw,9831
|
|
151
156
|
flyte/config/_internal.py,sha256=Bj0uzn3PYgxKbzM-q2GKXxp7Y6cyzhPzUB-Y2i6cQKo,2836
|
|
152
157
|
flyte/config/_reader.py,sha256=c16jm0_IYxwEAjXENtllLeO_sT5Eg2RNLG4UjnAv_x4,7157
|
|
153
158
|
flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
159
|
flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
|
|
155
|
-
flyte/extras/_container.py,sha256=
|
|
160
|
+
flyte/extras/_container.py,sha256=7fg43UScXevb9QdiyZLyf0xFrL5L3GkPvUWKQLl4R98,10939
|
|
156
161
|
flyte/io/__init__.py,sha256=F7hlpin_1JJjsdFZSn7_jQgltPzsjETX1DCYGz-ELqI,629
|
|
157
162
|
flyte/io/_dir.py,sha256=rih9CY1YjNX05bcAu5LG62Xoyij5GXAlv7jLyVF0je8,15310
|
|
158
163
|
flyte/io/_file.py,sha256=kp5700SKPy5htmMhm4hE2ybb99Ykny1b0Kwm3huCWXs,15572
|
|
159
164
|
flyte/io/_structured_dataset/__init__.py,sha256=69ixVV9OEXiLiQ6SV2S8tEC7dVQe7YTt9NV1OotlG64,4524
|
|
160
165
|
flyte/io/_structured_dataset/basic_dfs.py,sha256=77aYFrFigPC7cjM6UjCbU26REtXmwIBBapFN6KGYOO8,8224
|
|
161
166
|
flyte/io/_structured_dataset/structured_dataset.py,sha256=ddRjz36RhNxIy0gakzdLStBzoo4cAOgXbNqiqt5YhMI,52645
|
|
162
|
-
flyte/remote/__init__.py,sha256=
|
|
167
|
+
flyte/remote/__init__.py,sha256=h0J9W1yWbvPq2R9HXa_HezJtxHoWl6d9QKQbuuKDMnU,597
|
|
163
168
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
164
|
-
flyte/remote/_data.py,sha256=
|
|
169
|
+
flyte/remote/_data.py,sha256=B5nMF_o_ePRuG-V4IrTXctXXYn7uEJqUNs_5unX-2fo,5846
|
|
165
170
|
flyte/remote/_logs.py,sha256=EOXg4OS8yYclsT6NASgOLMo0TA2sZpKb2MWZXpWBPuI,6404
|
|
166
171
|
flyte/remote/_project.py,sha256=dTBYqORDAbLvh9WnPO1Ytuzw2vxNYZwwNsKE2_b0o14,2807
|
|
167
172
|
flyte/remote/_run.py,sha256=9euHjYRX-xyxXuhn0MunYb9dmgl0FMU3a-FZNjJA4F8,31057
|
|
168
173
|
flyte/remote/_secret.py,sha256=l5xeMS83uMcWWeSSTRsSZUNhS0N--1Dze09C-thSOQs,4341
|
|
169
|
-
flyte/remote/_task.py,sha256=
|
|
174
|
+
flyte/remote/_task.py,sha256=7C8iKyeeiCMuePjDIihRhkWOtqRDmRJDq1e5lRK2s6U,12781
|
|
170
175
|
flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
-
flyte/remote/_client/_protocols.py,sha256=
|
|
176
|
+
flyte/remote/_client/_protocols.py,sha256=JyBWHs5WsVOxEDUyG9X7wPLDzzzjkoaNhJlU-X4YlN0,5599
|
|
172
177
|
flyte/remote/_client/controlplane.py,sha256=FsOfj4rO4MIMnYrpAT53F8q588VVf5t4sDuwoPuc840,3102
|
|
173
178
|
flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
|
|
174
179
|
flyte/remote/_client/auth/_auth_utils.py,sha256=Is6mr18J8AMQlbtu-Q63aMJgrZ27dXXNSig8KshR1_8,545
|
|
@@ -197,16 +202,16 @@ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1
|
|
|
197
202
|
flyte/storage/_storage.py,sha256=mBy7MKII2M1UTVm_EUUDwVb7uT1_AOPzQr2wCJ-fgW0,9873
|
|
198
203
|
flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
|
|
199
204
|
flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
|
|
200
|
-
flyte/syncify/_api.py,sha256=
|
|
205
|
+
flyte/syncify/_api.py,sha256=udxXjOz1iTtnfmIcTlce8Nate6PqGmHrj-ZLfJRPtWA,10881
|
|
201
206
|
flyte/types/__init__.py,sha256=9310PRtVrwJePwEPeoUO0HPyIkgaja7-Dar_QlE_MUI,1745
|
|
202
207
|
flyte/types/_interface.py,sha256=mY7mb8v2hJPGk7AU99gdOWl4_jArA1VFtjYGlE31SK0,953
|
|
203
208
|
flyte/types/_pickle.py,sha256=PjdR66OTDMZ3OYq6GvM_Ua0cIo5t2XQaIjmpJ9xo4Ys,4050
|
|
204
209
|
flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
205
210
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
206
|
-
flyte/types/_type_engine.py,sha256=
|
|
211
|
+
flyte/types/_type_engine.py,sha256=oX906WSQ-e8E1X1vwdMcqiQi2fUUFY9A4wVZZf2yoaw,93667
|
|
207
212
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
208
|
-
flyte-0.2.
|
|
209
|
-
flyte-0.2.
|
|
210
|
-
flyte-0.2.
|
|
211
|
-
flyte-0.2.
|
|
212
|
-
flyte-0.2.
|
|
213
|
+
flyte-0.2.0b12.dist-info/METADATA,sha256=DXnACI-eTUCxiefdS6_zu0n5palCJavwo1DTwG1RX9s,4811
|
|
214
|
+
flyte-0.2.0b12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
215
|
+
flyte-0.2.0b12.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
216
|
+
flyte-0.2.0b12.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
217
|
+
flyte-0.2.0b12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|