flyte 2.0.0b6__py3-none-any.whl → 2.0.0b8__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 +4 -17
- flyte/_cache/cache.py +1 -1
- flyte/_deploy.py +2 -1
- flyte/_image.py +5 -3
- flyte/_internal/controllers/remote/_controller.py +15 -0
- flyte/_internal/controllers/remote/_core.py +3 -3
- flyte/_internal/imagebuild/docker_builder.py +36 -17
- flyte/_internal/imagebuild/remote_builder.py +4 -16
- flyte/_internal/imagebuild/utils.py +29 -0
- flyte/_internal/runtime/rusty.py +41 -18
- flyte/_run.py +2 -2
- flyte/_task_environment.py +2 -2
- flyte/_version.py +2 -2
- flyte/cli/_build.py +1 -1
- flyte/cli/_common.py +34 -18
- flyte/cli/_create.py +24 -2
- flyte/cli/_deploy.py +6 -10
- flyte/cli/_get.py +18 -11
- flyte/cli/_option.py +33 -0
- flyte/cli/_run.py +18 -12
- flyte/cli/main.py +10 -6
- flyte/errors.py +22 -0
- flyte/remote/_action.py +6 -4
- flyte/remote/_common.py +30 -0
- flyte/remote/_logs.py +3 -3
- flyte/remote/_project.py +9 -7
- flyte/remote/_run.py +12 -4
- flyte/remote/_secret.py +2 -1
- flyte/remote/_task.py +51 -13
- flyte/syncify/_api.py +4 -0
- {flyte-2.0.0b6.data → flyte-2.0.0b8.data}/scripts/runtime.py +4 -17
- {flyte-2.0.0b6.dist-info → flyte-2.0.0b8.dist-info}/METADATA +1 -1
- {flyte-2.0.0b6.dist-info → flyte-2.0.0b8.dist-info}/RECORD +37 -34
- {flyte-2.0.0b6.dist-info → flyte-2.0.0b8.dist-info}/WHEEL +0 -0
- {flyte-2.0.0b6.dist-info → flyte-2.0.0b8.dist-info}/entry_points.txt +0 -0
- {flyte-2.0.0b6.dist-info → flyte-2.0.0b8.dist-info}/licenses/LICENSE +0 -0
- {flyte-2.0.0b6.dist-info → flyte-2.0.0b8.dist-info}/top_level.txt +0 -0
flyte/syncify/_api.py
CHANGED
|
@@ -64,6 +64,10 @@ class _BackgroundLoop:
|
|
|
64
64
|
atexit.register(self.stop)
|
|
65
65
|
|
|
66
66
|
def _run(self):
|
|
67
|
+
import flyte.errors
|
|
68
|
+
|
|
69
|
+
# Set the exception handler to silence specific gRPC polling errors
|
|
70
|
+
self.loop.set_exception_handler(flyte.errors.silence_grpc_polling_error)
|
|
67
71
|
asyncio.set_event_loop(self.loop)
|
|
68
72
|
self.loop.run_forever()
|
|
69
73
|
|
|
@@ -26,7 +26,6 @@ DOMAIN_NAME = "FLYTE_INTERNAL_TASK_DOMAIN"
|
|
|
26
26
|
ORG_NAME = "_U_ORG_NAME"
|
|
27
27
|
ENDPOINT_OVERRIDE = "_U_EP_OVERRIDE"
|
|
28
28
|
RUN_OUTPUT_BASE_DIR = "_U_RUN_BASE"
|
|
29
|
-
ENABLE_REF_TASKS = "_REF_TASKS" # This is a temporary flag to enable reference tasks in the runtime.
|
|
30
29
|
|
|
31
30
|
# TODO: Remove this after proper auth is implemented
|
|
32
31
|
_UNION_EAGER_API_KEY_ENV_VAR = "_UNION_EAGER_API_KEY"
|
|
@@ -87,6 +86,7 @@ def main(
|
|
|
87
86
|
|
|
88
87
|
import flyte
|
|
89
88
|
import flyte._utils as utils
|
|
89
|
+
import flyte.errors
|
|
90
90
|
from flyte._initialize import init
|
|
91
91
|
from flyte._internal.controllers import create_controller
|
|
92
92
|
from flyte._internal.imagebuild.image_builder import ImageCache
|
|
@@ -123,22 +123,7 @@ def main(
|
|
|
123
123
|
logger.debug(f"Using controller endpoint: {ep} with kwargs: {controller_kwargs}")
|
|
124
124
|
|
|
125
125
|
bundle = CodeBundle(tgz=tgz, pkl=pkl, destination=dest, computed_version=version)
|
|
126
|
-
|
|
127
|
-
# We init regular client here so that reference tasks can work
|
|
128
|
-
# Current reference tasks will not work with remote controller, because we create 2 different
|
|
129
|
-
# channels on different threads and this is not supported by grpcio or the auth system. It ends up leading
|
|
130
|
-
# File "src/python/grpcio/grpc/_cython/_cygrpc/aio/completion_queue.pyx.pxi", line 147,
|
|
131
|
-
# in grpc._cython.cygrpc.PollerCompletionQueue._handle_events
|
|
132
|
-
# BlockingIOError: [Errno 11] Resource temporarily unavailable
|
|
133
|
-
# TODO solution is to use a single channel for both controller and reference tasks, but this requires a refactor
|
|
134
|
-
if enable_ref_tasks:
|
|
135
|
-
logger.warning(
|
|
136
|
-
"Reference tasks are enabled. This will initialize client and you will see a BlockIOError. "
|
|
137
|
-
"This is harmless, but a nuisance. We are working on a fix."
|
|
138
|
-
)
|
|
139
|
-
init(org=org, project=project, domain=domain, **controller_kwargs)
|
|
140
|
-
else:
|
|
141
|
-
init()
|
|
126
|
+
init(org=org, project=project, domain=domain, **controller_kwargs)
|
|
142
127
|
# Controller is created with the same kwargs as init, so that it can be used to run tasks
|
|
143
128
|
controller = create_controller(ct="remote", **controller_kwargs)
|
|
144
129
|
|
|
@@ -164,6 +149,8 @@ def main(
|
|
|
164
149
|
|
|
165
150
|
# Run both coroutines concurrently and wait for first to finish and cancel the other
|
|
166
151
|
async def _run_and_stop():
|
|
152
|
+
loop = asyncio.get_event_loop()
|
|
153
|
+
loop.set_exception_handler(flyte.errors.silence_grpc_polling_error)
|
|
167
154
|
await utils.run_coros(controller_failure, task_coroutine)
|
|
168
155
|
await controller.stop()
|
|
169
156
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
flyte/__init__.py,sha256=jWSynBJyJ0WuSjE8HID2MT386ZNlRzx7LzCHW1y_XNw,1468
|
|
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=6FTL7m3unDG-1V-5hTF2pRnql-6e9pRRyCM9o3xiHWQ,10541
|
|
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=6ks0lkvGt4oSqM5EFPFlhWC3eoUghxUvCn0wstcAD2E,3713
|
|
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=
|
|
11
|
+
flyte/_image.py,sha256=m7wuVTS5xGQrYgS58hEBXJ8GY7YcYMvgPtNp3fRm2fA,37392
|
|
12
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=QrT4Z30C2tsZ-yIojisQODTuq6Y6zSJYuTrLgF58UYc,3664
|
|
@@ -17,23 +17,23 @@ flyte/_pod.py,sha256=--72b0c6IkOEbBwZPLmgl-ll-j7ECfG-kh75LzBnNN8,1068
|
|
|
17
17
|
flyte/_resources.py,sha256=L2JuvQDlMo1JLJeUmJPRwtWbunhR2xJEhFgQW5yc72c,9690
|
|
18
18
|
flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
19
19
|
flyte/_reusable_environment.py,sha256=f8Y1GilUwGcXH4n2Fckrnx0SrZmhk3nCfoe-TqUKivI,3740
|
|
20
|
-
flyte/_run.py,sha256=
|
|
20
|
+
flyte/_run.py,sha256=LEZQFhIUf9retXvNrzPN2HV-LkTX77dK7YmL8L0zQmk,25678
|
|
21
21
|
flyte/_secret.py,sha256=89VIihdXI03irHb217GMfipt7jzXBafm17YYmyv6gHo,3245
|
|
22
22
|
flyte/_task.py,sha256=FUqGDtDmhOVPdv-UVko4h0oecoAcc3JZKu8S__cwUpY,19805
|
|
23
|
-
flyte/_task_environment.py,sha256=
|
|
23
|
+
flyte/_task_environment.py,sha256=hblOR-B_Cc6ibpFkedZSyN6V9vi0_vZ0132YKN5D4EM,9826
|
|
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=tWb0sx3t3mm4jbaQVjCTc9y39oR_Ibo3z_KHToP3Lto,966
|
|
27
27
|
flyte/_trace.py,sha256=SSE1nzUgmVTS2xFNtchEOjEjlRavMOIInasXzY8i9lU,4911
|
|
28
|
-
flyte/_version.py,sha256=
|
|
29
|
-
flyte/errors.py,sha256=
|
|
28
|
+
flyte/_version.py,sha256=_KVkHM5e9KFXaa0WlXQpBKZVOwVoURoWGQnGv9wA_0A,519
|
|
29
|
+
flyte/errors.py,sha256=z28rhbNmJF5Ie7quQWtoSL4K5p_tC3QjZDIZTupNQFw,6395
|
|
30
30
|
flyte/extend.py,sha256=GB4ZedGzKa30vYWRVPOdxEeK62xnUVFY4z2tD6H9eEw,376
|
|
31
31
|
flyte/models.py,sha256=2TgfrkPPgcnnk1P_MO5SEmOYAUbsMKl3gxIDwhW2yEU,15674
|
|
32
32
|
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
flyte/_bin/runtime.py,sha256=
|
|
34
|
+
flyte/_bin/runtime.py,sha256=8U_tIhdF8phBLDFr0U1xv92OKK5RquiaTJFv8v_fIgQ,5537
|
|
35
35
|
flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
|
|
36
|
-
flyte/_cache/cache.py,sha256
|
|
36
|
+
flyte/_cache/cache.py,sha256=-oS5q6QpkxPqZ8gWkn8uVNgzx3JFuXaWLV-h0KVKW9c,5010
|
|
37
37
|
flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
|
|
38
38
|
flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
|
|
39
39
|
flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
|
|
@@ -48,14 +48,15 @@ flyte/_internal/controllers/_trace.py,sha256=ywFg_M2nGrCKYLbh4iVdsVlRtPT1K2S-XZM
|
|
|
48
48
|
flyte/_internal/controllers/remote/__init__.py,sha256=9_azH1eHLqY6VULpDugXi7Kf1kK1ODqEnsQ_3wM6IqU,1919
|
|
49
49
|
flyte/_internal/controllers/remote/_action.py,sha256=ENV1thRXllSpi2s4idL-vCVcmXQNS17hmP2lMDKzNdo,7397
|
|
50
50
|
flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
|
|
51
|
-
flyte/_internal/controllers/remote/_controller.py,sha256=
|
|
52
|
-
flyte/_internal/controllers/remote/_core.py,sha256=
|
|
51
|
+
flyte/_internal/controllers/remote/_controller.py,sha256=ZH2w_HzNCN0GbRISpIdI7wbtc7o28j7aeOUhhZzLpS0,25802
|
|
52
|
+
flyte/_internal/controllers/remote/_core.py,sha256=R-gm0tFzsdvyCbrPs0zikXCnzyaTeCQ9qz6iE05nBls,19043
|
|
53
53
|
flyte/_internal/controllers/remote/_informer.py,sha256=w4p29_dzS_ns762eNBljvnbJLgCm36d1Ogo2ZkgV1yg,14418
|
|
54
54
|
flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
|
|
55
55
|
flyte/_internal/imagebuild/__init__.py,sha256=dwXdJ1jMhw9RF8itF7jkPLanvX1yCviSns7hE5eoIts,102
|
|
56
|
-
flyte/_internal/imagebuild/docker_builder.py,sha256=
|
|
56
|
+
flyte/_internal/imagebuild/docker_builder.py,sha256=Lb9kKmBcEDKaWmyxgHW15BBYRMEQknM72pw8BNfRpTA,21160
|
|
57
57
|
flyte/_internal/imagebuild/image_builder.py,sha256=dXBXl62qcPabus6dR3eP8P9mBGNhpZHZ2Xm12AymKkk,11150
|
|
58
|
-
flyte/_internal/imagebuild/remote_builder.py,sha256=
|
|
58
|
+
flyte/_internal/imagebuild/remote_builder.py,sha256=S83QZc5nblQaEyTKn2vxQdvLBIDtvNhDDKRjjjFJ-to,10622
|
|
59
|
+
flyte/_internal/imagebuild/utils.py,sha256=_ULn4jzoffXbuFpB-o_Lro-PvZ9KObYgtELC31NXsgM,1160
|
|
59
60
|
flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
61
|
flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3Ck3mTlTsm66UI,1973
|
|
61
62
|
flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
|
|
@@ -66,7 +67,7 @@ flyte/_internal/runtime/entrypoints.py,sha256=9Ng-aQ45M-_MMWeOe9uGmgx69qO9b0xaMR
|
|
|
66
67
|
flyte/_internal/runtime/io.py,sha256=ysL7hMpfVumvsEYWOM-_VPa8MXn5_X_CZorKbOThyv4,5935
|
|
67
68
|
flyte/_internal/runtime/resources_serde.py,sha256=TObMVsSjVcQhcY8-nY81pbvrz7TP-adDD5xV-LqAaxM,4813
|
|
68
69
|
flyte/_internal/runtime/reuse.py,sha256=WEuBfC9tBezxaIXeUQDgnJfnRHiUmPK0S25nTOFle4E,4676
|
|
69
|
-
flyte/_internal/runtime/rusty.py,sha256=
|
|
70
|
+
flyte/_internal/runtime/rusty.py,sha256=e2uSg9-Hooa65-BIuqXhIrEq86RHteFFs3W7dDuM3uo,6946
|
|
70
71
|
flyte/_internal/runtime/task_serde.py,sha256=n7cGuD3yPjtZ5gJOwQ-7sNfDaLdTghdT3o4xPv7aVfU,14108
|
|
71
72
|
flyte/_internal/runtime/taskrunner.py,sha256=rHWS4t5qgZnzGdGrs0_O0sSs_PVGoE1CNPDb-fTwwmo,7332
|
|
72
73
|
flyte/_internal/runtime/types_serde.py,sha256=EjRh9Yypx9-20XXQprtNgp766LeQVRoYWtY6XPGMZQg,1813
|
|
@@ -157,16 +158,17 @@ flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94
|
|
|
157
158
|
flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
158
159
|
flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
|
|
159
160
|
flyte/cli/_abort.py,sha256=Ty-63Gtd2PUn6lCuL5AaasfBoPu7TDSU5EQKVbkF4qw,661
|
|
160
|
-
flyte/cli/_build.py,sha256=
|
|
161
|
-
flyte/cli/_common.py,sha256=
|
|
162
|
-
flyte/cli/_create.py,sha256=
|
|
161
|
+
flyte/cli/_build.py,sha256=gX8fqYAMoArn8kfR__5GtWc9dJahV9bPkSljOCg5zvI,3540
|
|
162
|
+
flyte/cli/_common.py,sha256=vKgf4UaY3NrwIV2_rjBqwu_rskhh4Dl4g9dJOqVTNss,13201
|
|
163
|
+
flyte/cli/_create.py,sha256=tXDhZAdsxvpQ4ngO4U-PhyYwzQ3Hi2AJrNtZ3eqJptQ,5541
|
|
163
164
|
flyte/cli/_delete.py,sha256=VTmXv09PBjkdtyl23mbSjIQQlN7Y1AI_bO0GkHP-f9E,546
|
|
164
|
-
flyte/cli/_deploy.py,sha256=
|
|
165
|
+
flyte/cli/_deploy.py,sha256=sDbO8gobXR4O0Vlp3RKEH-kBSr25BiXJIoHVwau9Occ,8877
|
|
165
166
|
flyte/cli/_gen.py,sha256=ni3E65_wSBc9x5NNbq1REuxfZCJz-ioLMVQnZIgwyYg,5745
|
|
166
|
-
flyte/cli/_get.py,sha256=
|
|
167
|
+
flyte/cli/_get.py,sha256=lzjg62at9oAswuOBORlg5B-LSRrNJgC6C2UViQuzBgk,10343
|
|
168
|
+
flyte/cli/_option.py,sha256=oC1Gs0u0UrOC1SsrFo-iCuAkqQvI1wJWCdjYXA9rW4Q,1445
|
|
167
169
|
flyte/cli/_params.py,sha256=8Gj8UYGHwu-SUXGWCTRX5QsVf19NiajhaUMMae6FF9o,19466
|
|
168
|
-
flyte/cli/_run.py,sha256=
|
|
169
|
-
flyte/cli/main.py,sha256=
|
|
170
|
+
flyte/cli/_run.py,sha256=qf_E60ZMT06g6j50P1_q5_y0uslIF9FQZE3s4PHycmg,7787
|
|
171
|
+
flyte/cli/main.py,sha256=t5Ivjipd6bVHIGjRBGwkeP577j59ASq9c1wgoNf3h2c,5334
|
|
170
172
|
flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
|
|
171
173
|
flyte/config/_config.py,sha256=WElU--Kw4MM9zx1v-rLD8qYu2T5Zk0-1QbTpkEc27bc,10779
|
|
172
174
|
flyte/config/_internal.py,sha256=LMcAtDjvTjf5bGlsJVxPuLxQQ82mLd00xK5-JlYGCi8,2989
|
|
@@ -181,14 +183,15 @@ flyte/io/_dataframe/__init__.py,sha256=SDgNw45uf7m3cHhbUCOA3V3-5A2zSKgPcsWriRLwd
|
|
|
181
183
|
flyte/io/_dataframe/basic_dfs.py,sha256=weQ8EfzdU-LcKi8Eebq1AiATVS1fGdfcbqtCDOrVLos,7728
|
|
182
184
|
flyte/io/_dataframe/dataframe.py,sha256=uecLLjaAuLyYta2d4Tkk-DjxuHkzZjFUBbvMapPM7R8,51554
|
|
183
185
|
flyte/remote/__init__.py,sha256=y9eke9JzEJkygk8eKZjSj44fJGlyepuW4i-j6lbCAPY,617
|
|
184
|
-
flyte/remote/_action.py,sha256=
|
|
186
|
+
flyte/remote/_action.py,sha256=aLaX0-mfFNjOPAB1pskxLbgrljpbvXuvdpGCpU2k7Go,23949
|
|
187
|
+
flyte/remote/_common.py,sha256=2XLLxWL1NjwfdPQUhOfYn3zMrg-yGNfi6NYIaqHutUA,862
|
|
185
188
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
186
189
|
flyte/remote/_data.py,sha256=zYXXlqEvPdsC44Gm7rP_hQjRgVe3EFfhZNEWKF0p4MQ,6163
|
|
187
|
-
flyte/remote/_logs.py,sha256=
|
|
188
|
-
flyte/remote/_project.py,sha256=
|
|
189
|
-
flyte/remote/_run.py,sha256=
|
|
190
|
-
flyte/remote/_secret.py,sha256=
|
|
191
|
-
flyte/remote/_task.py,sha256=
|
|
190
|
+
flyte/remote/_logs.py,sha256=t4H7DEZDYJC9Vx7oJ7R7m4Z56bWBAjm9ylU4UP1hKq0,6711
|
|
191
|
+
flyte/remote/_project.py,sha256=IbkxKRAvZunKLIwpmcreA4O-0GxWC0KPC62WSYvsK34,2868
|
|
192
|
+
flyte/remote/_run.py,sha256=FtIIMNODQGyc6oYLmuI_ku3bUxhDFIE-UU7ecMNZvBg,10018
|
|
193
|
+
flyte/remote/_secret.py,sha256=CF9WiZKeMJaUNeIawVPf8XHk9OjFt2wc0m7S9ZOdGbE,4399
|
|
194
|
+
flyte/remote/_task.py,sha256=23sDeYYtcvqNqK51pRB2hmTeBxAmKr1aIbrR6rpKqKg,16693
|
|
192
195
|
flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
196
|
flyte/remote/_client/_protocols.py,sha256=JyBWHs5WsVOxEDUyG9X7wPLDzzzjkoaNhJlU-X4YlN0,5599
|
|
194
197
|
flyte/remote/_client/controlplane.py,sha256=FsOfj4rO4MIMnYrpAT53F8q588VVf5t4sDuwoPuc840,3102
|
|
@@ -219,7 +222,7 @@ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1
|
|
|
219
222
|
flyte/storage/_storage.py,sha256=AQ_ubpYwJjRdEYV-qU4ttXDZuuT28t6-S5eFQD5D9sQ,10175
|
|
220
223
|
flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
|
|
221
224
|
flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
|
|
222
|
-
flyte/syncify/_api.py,sha256=
|
|
225
|
+
flyte/syncify/_api.py,sha256=k4LQB8odJb5Fx2dabL340g0Tq1bKfSG_ZHsV5qRodE0,14858
|
|
223
226
|
flyte/types/__init__.py,sha256=9310PRtVrwJePwEPeoUO0HPyIkgaja7-Dar_QlE_MUI,1745
|
|
224
227
|
flyte/types/_interface.py,sha256=5y9EC5r897xz03Hh0ltF8QVGKMfMfAznws-hKSEO4Go,1677
|
|
225
228
|
flyte/types/_pickle.py,sha256=PjdR66OTDMZ3OYq6GvM_Ua0cIo5t2XQaIjmpJ9xo4Ys,4050
|
|
@@ -227,10 +230,10 @@ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
|
227
230
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
228
231
|
flyte/types/_type_engine.py,sha256=Tas_OXYddOi0nDuORjqan2SkJ96wKD8937I2l1bo8vk,97916
|
|
229
232
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
230
|
-
flyte-2.0.
|
|
231
|
-
flyte-2.0.
|
|
232
|
-
flyte-2.0.
|
|
233
|
-
flyte-2.0.
|
|
234
|
-
flyte-2.0.
|
|
235
|
-
flyte-2.0.
|
|
236
|
-
flyte-2.0.
|
|
233
|
+
flyte-2.0.0b8.data/scripts/runtime.py,sha256=8U_tIhdF8phBLDFr0U1xv92OKK5RquiaTJFv8v_fIgQ,5537
|
|
234
|
+
flyte-2.0.0b8.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
235
|
+
flyte-2.0.0b8.dist-info/METADATA,sha256=yDQq8HfWnmk2QGtx8tsYwZqPm1gK26W_Dvjs5Pf7IeM,10004
|
|
236
|
+
flyte-2.0.0b8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
237
|
+
flyte-2.0.0b8.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
238
|
+
flyte-2.0.0b8.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
239
|
+
flyte-2.0.0b8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|