flyte 2.0.0b17__py3-none-any.whl → 2.0.0b19__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/_bin/runtime.py +3 -0
- flyte/_debug/vscode.py +4 -2
- flyte/_deploy.py +3 -1
- flyte/_environment.py +15 -6
- flyte/_hash.py +1 -16
- flyte/_image.py +6 -1
- flyte/_initialize.py +15 -16
- flyte/_internal/controllers/__init__.py +4 -5
- flyte/_internal/controllers/_local_controller.py +5 -5
- flyte/_internal/controllers/remote/_controller.py +21 -28
- flyte/_internal/controllers/remote/_core.py +1 -1
- flyte/_internal/imagebuild/docker_builder.py +31 -23
- flyte/_internal/imagebuild/remote_builder.py +37 -10
- flyte/_internal/imagebuild/utils.py +2 -1
- flyte/_internal/runtime/convert.py +69 -2
- flyte/_internal/runtime/taskrunner.py +4 -1
- flyte/_logging.py +110 -26
- flyte/_map.py +90 -12
- flyte/_pod.py +2 -1
- flyte/_run.py +6 -1
- flyte/_task.py +3 -0
- flyte/_task_environment.py +5 -1
- flyte/_trace.py +5 -0
- flyte/_version.py +3 -3
- flyte/cli/_create.py +4 -1
- flyte/cli/_deploy.py +4 -5
- flyte/cli/_params.py +18 -4
- flyte/cli/_run.py +2 -2
- flyte/config/_config.py +2 -2
- flyte/config/_reader.py +14 -8
- flyte/errors.py +3 -1
- flyte/git/__init__.py +3 -0
- flyte/git/_config.py +17 -0
- flyte/io/_dataframe/basic_dfs.py +16 -7
- flyte/io/_dataframe/dataframe.py +84 -123
- flyte/io/_dir.py +35 -4
- flyte/io/_file.py +61 -15
- flyte/io/_hashing_io.py +342 -0
- flyte/models.py +12 -4
- flyte/remote/_action.py +4 -2
- flyte/remote/_task.py +52 -22
- flyte/report/_report.py +1 -1
- flyte/storage/_storage.py +16 -1
- flyte/types/_type_engine.py +1 -51
- {flyte-2.0.0b17.data → flyte-2.0.0b19.data}/scripts/runtime.py +3 -0
- {flyte-2.0.0b17.dist-info → flyte-2.0.0b19.dist-info}/METADATA +1 -1
- {flyte-2.0.0b17.dist-info → flyte-2.0.0b19.dist-info}/RECORD +52 -49
- {flyte-2.0.0b17.data → flyte-2.0.0b19.data}/scripts/debug.py +0 -0
- {flyte-2.0.0b17.dist-info → flyte-2.0.0b19.dist-info}/WHEEL +0 -0
- {flyte-2.0.0b17.dist-info → flyte-2.0.0b19.dist-info}/entry_points.txt +0 -0
- {flyte-2.0.0b17.dist-info → flyte-2.0.0b19.dist-info}/licenses/LICENSE +0 -0
- {flyte-2.0.0b17.dist-info → flyte-2.0.0b19.dist-info}/top_level.txt +0 -0
flyte/remote/_task.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
import asyncio
|
|
3
4
|
import functools
|
|
4
5
|
from dataclasses import dataclass
|
|
5
|
-
from threading import Lock
|
|
6
6
|
from typing import Any, AsyncIterator, Callable, Coroutine, Dict, Iterator, Literal, Optional, Tuple, Union, cast
|
|
7
7
|
|
|
8
8
|
import rich.repr
|
|
@@ -49,7 +49,7 @@ class LazyEntity:
|
|
|
49
49
|
self._task: Optional[TaskDetails] = None
|
|
50
50
|
self._getter = getter
|
|
51
51
|
self._name = name
|
|
52
|
-
self._mutex = Lock()
|
|
52
|
+
self._mutex = asyncio.Lock()
|
|
53
53
|
|
|
54
54
|
@property
|
|
55
55
|
def name(self) -> str:
|
|
@@ -60,11 +60,11 @@ class LazyEntity:
|
|
|
60
60
|
"""
|
|
61
61
|
Forwards all other attributes to task, causing the task to be fetched!
|
|
62
62
|
"""
|
|
63
|
-
with self._mutex:
|
|
63
|
+
async with self._mutex:
|
|
64
64
|
if self._task is None:
|
|
65
65
|
self._task = await self._getter()
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
if self._task is None:
|
|
67
|
+
raise RuntimeError(f"Error downloading the task {self._name}, (check original exception...)")
|
|
68
68
|
return self._task
|
|
69
69
|
|
|
70
70
|
@syncify
|
|
@@ -73,8 +73,10 @@ class LazyEntity:
|
|
|
73
73
|
**kwargs: Any,
|
|
74
74
|
) -> LazyEntity:
|
|
75
75
|
task_details = cast(TaskDetails, await self.fetch.aio())
|
|
76
|
-
task_details.override(**kwargs)
|
|
77
|
-
|
|
76
|
+
new_task_details = task_details.override(**kwargs)
|
|
77
|
+
new_entity = LazyEntity(self._name, self._getter)
|
|
78
|
+
new_entity._task = new_task_details
|
|
79
|
+
return new_entity
|
|
78
80
|
|
|
79
81
|
async def __call__(self, *args, **kwargs):
|
|
80
82
|
"""
|
|
@@ -93,7 +95,7 @@ class LazyEntity:
|
|
|
93
95
|
AutoVersioning = Literal["latest", "current"]
|
|
94
96
|
|
|
95
97
|
|
|
96
|
-
@dataclass
|
|
98
|
+
@dataclass(frozen=True)
|
|
97
99
|
class TaskDetails(ToJSONMixin):
|
|
98
100
|
pb2: task_definition_pb2.TaskDetails
|
|
99
101
|
max_inline_io_bytes: int = 10 * 1024 * 1024 # 10 MB
|
|
@@ -261,12 +263,6 @@ class TaskDetails(ToJSONMixin):
|
|
|
261
263
|
f"Reference task {self.name} does not support positional arguments"
|
|
262
264
|
f"currently. Please use keyword arguments."
|
|
263
265
|
)
|
|
264
|
-
if len(self.required_args) > 0:
|
|
265
|
-
if len(args) + len(kwargs) < len(self.required_args):
|
|
266
|
-
raise ValueError(
|
|
267
|
-
f"Task {self.name} requires at least {self.required_args} arguments, "
|
|
268
|
-
f"but only received args:{args} kwargs{kwargs}."
|
|
269
|
-
)
|
|
270
266
|
|
|
271
267
|
ctx = internal_ctx()
|
|
272
268
|
if ctx.is_task_context():
|
|
@@ -276,9 +272,17 @@ class TaskDetails(ToJSONMixin):
|
|
|
276
272
|
from flyte._internal.controllers import get_controller
|
|
277
273
|
|
|
278
274
|
controller = get_controller()
|
|
275
|
+
if len(self.required_args) > 0:
|
|
276
|
+
if len(args) + len(kwargs) < len(self.required_args):
|
|
277
|
+
raise ValueError(
|
|
278
|
+
f"Task {self.name} requires at least {self.required_args} arguments, "
|
|
279
|
+
f"but only received args:{args} kwargs{kwargs}."
|
|
280
|
+
)
|
|
279
281
|
if controller:
|
|
280
|
-
return await controller.submit_task_ref(self
|
|
281
|
-
raise flyte.errors
|
|
282
|
+
return await controller.submit_task_ref(self, *args, **kwargs)
|
|
283
|
+
raise flyte.errors.ReferenceTaskError(
|
|
284
|
+
f"Reference tasks [{self.name}] cannot be executed locally, only remotely."
|
|
285
|
+
)
|
|
282
286
|
|
|
283
287
|
def override(
|
|
284
288
|
self,
|
|
@@ -289,6 +293,8 @@ class TaskDetails(ToJSONMixin):
|
|
|
289
293
|
timeout: Optional[flyte.TimeoutType] = None,
|
|
290
294
|
env_vars: Optional[Dict[str, str]] = None,
|
|
291
295
|
secrets: Optional[flyte.SecretRequest] = None,
|
|
296
|
+
max_inline_io_bytes: Optional[int] = None,
|
|
297
|
+
cache: Optional[flyte.Cache] = None,
|
|
292
298
|
**kwargs: Any,
|
|
293
299
|
) -> TaskDetails:
|
|
294
300
|
if len(kwargs) > 0:
|
|
@@ -296,23 +302,47 @@ class TaskDetails(ToJSONMixin):
|
|
|
296
302
|
f"ReferenceTasks [{self.name}] do not support overriding with kwargs: {kwargs}, "
|
|
297
303
|
f"Check the parameters for override method."
|
|
298
304
|
)
|
|
299
|
-
|
|
305
|
+
pb2 = task_definition_pb2.TaskDetails()
|
|
306
|
+
pb2.CopyFrom(self.pb2)
|
|
307
|
+
|
|
300
308
|
if short_name:
|
|
301
|
-
|
|
309
|
+
pb2.metadata.short_name = short_name
|
|
310
|
+
|
|
311
|
+
template = pb2.spec.task_template
|
|
302
312
|
if secrets:
|
|
303
313
|
template.security_context.CopyFrom(get_security_context(secrets))
|
|
314
|
+
|
|
304
315
|
if template.HasField("container"):
|
|
305
316
|
if env_vars:
|
|
306
317
|
template.container.env.clear()
|
|
307
318
|
template.container.env.extend([literals_pb2.KeyValuePair(key=k, value=v) for k, v in env_vars.items()])
|
|
308
319
|
if resources:
|
|
309
320
|
template.container.resources.CopyFrom(get_proto_resources(resources))
|
|
321
|
+
|
|
322
|
+
md = template.metadata
|
|
310
323
|
if retries:
|
|
311
|
-
|
|
312
|
-
if timeout:
|
|
313
|
-
template.metadata.timeout.CopyFrom(get_proto_timeout(timeout))
|
|
324
|
+
md.retries.CopyFrom(get_proto_retry_strategy(retries))
|
|
314
325
|
|
|
315
|
-
|
|
326
|
+
if timeout:
|
|
327
|
+
md.timeout.CopyFrom(get_proto_timeout(timeout))
|
|
328
|
+
|
|
329
|
+
if cache:
|
|
330
|
+
if cache.behavior == "disable":
|
|
331
|
+
md.discoverable = False
|
|
332
|
+
md.discovery_version = ""
|
|
333
|
+
elif cache.behavior == "override":
|
|
334
|
+
md.discoverable = True
|
|
335
|
+
if not cache.version_override:
|
|
336
|
+
raise ValueError("cache.version_override must be set when cache.behavior is 'override'")
|
|
337
|
+
md.discovery_version = cache.version_override
|
|
338
|
+
else:
|
|
339
|
+
if cache.behavior == "auto":
|
|
340
|
+
raise ValueError("cache.behavior must be 'disable' or 'override' for reference tasks")
|
|
341
|
+
raise ValueError(f"Invalid cache behavior: {cache.behavior}.")
|
|
342
|
+
md.cache_serializable = cache.serialize
|
|
343
|
+
md.cache_ignore_input_vars[:] = list(cache.ignored_inputs or ())
|
|
344
|
+
|
|
345
|
+
return TaskDetails(pb2, max_inline_io_bytes=max_inline_io_bytes or self.max_inline_io_bytes)
|
|
316
346
|
|
|
317
347
|
def __rich_repr__(self) -> rich.repr.Result:
|
|
318
348
|
"""
|
flyte/report/_report.py
CHANGED
|
@@ -4,7 +4,6 @@ import string
|
|
|
4
4
|
from dataclasses import dataclass, field
|
|
5
5
|
from typing import TYPE_CHECKING, Dict, List, Union
|
|
6
6
|
|
|
7
|
-
from flyte._internal.runtime import io
|
|
8
7
|
from flyte._logging import logger
|
|
9
8
|
from flyte._tools import ipython_check
|
|
10
9
|
from flyte.syncify import syncify
|
|
@@ -133,6 +132,7 @@ async def flush():
|
|
|
133
132
|
"""
|
|
134
133
|
import flyte.storage as storage
|
|
135
134
|
from flyte._context import internal_ctx
|
|
135
|
+
from flyte._internal.runtime import io
|
|
136
136
|
|
|
137
137
|
if not internal_ctx().is_task_context():
|
|
138
138
|
return
|
flyte/storage/_storage.py
CHANGED
|
@@ -14,6 +14,7 @@ from obstore.fsspec import register
|
|
|
14
14
|
|
|
15
15
|
from flyte._initialize import get_storage
|
|
16
16
|
from flyte._logging import logger
|
|
17
|
+
from flyte.errors import InitializationError
|
|
17
18
|
|
|
18
19
|
_OBSTORE_SUPPORTED_PROTOCOLS = ["s3", "gs", "abfs", "abfss"]
|
|
19
20
|
|
|
@@ -77,21 +78,36 @@ def get_configured_fsspec_kwargs(
|
|
|
77
78
|
protocol: typing.Optional[str] = None, anonymous: bool = False
|
|
78
79
|
) -> typing.Dict[str, typing.Any]:
|
|
79
80
|
if protocol:
|
|
81
|
+
# Try to get storage config safely - may not be initialized for local operations
|
|
82
|
+
try:
|
|
83
|
+
storage_config = get_storage()
|
|
84
|
+
except InitializationError:
|
|
85
|
+
storage_config = None
|
|
86
|
+
|
|
80
87
|
match protocol:
|
|
81
88
|
case "s3":
|
|
82
89
|
# If the protocol is s3, we can use the s3 filesystem
|
|
83
90
|
from flyte.storage import S3
|
|
84
91
|
|
|
92
|
+
if storage_config and isinstance(storage_config, S3):
|
|
93
|
+
return storage_config.get_fsspec_kwargs(anonymous=anonymous)
|
|
94
|
+
|
|
85
95
|
return S3.auto().get_fsspec_kwargs(anonymous=anonymous)
|
|
86
96
|
case "gs":
|
|
87
97
|
# If the protocol is gs, we can use the gs filesystem
|
|
88
98
|
from flyte.storage import GCS
|
|
89
99
|
|
|
100
|
+
if storage_config and isinstance(storage_config, GCS):
|
|
101
|
+
return storage_config.get_fsspec_kwargs(anonymous=anonymous)
|
|
102
|
+
|
|
90
103
|
return GCS.auto().get_fsspec_kwargs(anonymous=anonymous)
|
|
91
104
|
case "abfs" | "abfss":
|
|
92
105
|
# If the protocol is abfs or abfss, we can use the abfs filesystem
|
|
93
106
|
from flyte.storage import ABFS
|
|
94
107
|
|
|
108
|
+
if storage_config and isinstance(storage_config, ABFS):
|
|
109
|
+
return storage_config.get_fsspec_kwargs(anonymous=anonymous)
|
|
110
|
+
|
|
95
111
|
return ABFS.auto().get_fsspec_kwargs(anonymous=anonymous)
|
|
96
112
|
case _:
|
|
97
113
|
return {}
|
|
@@ -145,7 +161,6 @@ async def get(from_path: str, to_path: Optional[str | pathlib.Path] = None, recu
|
|
|
145
161
|
else:
|
|
146
162
|
exists = file_system.exists(from_path)
|
|
147
163
|
if not exists:
|
|
148
|
-
# TODO: update exception to be more specific
|
|
149
164
|
raise AssertionError(f"Unable to load data from {from_path}")
|
|
150
165
|
file_system = _get_anonymous_filesystem(from_path)
|
|
151
166
|
logger.debug(f"Attempting anonymous get with {file_system}")
|
flyte/types/_type_engine.py
CHANGED
|
@@ -39,7 +39,6 @@ from pydantic import BaseModel
|
|
|
39
39
|
from typing_extensions import Annotated, get_args, get_origin
|
|
40
40
|
|
|
41
41
|
import flyte.storage as storage
|
|
42
|
-
from flyte._hash import HashMethod
|
|
43
42
|
from flyte._logging import logger
|
|
44
43
|
from flyte._utils.helpers import load_proto_from_file
|
|
45
44
|
from flyte.models import NativeInterface
|
|
@@ -456,35 +455,6 @@ class DataclassTransformer(TypeTransformer[object]):
|
|
|
456
455
|
2. Deserialization: The dataclass transformer converts the MessagePack Bytes back to a dataclass.
|
|
457
456
|
(1) Convert MessagePack Bytes to a dataclass using mashumaro.
|
|
458
457
|
(2) Handle dataclass attributes to ensure they are of the correct types.
|
|
459
|
-
|
|
460
|
-
TODO: Update the example using mashumaro instead of the older library
|
|
461
|
-
|
|
462
|
-
Example
|
|
463
|
-
|
|
464
|
-
.. code-block:: python
|
|
465
|
-
|
|
466
|
-
@dataclass
|
|
467
|
-
class Test:
|
|
468
|
-
a: int
|
|
469
|
-
b: str
|
|
470
|
-
|
|
471
|
-
t = Test(a=10,b="e")
|
|
472
|
-
JSONSchema().dump(t.schema())
|
|
473
|
-
|
|
474
|
-
Output will look like
|
|
475
|
-
|
|
476
|
-
.. code-block:: json
|
|
477
|
-
|
|
478
|
-
{'$schema': 'http://json-schema.org/draft-07/schema#',
|
|
479
|
-
'definitions': {'TestSchema': {'properties': {'a': {'title': 'a',
|
|
480
|
-
'type': 'number',
|
|
481
|
-
'format': 'integer'},
|
|
482
|
-
'b': {'title': 'b', 'type': 'string'}},
|
|
483
|
-
'type': 'object',
|
|
484
|
-
'additionalProperties': False}},
|
|
485
|
-
'$ref': '#/definitions/TestSchema'}
|
|
486
|
-
|
|
487
|
-
|
|
488
458
|
"""
|
|
489
459
|
|
|
490
460
|
def __init__(self) -> None:
|
|
@@ -616,7 +586,7 @@ class DataclassTransformer(TypeTransformer[object]):
|
|
|
616
586
|
}
|
|
617
587
|
)
|
|
618
588
|
|
|
619
|
-
# The type engine used to publish
|
|
589
|
+
# The type engine used to publish the type `structure` for attribute access. As of v2, this is no longer needed.
|
|
620
590
|
return types_pb2.LiteralType(
|
|
621
591
|
simple=types_pb2.SimpleType.STRUCT,
|
|
622
592
|
metadata=schema,
|
|
@@ -1096,23 +1066,6 @@ class TypeEngine(typing.Generic[T]):
|
|
|
1096
1066
|
):
|
|
1097
1067
|
raise TypeTransformerFailedError(f"Python value cannot be None, expected {python_type}/{expected}")
|
|
1098
1068
|
|
|
1099
|
-
@classmethod
|
|
1100
|
-
def calculate_hash(cls, python_val: typing.Any, python_type: Type[T]) -> Optional[str]:
|
|
1101
|
-
# In case the value is an annotated type we inspect the annotations and look for hash-related annotations.
|
|
1102
|
-
hsh = None
|
|
1103
|
-
if is_annotated(python_type):
|
|
1104
|
-
# We are now dealing with one of two cases:
|
|
1105
|
-
# 1. The annotated type is a `HashMethod`, which indicates that we should produce the hash using
|
|
1106
|
-
# the method indicated in the annotation.
|
|
1107
|
-
# 2. The annotated type is being used for a different purpose other than calculating hash values,
|
|
1108
|
-
# in which case we should just continue.
|
|
1109
|
-
for annotation in get_args(python_type)[1:]:
|
|
1110
|
-
if not isinstance(annotation, HashMethod):
|
|
1111
|
-
continue
|
|
1112
|
-
hsh = annotation.calculate(python_val)
|
|
1113
|
-
break
|
|
1114
|
-
return hsh
|
|
1115
|
-
|
|
1116
1069
|
@classmethod
|
|
1117
1070
|
async def to_literal(
|
|
1118
1071
|
cls, python_val: typing.Any, python_type: Type[T], expected: types_pb2.LiteralType
|
|
@@ -1125,8 +1078,6 @@ class TypeEngine(typing.Generic[T]):
|
|
|
1125
1078
|
lv = await transformer.to_literal(python_val, python_type, expected)
|
|
1126
1079
|
|
|
1127
1080
|
modify_literal_uris(lv)
|
|
1128
|
-
calculated_hash = cls.calculate_hash(python_val, python_type) or ""
|
|
1129
|
-
lv.hash = calculated_hash
|
|
1130
1081
|
return lv
|
|
1131
1082
|
|
|
1132
1083
|
@classmethod
|
|
@@ -1795,7 +1746,6 @@ class DictTransformer(TypeTransformer[dict]):
|
|
|
1795
1746
|
for k, v in python_val.items():
|
|
1796
1747
|
if type(k) is not str:
|
|
1797
1748
|
raise ValueError("Flyte MapType expects all keys to be strings")
|
|
1798
|
-
# TODO: log a warning for Annotated objects that contain HashMethod
|
|
1799
1749
|
|
|
1800
1750
|
_, v_type = self.extract_types(python_type)
|
|
1801
1751
|
lit_map[k] = TypeEngine.to_literal(v, cast(type, v_type), expected.map_value_type)
|
|
@@ -116,6 +116,8 @@ def main(
|
|
|
116
116
|
if name.startswith("{{"):
|
|
117
117
|
name = os.getenv("ACTION_NAME", "")
|
|
118
118
|
|
|
119
|
+
logger.warning(f"Flyte runtime started for action {name} with run name {run_name}")
|
|
120
|
+
|
|
119
121
|
if debug and name == "a0":
|
|
120
122
|
from flyte._debug.vscode import _start_vscode_server
|
|
121
123
|
|
|
@@ -168,6 +170,7 @@ def main(
|
|
|
168
170
|
await controller.stop()
|
|
169
171
|
|
|
170
172
|
asyncio.run(_run_and_stop())
|
|
173
|
+
logger.warning(f"Flyte runtime completed for action {name} with run name {run_name}")
|
|
171
174
|
|
|
172
175
|
|
|
173
176
|
if __name__ == "__main__":
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
flyte/__init__.py,sha256=RIvRNnyKc9TfF5FlvREETDuosgs66w6d_A-MPMbyy9E,2158
|
|
2
2
|
flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
|
|
3
3
|
flyte/_context.py,sha256=NGl-tDoTOoIljsUzD1IPTESOdaG8vKeoAzs5271XuPM,5244
|
|
4
|
-
flyte/_deploy.py,sha256=
|
|
4
|
+
flyte/_deploy.py,sha256=2V1OpmP2Rb3j0BuxGhjYzUcF--NrmAoLVO0Eq0usnw0,10635
|
|
5
5
|
flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
|
|
6
6
|
flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
|
|
7
|
-
flyte/_environment.py,sha256=
|
|
7
|
+
flyte/_environment.py,sha256=XYGscZ_I4xw-52o1ZULCGCVBY-l2m98rp9wpiQO4tQw,4590
|
|
8
8
|
flyte/_excepthook.py,sha256=nXts84rzEg6-7RtFarbKzOsRZTQR4plnbWVIFMAEprs,1310
|
|
9
9
|
flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
|
|
10
|
-
flyte/_hash.py,sha256=
|
|
11
|
-
flyte/_image.py,sha256=
|
|
12
|
-
flyte/_initialize.py,sha256=
|
|
10
|
+
flyte/_hash.py,sha256=KMKjoI7SaxXildb-xv6n5Vb32B0csvBiYc06iUe-BrI,137
|
|
11
|
+
flyte/_image.py,sha256=CSbH7XSSRSNtzri5hLOR-tKIaFW2m8VMEoC1TZmdg6M,38602
|
|
12
|
+
flyte/_initialize.py,sha256=trR10NvbDn7hRr0Tkk702D18CtZA7BA3PSIDgHr92eY,17733
|
|
13
13
|
flyte/_interface.py,sha256=1B9zIwFDjiVp_3l_mk8EpA4g3Re-6DUBEBi9z9vDvPs,3504
|
|
14
|
-
flyte/_logging.py,sha256=
|
|
15
|
-
flyte/_map.py,sha256=
|
|
16
|
-
flyte/_pod.py,sha256
|
|
14
|
+
flyte/_logging.py,sha256=eFplcnmHdhkJ8wNByFk_04fwqYYmS-GvyCEhqosyxdg,6088
|
|
15
|
+
flyte/_map.py,sha256=8u4jZsM26V-M-dhVbSnyqSrkzJnGgisN3kwwSNQZaa4,10697
|
|
16
|
+
flyte/_pod.py,sha256=MB5eP2WvTc5lD5ovdVlxoOpx-wJeutv0S64s75astLc,1105
|
|
17
17
|
flyte/_resources.py,sha256=L2JuvQDlMo1JLJeUmJPRwtWbunhR2xJEhFgQW5yc72c,9690
|
|
18
18
|
flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
19
19
|
flyte/_reusable_environment.py,sha256=qzmLJlHFiek8_k3EEqxew3837Pe2xjmz3mjGk_xqPEo,4857
|
|
20
|
-
flyte/_run.py,sha256=
|
|
20
|
+
flyte/_run.py,sha256=N5N2LPFIOgVBflGaL7WAErQyspGa3zlKuEQ1uoqVTuA,25901
|
|
21
21
|
flyte/_secret.py,sha256=wug5NbIYEkXO6FJkqnPRnPoc2nKDerQiemWtRGRi288,3576
|
|
22
|
-
flyte/_task.py,sha256=
|
|
23
|
-
flyte/_task_environment.py,sha256=
|
|
22
|
+
flyte/_task.py,sha256=kYoguvcRXwkwCbFBVCl6MXXYKHgADl2H53qWcs4CEQ4,20201
|
|
23
|
+
flyte/_task_environment.py,sha256=F4ZmitZi845zw-VwTHvC78qpuBEzmeR3cYObgmE8jTQ,10061
|
|
24
24
|
flyte/_task_plugins.py,sha256=9MH3nFPOH_e8_92BT4sFk4oyAnj6GJFvaPYWaraX7yE,1037
|
|
25
25
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
26
26
|
flyte/_tools.py,sha256=lB3OiJSAhxzSMCYjLUF6nZjlFsmNpaRXtr3_Fefcxbg,747
|
|
27
|
-
flyte/_trace.py,sha256
|
|
28
|
-
flyte/_version.py,sha256=
|
|
29
|
-
flyte/errors.py,sha256=
|
|
27
|
+
flyte/_trace.py,sha256=-BIprs2MbupWl3vsC_Pn33SV3fSVku1rUIsnwfmrIy0,5204
|
|
28
|
+
flyte/_version.py,sha256=nQUNxDZJt__tA11kox5MN0Qw8wDm85cQSW36nTZmT7s,722
|
|
29
|
+
flyte/errors.py,sha256=utl0biQhyYbNdkddVsJAGbGZgUPka_DYnUaHTlQL-Jc,6451
|
|
30
30
|
flyte/extend.py,sha256=GB4ZedGzKa30vYWRVPOdxEeK62xnUVFY4z2tD6H9eEw,376
|
|
31
|
-
flyte/models.py,sha256=
|
|
31
|
+
flyte/models.py,sha256=dtaQyU4PhtEr5L39xwiPDVKSYuYKaArRfRNliIfPUf8,16207
|
|
32
32
|
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
flyte/_bin/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
|
|
35
|
-
flyte/_bin/runtime.py,sha256=
|
|
35
|
+
flyte/_bin/runtime.py,sha256=CoMgKQ_pBifnHsNF1MlBGmMrenrKXuMIHTLRF7MKDfA,6193
|
|
36
36
|
flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
|
|
37
37
|
flyte/_cache/cache.py,sha256=-oS5q6QpkxPqZ8gWkn8uVNgzx3JFuXaWLV-h0KVKW9c,5010
|
|
38
38
|
flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
|
|
@@ -45,36 +45,36 @@ flyte/_code_bundle/bundle.py,sha256=L5RgACketbali3v9s5r97nsoueKWtaWyHbv2p2MeMIE,
|
|
|
45
45
|
flyte/_debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
46
|
flyte/_debug/constants.py,sha256=oAiXr59RJfg1rjlY4_Iw1SDH1V61kvqBLBua3aQ8oW4,1641
|
|
47
47
|
flyte/_debug/utils.py,sha256=Nc6n1Y_OdLMa4VtvigP6U738D4Fpbuog94g37tPwu6k,596
|
|
48
|
-
flyte/_debug/vscode.py,sha256=
|
|
48
|
+
flyte/_debug/vscode.py,sha256=5HlwnWZbVyhVCGNk95boBdZYADUJp2RVKWCB-6XFtZY,11196
|
|
49
49
|
flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
|
|
50
|
-
flyte/_internal/controllers/__init__.py,sha256=
|
|
51
|
-
flyte/_internal/controllers/_local_controller.py,sha256=
|
|
50
|
+
flyte/_internal/controllers/__init__.py,sha256=yNALzu-3YVii_D_GlrBoWUpL4PTLYUa7oIKnA7hbee0,4296
|
|
51
|
+
flyte/_internal/controllers/_local_controller.py,sha256=lXFvmxd_ctinJ5z4Fd_bZW0_LcOn0vc12F1try6uYgg,7308
|
|
52
52
|
flyte/_internal/controllers/_trace.py,sha256=ywFg_M2nGrCKYLbh4iVdsVlRtPT1K2S-XZMvDJU8AKU,1499
|
|
53
53
|
flyte/_internal/controllers/remote/__init__.py,sha256=9_azH1eHLqY6VULpDugXi7Kf1kK1ODqEnsQ_3wM6IqU,1919
|
|
54
54
|
flyte/_internal/controllers/remote/_action.py,sha256=zYilKk3yq2jOxUm258xd4TRl1o3T2la4PXFc0xjcytI,7301
|
|
55
55
|
flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
|
|
56
|
-
flyte/_internal/controllers/remote/_controller.py,sha256=
|
|
57
|
-
flyte/_internal/controllers/remote/_core.py,sha256=
|
|
56
|
+
flyte/_internal/controllers/remote/_controller.py,sha256=IZ74-PdpsDplRAMutvlwFVzrSjQdJJ-naUb2d2SLXKM,25175
|
|
57
|
+
flyte/_internal/controllers/remote/_core.py,sha256=A7GX-V8LqFoF0Llfvxy3xmrRsiIHSJv2z2gdFWTHs48,19053
|
|
58
58
|
flyte/_internal/controllers/remote/_informer.py,sha256=w4p29_dzS_ns762eNBljvnbJLgCm36d1Ogo2ZkgV1yg,14418
|
|
59
59
|
flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
|
|
60
60
|
flyte/_internal/imagebuild/__init__.py,sha256=dwXdJ1jMhw9RF8itF7jkPLanvX1yCviSns7hE5eoIts,102
|
|
61
|
-
flyte/_internal/imagebuild/docker_builder.py,sha256=
|
|
61
|
+
flyte/_internal/imagebuild/docker_builder.py,sha256=qzKqicgGpWB6wC2DYTc4yh5LJT_hbQ7nacIqnx4bkOQ,21595
|
|
62
62
|
flyte/_internal/imagebuild/image_builder.py,sha256=dXBXl62qcPabus6dR3eP8P9mBGNhpZHZ2Xm12AymKkk,11150
|
|
63
|
-
flyte/_internal/imagebuild/remote_builder.py,sha256=
|
|
64
|
-
flyte/_internal/imagebuild/utils.py,sha256=
|
|
63
|
+
flyte/_internal/imagebuild/remote_builder.py,sha256=nJP-8NaOYubzcfPH8T_iOM38bdyGk1pYd1GzZkZOmaM,13901
|
|
64
|
+
flyte/_internal/imagebuild/utils.py,sha256=2MMCNyyMoPLO8sJ5J9TnrZwd1xWTty5AW2VVp8ZUd_M,1250
|
|
65
65
|
flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
66
|
flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3Ck3mTlTsm66UI,1973
|
|
67
67
|
flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
|
|
68
68
|
flyte/_internal/resolvers/default.py,sha256=nX4DHUYod1nRvEsl_vSgutQVEdExu2xL8pRkyi4VWbY,981
|
|
69
69
|
flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
-
flyte/_internal/runtime/convert.py,sha256=
|
|
70
|
+
flyte/_internal/runtime/convert.py,sha256=JIjjJXqhopUj8DatDNyVJGpObCZWHcIQupVGI_CLiJU,18793
|
|
71
71
|
flyte/_internal/runtime/entrypoints.py,sha256=WxaabGgnJZNCtfrA6afwwJyv-0PecsGuAWMn1NiMwKs,6734
|
|
72
72
|
flyte/_internal/runtime/io.py,sha256=ysL7hMpfVumvsEYWOM-_VPa8MXn5_X_CZorKbOThyv4,5935
|
|
73
73
|
flyte/_internal/runtime/resources_serde.py,sha256=TObMVsSjVcQhcY8-nY81pbvrz7TP-adDD5xV-LqAaxM,4813
|
|
74
74
|
flyte/_internal/runtime/reuse.py,sha256=uGjomQz4X4JvPv6M8eDW94g4YfHJugNYufwK6eVFlwI,4901
|
|
75
75
|
flyte/_internal/runtime/rusty.py,sha256=e2uSg9-Hooa65-BIuqXhIrEq86RHteFFs3W7dDuM3uo,6946
|
|
76
76
|
flyte/_internal/runtime/task_serde.py,sha256=lE1x_hEEvPkRN_ogVqWL76dGruG2pZt1q0LyCE2d-f4,14093
|
|
77
|
-
flyte/_internal/runtime/taskrunner.py,sha256=
|
|
77
|
+
flyte/_internal/runtime/taskrunner.py,sha256=T1dviDXYds18eSwT_J6AMvD4oY91t1r_31EAFA5grO0,7683
|
|
78
78
|
flyte/_internal/runtime/types_serde.py,sha256=EjRh9Yypx9-20XXQprtNgp766LeQVRoYWtY6XPGMZQg,1813
|
|
79
79
|
flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
80
|
flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
|
|
@@ -165,30 +165,33 @@ flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
|
|
|
165
165
|
flyte/cli/_abort.py,sha256=Ty-63Gtd2PUn6lCuL5AaasfBoPu7TDSU5EQKVbkF4qw,661
|
|
166
166
|
flyte/cli/_build.py,sha256=S8I53ou-rt3m54A_Sjg2sPU_Cw7D1GpkS5DO766sfk4,3534
|
|
167
167
|
flyte/cli/_common.py,sha256=9BoRYzQBxuKdczC13u_2auDV8wYABvf3lWZhPcfGclA,13591
|
|
168
|
-
flyte/cli/_create.py,sha256=
|
|
168
|
+
flyte/cli/_create.py,sha256=3nNf5XxsynITyJljvDYlj2la7ywARF9Tg7GbuIOo1Yw,5640
|
|
169
169
|
flyte/cli/_delete.py,sha256=VTmXv09PBjkdtyl23mbSjIQQlN7Y1AI_bO0GkHP-f9E,546
|
|
170
|
-
flyte/cli/_deploy.py,sha256=
|
|
170
|
+
flyte/cli/_deploy.py,sha256=mUCq8ZVcl3p511lcf2sY3Z9r2INCzTMKgKoRg2_Su-8,8881
|
|
171
171
|
flyte/cli/_gen.py,sha256=7K2eYQLGVr26I2OC3Xe_bzAn4ANYA5mPlBW5m1476PM,6079
|
|
172
172
|
flyte/cli/_get.py,sha256=E2HTekZcVbTtwy6LnM5WHzF41aT1uPRWqV1rYB4H5B8,10420
|
|
173
173
|
flyte/cli/_option.py,sha256=oC1Gs0u0UrOC1SsrFo-iCuAkqQvI1wJWCdjYXA9rW4Q,1445
|
|
174
|
-
flyte/cli/_params.py,sha256=
|
|
175
|
-
flyte/cli/_run.py,sha256=
|
|
174
|
+
flyte/cli/_params.py,sha256=oCSnBh6fDSS1HLFZvNRstfXlaJHTWaOVwMQ_R6icehs,20009
|
|
175
|
+
flyte/cli/_run.py,sha256=bd024EikZwqHBSLCr1K45bkwwXMD8vxnl_0EIQAh4T0,16376
|
|
176
176
|
flyte/cli/main.py,sha256=t5Ivjipd6bVHIGjRBGwkeP577j59ASq9c1wgoNf3h2c,5334
|
|
177
177
|
flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
|
|
178
|
-
flyte/config/_config.py,sha256
|
|
178
|
+
flyte/config/_config.py,sha256=-J3a9Iq_XN5GUREEGZcksElHaD0woY_kKNfCrmyKn5w,10807
|
|
179
179
|
flyte/config/_internal.py,sha256=LMcAtDjvTjf5bGlsJVxPuLxQQ82mLd00xK5-JlYGCi8,2989
|
|
180
|
-
flyte/config/_reader.py,sha256=
|
|
180
|
+
flyte/config/_reader.py,sha256=aG27pQAtoEl-r7uZmvZIWz_-lQbh3U4-3-7_Rl7CCZA,7282
|
|
181
181
|
flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
182
|
flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
|
|
183
183
|
flyte/extras/_container.py,sha256=xfbxaGrx2JyQyrvQx1UWTzho2ion8_xujPW5V4uDEIs,11818
|
|
184
|
+
flyte/git/__init__.py,sha256=OYDrwq1mZ70xC4QC205s1seFvdk9fjDPSv8DrbopdC8,70
|
|
185
|
+
flyte/git/_config.py,sha256=sxiaqwEVwlI6fCznlOmj2QxX9v2pQm-avW2lPj95mU8,632
|
|
184
186
|
flyte/io/__init__.py,sha256=qF8jq_IKuocuGU0LAvoy_uxjMs4G-vXjDA9Prba0JGU,538
|
|
185
|
-
flyte/io/_dir.py,sha256=
|
|
186
|
-
flyte/io/_file.py,sha256=
|
|
187
|
+
flyte/io/_dir.py,sha256=BED3aupTJUkan3dBXoqZ0r5u-F1Nm_8LUtlCxEg4gUM,16736
|
|
188
|
+
flyte/io/_file.py,sha256=tMLp4rd5l_RZzM5zWSn82aSK_xcvi6fJ1Aogkvgc6tE,18641
|
|
189
|
+
flyte/io/_hashing_io.py,sha256=QvhQ4K5jiHgzzPqZY4gFz5Fm-BAzq6bzyCpzXhfnWlk,10014
|
|
187
190
|
flyte/io/_dataframe/__init__.py,sha256=SDgNw45uf7m3cHhbUCOA3V3-5A2zSKgPcsWriRLwd74,4283
|
|
188
|
-
flyte/io/_dataframe/basic_dfs.py,sha256=
|
|
189
|
-
flyte/io/_dataframe/dataframe.py,sha256=
|
|
191
|
+
flyte/io/_dataframe/basic_dfs.py,sha256=tUJKiBbIJ30r9hjwMo-y3bxjdLmyf3WVe9n9tYskKWk,8043
|
|
192
|
+
flyte/io/_dataframe/dataframe.py,sha256=YLXqUt-1rzE4nklmSWbe-O2-6jmR-sfzdKVVhq80tK8,49283
|
|
190
193
|
flyte/remote/__init__.py,sha256=y9eke9JzEJkygk8eKZjSj44fJGlyepuW4i-j6lbCAPY,617
|
|
191
|
-
flyte/remote/_action.py,sha256=
|
|
194
|
+
flyte/remote/_action.py,sha256=o19TUh7qo5JrCU1NhqXWAPKCWco6yjrvKVP5gt6fskU,24254
|
|
192
195
|
flyte/remote/_common.py,sha256=2XLLxWL1NjwfdPQUhOfYn3zMrg-yGNfi6NYIaqHutUA,862
|
|
193
196
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
194
197
|
flyte/remote/_data.py,sha256=zYXXlqEvPdsC44Gm7rP_hQjRgVe3EFfhZNEWKF0p4MQ,6163
|
|
@@ -196,7 +199,7 @@ flyte/remote/_logs.py,sha256=t4H7DEZDYJC9Vx7oJ7R7m4Z56bWBAjm9ylU4UP1hKq0,6711
|
|
|
196
199
|
flyte/remote/_project.py,sha256=IbkxKRAvZunKLIwpmcreA4O-0GxWC0KPC62WSYvsK34,2868
|
|
197
200
|
flyte/remote/_run.py,sha256=FtIIMNODQGyc6oYLmuI_ku3bUxhDFIE-UU7ecMNZvBg,10018
|
|
198
201
|
flyte/remote/_secret.py,sha256=CF9WiZKeMJaUNeIawVPf8XHk9OjFt2wc0m7S9ZOdGbE,4399
|
|
199
|
-
flyte/remote/_task.py,sha256=
|
|
202
|
+
flyte/remote/_task.py,sha256=EuTNXfnqksQf-UxLMIo20sds53mbyl0qpgjujnw3y-A,18654
|
|
200
203
|
flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
204
|
flyte/remote/_client/_protocols.py,sha256=JyBWHs5WsVOxEDUyG9X7wPLDzzzjkoaNhJlU-X4YlN0,5599
|
|
202
205
|
flyte/remote/_client/controlplane.py,sha256=AUzZZotAZVtyrQRKSZrVqnjgM1R8xK1pHrdeD6KSom8,3608
|
|
@@ -219,12 +222,12 @@ flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
219
222
|
flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
|
|
220
223
|
flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
|
|
221
224
|
flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
|
|
222
|
-
flyte/report/_report.py,sha256=
|
|
225
|
+
flyte/report/_report.py,sha256=b-VMFke-5SitqGfNEXKTm0PuEPzonWpvlAl5V3wSh4o,5328
|
|
223
226
|
flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
|
|
224
227
|
flyte/storage/__init__.py,sha256=0tcI9qtIVf0Fxczkno03vpwBDVlKMDSNN38uxMTH1bE,569
|
|
225
228
|
flyte/storage/_config.py,sha256=xVibWJaioOnkeTb_M30azgiUe1jvmQaOWRZEkpdoTao,8680
|
|
226
229
|
flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
|
|
227
|
-
flyte/storage/_storage.py,sha256=
|
|
230
|
+
flyte/storage/_storage.py,sha256=i9oAn9Co1S5U0noLeDxG9ROQd5KS-b7G1k1fMoVuYbE,14046
|
|
228
231
|
flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
|
|
229
232
|
flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
|
|
230
233
|
flyte/syncify/_api.py,sha256=k4LQB8odJb5Fx2dabL340g0Tq1bKfSG_ZHsV5qRodE0,14858
|
|
@@ -233,13 +236,13 @@ flyte/types/_interface.py,sha256=5y9EC5r897xz03Hh0ltF8QVGKMfMfAznws-hKSEO4Go,167
|
|
|
233
236
|
flyte/types/_pickle.py,sha256=PjdR66OTDMZ3OYq6GvM_Ua0cIo5t2XQaIjmpJ9xo4Ys,4050
|
|
234
237
|
flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
235
238
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
236
|
-
flyte/types/_type_engine.py,sha256=
|
|
239
|
+
flyte/types/_type_engine.py,sha256=IwBdBXr3sso2Y-ZMiIBmXmczfI7GyJMpThXDuQiOqco,94951
|
|
237
240
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
238
|
-
flyte-2.0.
|
|
239
|
-
flyte-2.0.
|
|
240
|
-
flyte-2.0.
|
|
241
|
-
flyte-2.0.
|
|
242
|
-
flyte-2.0.
|
|
243
|
-
flyte-2.0.
|
|
244
|
-
flyte-2.0.
|
|
245
|
-
flyte-2.0.
|
|
241
|
+
flyte-2.0.0b19.data/scripts/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
|
|
242
|
+
flyte-2.0.0b19.data/scripts/runtime.py,sha256=CoMgKQ_pBifnHsNF1MlBGmMrenrKXuMIHTLRF7MKDfA,6193
|
|
243
|
+
flyte-2.0.0b19.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
244
|
+
flyte-2.0.0b19.dist-info/METADATA,sha256=EYDtynzbTo44xv8-onc7OLPeT1giPi5XcW_k_b2SrII,10012
|
|
245
|
+
flyte-2.0.0b19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
246
|
+
flyte-2.0.0b19.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
247
|
+
flyte-2.0.0b19.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
248
|
+
flyte-2.0.0b19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|