flyte 0.2.0b35__py3-none-any.whl → 0.2.0b37__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.

Files changed (39) hide show
  1. flyte/_image.py +1 -1
  2. flyte/_internal/controllers/_local_controller.py +3 -2
  3. flyte/_internal/controllers/_trace.py +14 -10
  4. flyte/_internal/controllers/remote/_action.py +37 -7
  5. flyte/_internal/controllers/remote/_controller.py +43 -21
  6. flyte/_internal/controllers/remote/_core.py +32 -16
  7. flyte/_internal/controllers/remote/_informer.py +18 -7
  8. flyte/_internal/runtime/task_serde.py +17 -6
  9. flyte/_protos/common/identifier_pb2.py +23 -1
  10. flyte/_protos/common/identifier_pb2.pyi +28 -0
  11. flyte/_protos/workflow/queue_service_pb2.py +33 -29
  12. flyte/_protos/workflow/queue_service_pb2.pyi +34 -16
  13. flyte/_protos/workflow/run_definition_pb2.py +64 -71
  14. flyte/_protos/workflow/run_definition_pb2.pyi +44 -31
  15. flyte/_protos/workflow/run_logs_service_pb2.py +10 -10
  16. flyte/_protos/workflow/run_logs_service_pb2.pyi +3 -3
  17. flyte/_protos/workflow/run_service_pb2.py +54 -46
  18. flyte/_protos/workflow/run_service_pb2.pyi +32 -18
  19. flyte/_protos/workflow/run_service_pb2_grpc.py +34 -0
  20. flyte/_protos/workflow/state_service_pb2.py +20 -19
  21. flyte/_protos/workflow/state_service_pb2.pyi +13 -12
  22. flyte/_run.py +11 -6
  23. flyte/_trace.py +4 -10
  24. flyte/_version.py +2 -2
  25. flyte/migrate/__init__.py +1 -0
  26. flyte/migrate/dynamic.py +13 -0
  27. flyte/migrate/task.py +99 -0
  28. flyte/migrate/workflow.py +13 -0
  29. flyte/remote/_action.py +56 -25
  30. flyte/remote/_logs.py +4 -3
  31. flyte/remote/_run.py +5 -4
  32. flyte-0.2.0b37.dist-info/METADATA +371 -0
  33. {flyte-0.2.0b35.dist-info → flyte-0.2.0b37.dist-info}/RECORD +38 -33
  34. flyte-0.2.0b37.dist-info/licenses/LICENSE +201 -0
  35. flyte-0.2.0b35.dist-info/METADATA +0 -249
  36. {flyte-0.2.0b35.data → flyte-0.2.0b37.data}/scripts/runtime.py +0 -0
  37. {flyte-0.2.0b35.dist-info → flyte-0.2.0b37.dist-info}/WHEEL +0 -0
  38. {flyte-0.2.0b35.dist-info → flyte-0.2.0b37.dist-info}/entry_points.txt +0 -0
  39. {flyte-0.2.0b35.dist-info → flyte-0.2.0b37.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,371 @@
1
+ Metadata-Version: 2.4
2
+ Name: flyte
3
+ Version: 0.2.0b37
4
+ Summary: Add your description here
5
+ Author-email: Ketan Umare <kumare3@users.noreply.github.com>
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Requires-Dist: aiofiles>=24.1.0
10
+ Requires-Dist: click>=8.2.1
11
+ Requires-Dist: flyteidl==1.15.4b0
12
+ Requires-Dist: cloudpickle>=3.1.1
13
+ Requires-Dist: fsspec>=2025.3.0
14
+ Requires-Dist: grpcio>=1.71.0
15
+ Requires-Dist: obstore>=0.6.0
16
+ Requires-Dist: protobuf>=6.30.1
17
+ Requires-Dist: pydantic>=2.10.6
18
+ Requires-Dist: pyyaml>=6.0.2
19
+ Requires-Dist: rich-click>=1.8.9
20
+ Requires-Dist: httpx<1.0.0,>=0.28.1
21
+ Requires-Dist: keyring>=25.6.0
22
+ Requires-Dist: msgpack>=1.1.0
23
+ Requires-Dist: toml>=0.10.2
24
+ Requires-Dist: async-lru>=2.0.5
25
+ Requires-Dist: mashumaro
26
+ Requires-Dist: dataclasses_json
27
+ Dynamic: license-file
28
+
29
+ # Flyte 2 SDK 🚀
30
+
31
+ **The next-generation Python SDK for scalable, distributed workflows**
32
+
33
+ [![Version](https://img.shields.io/pypi/v/flyte?label=version&color=blue)](https://pypi.org/project/flyte/)
34
+ [![Python](https://img.shields.io/pypi/pyversions/flyte?color=brightgreen)](https://pypi.org/project/flyte/)
35
+ [![License](https://img.shields.io/badge/license-Apache%202.0-orange)](LICENSE)
36
+
37
+ > ⚡ **Pure Python workflows** • 🔄 **Async-first parallelism** • 🛠️ **Zero DSL constraints** • 📊 **Sub-task observability**
38
+
39
+ ## What is Flyte 2?
40
+
41
+ Flyte 2 represents a fundamental shift from constrained domain-specific languages to **pure Python workflows**. Write data pipelines, ML training jobs, and distributed compute exactly like you write Python—because it *is* Python.
42
+
43
+ ```python
44
+ import flyte
45
+
46
+ env = flyte.TaskEnvironment("hello_world")
47
+
48
+ @env.task
49
+ async def process_data(data: list[str]) -> list[str]:
50
+ # Use any Python construct: loops, conditionals, try/except
51
+ results = []
52
+ for item in data:
53
+ if len(item) > 5:
54
+ results.append(await transform_item(item))
55
+ return results
56
+
57
+ @env.task
58
+ async def transform_item(item: str) -> str:
59
+ return f"processed: {item.upper()}"
60
+
61
+ if __name__ == "__main__":
62
+ flyte.init()
63
+ result = flyte.run(process_data, data=["hello", "world", "flyte"])
64
+ ```
65
+
66
+ ## 🌟 Why Flyte 2?
67
+
68
+ ### **No More Workflow DSL**
69
+ - ❌ `@workflow` decorators with Python subset limitations
70
+ - ✅ **Pure Python**: loops, conditionals, error handling, dynamic structures
71
+
72
+ ### **Async-First Parallelism**
73
+ - ❌ Custom `map()` functions and workflow-specific parallel constructs
74
+ - ✅ **Native `asyncio`**: `await asyncio.gather()` for distributed parallel execution
75
+
76
+ ### **True Container Reusability**
77
+ - ❌ Cold container starts for every task
78
+ - ✅ **Millisecond scheduling** with warm, reusable container pools
79
+
80
+ ### **Fine-Grained Observability**
81
+ - ❌ Task-level logging only
82
+ - ✅ **Function-level tracing** with `@flyte.trace` for sub-task checkpoints
83
+
84
+ ## 🚀 Quick Start
85
+
86
+ ### Installation
87
+
88
+ ```bash
89
+ # Install uv package manager
90
+ curl -LsSf https://astral.sh/uv/install.sh | sh
91
+
92
+ # Create virtual environment
93
+ uv venv && source .venv/bin/activate
94
+
95
+ # Install Flyte 2 (beta)
96
+ uv pip install --prerelease=allow flyte
97
+ ```
98
+
99
+ ### Your First Workflow
100
+
101
+ ```python
102
+ # hello.py
103
+ # /// script
104
+ # requires-python = ">=3.10"
105
+ # dependencies = ["flyte>=0.2.0"]
106
+ # ///
107
+
108
+ import flyte
109
+
110
+ env = flyte.TaskEnvironment(
111
+ name="hello_world",
112
+ resources=flyte.Resources(memory="250Mi")
113
+ )
114
+
115
+ @env.task
116
+ def calculate(x: int) -> int:
117
+ return x * 2 + 5
118
+
119
+ @env.task
120
+ async def main(numbers: list[int]) -> float:
121
+ # Parallel execution across distributed containers
122
+ results = await asyncio.gather(*[
123
+ calculate.aio(num) for num in numbers
124
+ ])
125
+ return sum(results) / len(results)
126
+
127
+ if __name__ == "__main__":
128
+ flyte.init_from_config("config.yaml")
129
+ run = flyte.run(main, numbers=list(range(10)))
130
+ print(f"Result: {run.result}")
131
+ print(f"View at: {run.url}")
132
+ ```
133
+
134
+ ```bash
135
+ # Run locally, execute remotely
136
+ uv run --prerelease=allow hello.py
137
+ ```
138
+
139
+ ## 🏗️ Core Concepts
140
+
141
+ ### **TaskEnvironments**: Container Configuration Made Simple
142
+
143
+ ```python
144
+ # Group tasks with shared configuration
145
+ env = flyte.TaskEnvironment(
146
+ name="ml_pipeline",
147
+ image=flyte.Image.from_debian_base().with_pip_packages(
148
+ "torch", "pandas", "scikit-learn"
149
+ ),
150
+ resources=flyte.Resources(cpu=4, memory="8Gi", gpu=1),
151
+ reusable=flyte.ReusePolicy(replicas=3, idle_ttl=300)
152
+ )
153
+
154
+ @env.task
155
+ def train_model(data: flyte.File) -> flyte.File:
156
+ # Runs in configured container with GPU access
157
+ pass
158
+
159
+ @env.task
160
+ def evaluate_model(model: flyte.File, test_data: flyte.File) -> dict:
161
+ # Same container configuration, different instance
162
+ pass
163
+ ```
164
+
165
+ ### **Pure Python Workflows**: No More DSL Constraints
166
+
167
+ ```python
168
+ @env.task
169
+ async def dynamic_pipeline(config: dict) -> list[str]:
170
+ results = []
171
+
172
+ # ✅ Use any Python construct
173
+ for dataset in config["datasets"]:
174
+ try:
175
+ # ✅ Native error handling
176
+ if dataset["type"] == "batch":
177
+ result = await process_batch(dataset)
178
+ else:
179
+ result = await process_stream(dataset)
180
+ results.append(result)
181
+ except ValidationError as e:
182
+ # ✅ Custom error recovery
183
+ result = await handle_error(dataset, e)
184
+ results.append(result)
185
+
186
+ return results
187
+ ```
188
+
189
+ ### **Async Parallelism**: Distributed by Default
190
+
191
+ ```python
192
+ @env.task
193
+ async def parallel_training(hyperparams: list[dict]) -> dict:
194
+ # Each model trains on separate infrastructure
195
+ models = await asyncio.gather(*[
196
+ train_model.aio(params) for params in hyperparams
197
+ ])
198
+
199
+ # Evaluate all models in parallel
200
+ evaluations = await asyncio.gather(*[
201
+ evaluate_model.aio(model) for model in models
202
+ ])
203
+
204
+ # Find best model
205
+ best_idx = max(range(len(evaluations)),
206
+ key=lambda i: evaluations[i]["accuracy"])
207
+ return {"best_model": models[best_idx], "accuracy": evaluations[best_idx]}
208
+ ```
209
+
210
+ ## 🎯 Advanced Features
211
+
212
+ ### **Sub-Task Observability with Tracing**
213
+
214
+ ```python
215
+ @flyte.trace
216
+ async def expensive_computation(data: str) -> str:
217
+ # Function-level checkpointing - recoverable on failure
218
+ result = await call_external_api(data)
219
+ return process_result(result)
220
+
221
+ @env.task(cache=flyte.Cache(behavior="auto"))
222
+ async def main_task(inputs: list[str]) -> list[str]:
223
+ results = []
224
+ for inp in inputs:
225
+ # If task fails here, it resumes from the last successful trace
226
+ result = await expensive_computation(inp)
227
+ results.append(result)
228
+ return results
229
+ ```
230
+
231
+ ### **Remote Task Execution**
232
+
233
+ ```python
234
+ import flyte.remote
235
+
236
+ # Reference tasks deployed elsewhere
237
+ torch_task = flyte.remote.Task.get("torch_env.train_model", auto_version="latest")
238
+ spark_task = flyte.remote.Task.get("spark_env.process_data", auto_version="latest")
239
+
240
+ @env.task
241
+ async def orchestrator(raw_data: flyte.File) -> flyte.File:
242
+ # Execute Spark job on big data cluster
243
+ processed = await spark_task(raw_data)
244
+
245
+ # Execute PyTorch training on GPU cluster
246
+ model = await torch_task(processed)
247
+
248
+ return model
249
+ ```
250
+
251
+ ### **High-Performance Container Reuse**
252
+
253
+ ```python
254
+ env = flyte.TaskEnvironment(
255
+ name="high_throughput",
256
+ reusable=flyte.ReusePolicy(
257
+ replicas=10, # Keep 10 warm containers
258
+ idle_ttl=600, # 10-minute idle timeout
259
+ ),
260
+ resources=flyte.Resources(cpu=2, memory="4Gi")
261
+ )
262
+
263
+ # Tasks scheduled in milliseconds on warm containers
264
+ @env.task
265
+ async def process_thousands(items: list[str]) -> list[str]:
266
+ return await asyncio.gather(*[
267
+ process_item.aio(item) for item in items
268
+ ])
269
+ ```
270
+
271
+ ## 📊 Native Jupyter Integration
272
+
273
+ Run and monitor workflows directly from notebooks:
274
+
275
+ ```python
276
+ # In Jupyter cell
277
+ import flyte
278
+
279
+ flyte.init_from_config()
280
+ run = flyte.run(my_workflow, data=large_dataset)
281
+
282
+ # Stream logs in real-time
283
+ run.logs.stream()
284
+
285
+ # Get outputs when complete
286
+ results = run.wait()
287
+ ```
288
+
289
+ ## 🔧 Configuration & Deployment
290
+
291
+ ### Configuration File
292
+
293
+ ```yaml
294
+ # config.yaml
295
+ endpoint: https://my-flyte-instance.com
296
+ project: ml-team
297
+ domain: production
298
+ image:
299
+ builder: remote
300
+ registry: ghcr.io/my-org
301
+ auth:
302
+ type: oauth2
303
+ ```
304
+
305
+ ### Deploy and Run
306
+
307
+ ```bash
308
+ # Deploy tasks to remote cluster
309
+ flyte deploy my_workflow.py
310
+
311
+ # Run deployed workflow
312
+ flyte run my_workflow --input-file params.json
313
+
314
+ # Monitor execution
315
+ flyte logs <execution-id>
316
+ ```
317
+
318
+ ## 🆚 Migration from Flyte 1
319
+
320
+ | Flyte 1 | Flyte 2 |
321
+ |---------|---------|
322
+ | `@workflow` + `@task` | `@env.task` only |
323
+ | `flytekit.map()` | `await asyncio.gather()` |
324
+ | `@dynamic` workflows | Regular `@env.task` with loops |
325
+ | `flytekit.conditional()` | Python `if/else` |
326
+ | `LaunchPlan` schedules | `@env.task(on_schedule=...)` |
327
+ | Workflow failure handlers | Python `try/except` |
328
+
329
+ ### Example Migration
330
+
331
+ ```python
332
+ # Flyte 1
333
+ @flytekit.workflow
334
+ def old_workflow(data: list[str]) -> list[str]:
335
+ return [process_item(item=item) for item in data]
336
+
337
+ # Flyte 2
338
+ @env.task
339
+ async def new_workflow(data: list[str]) -> list[str]:
340
+ return await asyncio.gather(*[
341
+ process_item.aio(item) for item in data
342
+ ])
343
+ ```
344
+
345
+ ## 🌍 Ecosystem & Resources
346
+
347
+ - **📖 Documentation**: [flyte.org/docs](https://flyte.org/docs)
348
+ - **💬 Community**: [Slack](https://flyte.org/slack) | [GitHub Discussions](https://github.com/flyteorg/flyte/discussions)
349
+ - **🎓 Examples**: [GitHub Examples](https://github.com/flyteorg/flytesnacks)
350
+ - **🐛 Issues**: [Bug Reports](https://github.com/flyteorg/flyte/issues)
351
+
352
+ ## 🤝 Contributing
353
+
354
+ We welcome contributions! Whether it's:
355
+
356
+ - 🐛 **Bug fixes**
357
+ - ✨ **New features**
358
+ - 📚 **Documentation improvements**
359
+ - 🧪 **Testing enhancements**
360
+
361
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
362
+
363
+ ## 📄 License
364
+
365
+ Flyte 2 is licensed under the [Apache 2.0 License](LICENSE).
366
+
367
+ ---
368
+
369
+ **Ready to build the future of distributed computing with pure Python?**
370
+
371
+ ⭐ **Star this repo** | 🚀 **[Get Started Now](https://flyte.org/docs/getting-started)** | 💬 **[Join our Community](https://flyte.org/slack)**
@@ -8,7 +8,7 @@ flyte/_environment.py,sha256=oKVXLBX0ky2eE_wjBdzvQGI_2LiT2Nbx58ur7GMt50c,3231
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=Gv7GZEMr3Xrg5sGDqH1EX_ET4lvGGosOUqTituZpSg4,33455
11
+ flyte/_image.py,sha256=wAJO-WTEadRmLdW4q7SvInH03QD_virbvVMB4Wjsd90,33452
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,15 +17,15 @@ 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=htq4zyltmaWL-B_IkLX5joSzfB-pLTHQ5DtI49c220I,24247
20
+ flyte/_run.py,sha256=HkTD3rHL34pAwvn1WPN6OXYmk-GWX0txLdRH1OIMvEA,24338
21
21
  flyte/_secret.py,sha256=ogXmCNfYYIphV6p-2iiWmwr2cNUES5Cq01PPjY6uQNA,3217
22
22
  flyte/_task.py,sha256=pPq44DDr3PzaWXOJro0W2_mY4wdbS8Hwn0VFd-kel3Q,18985
23
23
  flyte/_task_environment.py,sha256=qYcTG9452a_POueQCHqkTafN4HG8Xo7KkBPwSMkKRRU,8536
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
- flyte/_trace.py,sha256=C788bgoSc3st8kE8Cae2xegnLx2CT6uuRKKfaDrDUys,5122
28
- flyte/_version.py,sha256=pB9K_t6bpJZ4ijf8fuuBAprudGF66FEfi-NPrLQ6HH4,521
27
+ flyte/_trace.py,sha256=SSE1nzUgmVTS2xFNtchEOjEjlRavMOIInasXzY8i9lU,4911
28
+ flyte/_version.py,sha256=Ryw-lMRvKxQPauq-ZLCNueB8hvifON8QEKMwPytF318,521
29
29
  flyte/errors.py,sha256=3PCjGAxqifLBY6RE1n_ttmrmhcHwwtzS4UWDPql-FX4,5175
30
30
  flyte/extend.py,sha256=GB4ZedGzKa30vYWRVPOdxEeK62xnUVFY4z2tD6H9eEw,376
31
31
  flyte/models.py,sha256=k0hLoyOYQHnu5DXclEtKK2owDOXCdy0UKdGcl3xR7BQ,15250
@@ -43,14 +43,14 @@ flyte/_code_bundle/_utils.py,sha256=qlAVmik9rLasfd1oNrCxhL870w5ntk5ZlNGeaKSKaAU,
43
43
  flyte/_code_bundle/bundle.py,sha256=nUAwYTVAE3Z9dfgkBtsqCoKJImjSl4AicG36yweWHLc,8797
44
44
  flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
45
45
  flyte/_internal/controllers/__init__.py,sha256=5CBnS9lb1VFMzZuRXUiaPhlN3G9qh7Aq9kTwxW5hsRw,4301
46
- flyte/_internal/controllers/_local_controller.py,sha256=6zyNxr8PRYS9hKiOwmt4YgNgrOqT_woe8Xb6Ec4KrlE,7229
47
- flyte/_internal/controllers/_trace.py,sha256=biI-lXSIe3gXuWI-KT6T-jTtojQCQ7BLOHTCG3J6MQc,1145
46
+ flyte/_internal/controllers/_local_controller.py,sha256=tbX6x8TBKwZHN1vYumftUcaX9fy162hGibo3AQZHYKA,7260
47
+ flyte/_internal/controllers/_trace.py,sha256=NAQu0yAh2s-Ou8ZNMOXN5SxNyPmRj4h_ssxzQYklh8Q,1391
48
48
  flyte/_internal/controllers/remote/__init__.py,sha256=9_azH1eHLqY6VULpDugXi7Kf1kK1ODqEnsQ_3wM6IqU,1919
49
- flyte/_internal/controllers/remote/_action.py,sha256=tB3GfcB4-PcqaupeoFKxqkodFuNCaruHbXHFGkPaTFM,6040
49
+ flyte/_internal/controllers/remote/_action.py,sha256=YHwFIfEiTyXSDYyegVRJF5mg2joMAbB-_PIzl69S6jw,7088
50
50
  flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
51
- flyte/_internal/controllers/remote/_controller.py,sha256=hTy1cfCVBUxBtQg4ibTzL6RUiJyVfO2xTmMU7fZzXNY,22692
52
- flyte/_internal/controllers/remote/_core.py,sha256=FJe1ZAWu_0w5SQUFgAHY4Hjjf_AjuI8sYu_orFkPFeU,18889
53
- flyte/_internal/controllers/remote/_informer.py,sha256=StiPcQLLW0h36uEBhKsupMY79EeFCKA3QQzvv2IyvRo,14188
51
+ flyte/_internal/controllers/remote/_controller.py,sha256=EDzALJnLQWRMxGnFolVrI7xhBszo5apv2ftal2UuCgA,23520
52
+ flyte/_internal/controllers/remote/_core.py,sha256=49l1X3YFyX-QYeSlvkOWdyEU2xc1Fr7I8qHvC3nQ6MA,19069
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
56
  flyte/_internal/imagebuild/docker_builder.py,sha256=L2J1cAJCZ67SAcO_76J1mP44aCXAePgQe8OsJKHxGgE,16853
@@ -67,15 +67,15 @@ flyte/_internal/runtime/io.py,sha256=Lgdy4iPjlKjUO-V_AkoPZff6lywaFjZUG-PErRukmx4
67
67
  flyte/_internal/runtime/resources_serde.py,sha256=TObMVsSjVcQhcY8-nY81pbvrz7TP-adDD5xV-LqAaxM,4813
68
68
  flyte/_internal/runtime/reuse.py,sha256=WEuBfC9tBezxaIXeUQDgnJfnRHiUmPK0S25nTOFle4E,4676
69
69
  flyte/_internal/runtime/rusty.py,sha256=puMaa6aLaoR4Tl5xxZulC4AzY58nmGg-5ok4ydHHjdM,6145
70
- flyte/_internal/runtime/task_serde.py,sha256=9gzkYb3nkzwZ4WeK948a8whUhIJUywlPPHHhYUTw-m4,14004
70
+ flyte/_internal/runtime/task_serde.py,sha256=n7cGuD3yPjtZ5gJOwQ-7sNfDaLdTghdT3o4xPv7aVfU,14108
71
71
  flyte/_internal/runtime/taskrunner.py,sha256=rHWS4t5qgZnzGdGrs0_O0sSs_PVGoE1CNPDb-fTwwmo,7332
72
72
  flyte/_internal/runtime/types_serde.py,sha256=EjRh9Yypx9-20XXQprtNgp766LeQVRoYWtY6XPGMZQg,1813
73
73
  flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
74
  flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
75
75
  flyte/_protos/common/authorization_pb2.pyi,sha256=tdqc3wZo3Yc6lKfjVgJlUFUFzGv4GAaCknIv43RGd-8,4759
76
76
  flyte/_protos/common/authorization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
77
- flyte/_protos/common/identifier_pb2.py,sha256=Stfe32AVvRe9G5fazu63_qQlbVPOiQQ5Prn138EqCvE,6379
78
- flyte/_protos/common/identifier_pb2.pyi,sha256=liHxsjjUE1QxXvOPr1s27S0agU8ohT1tHSJ5c1KmJYA,3132
77
+ flyte/_protos/common/identifier_pb2.py,sha256=gM3vMIB7CmjIzoj5aCeizpQHcOUBiYDHNk5-xyRFhDs,8799
78
+ flyte/_protos/common/identifier_pb2.pyi,sha256=1xwAO9WToKgYjoYyZI6pahaC-RX16dWuxHnVAUzXTz4,4254
79
79
  flyte/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
80
80
  flyte/_protos/common/identity_pb2.py,sha256=Q3UHzjnYkgHPjBC001DSRSVd5IbiarijpWpUt-GSWAo,4581
81
81
  flyte/_protos/common/identity_pb2.pyi,sha256=gjcp8lg-XIBP4ZzFBI8-Uf8DofAkheZlZLG5Cj3m4-g,3720
@@ -124,20 +124,20 @@ flyte/_protos/workflow/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDC
124
124
  flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
125
125
  flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
126
126
  flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
127
- flyte/_protos/workflow/queue_service_pb2.py,sha256=7TPBylY7vXCb9QF1bvAjwFP0Vkm17o_Axzt4X9E5jLw,12221
128
- flyte/_protos/workflow/queue_service_pb2.pyi,sha256=aIqgKP39QzqeyRfLsBcLoE8C8MyrtPTa9L55f0GBytE,8047
127
+ flyte/_protos/workflow/queue_service_pb2.py,sha256=0KL5mQNeA2-w4ceSZDj7vP-hoHKoSCYhkykhDCPoU4U,13297
128
+ flyte/_protos/workflow/queue_service_pb2.pyi,sha256=GiVvoiRgVtvf_l3_tfIEg4DesyVFnq4r7UBm_g5KOYg,9341
129
129
  flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=6KK87jYXrmK0jacf4AKhHp21QU9JFJPOiEBjbDRkBm0,7839
130
- flyte/_protos/workflow/run_definition_pb2.py,sha256=9RuY5xbz7Fp8R9fHb3cCqfCvGYT3txLnTnuKUmcCpZA,16156
131
- flyte/_protos/workflow/run_definition_pb2.pyi,sha256=lUt30Pnbqlg6vUD2pF64BpRjlAAbRUZe0of-vHCOeg8,15371
130
+ flyte/_protos/workflow/run_definition_pb2.py,sha256=sdyl7xgl6tTqkKNXrWcrhvV4KOZPqoMa9vjEmwVyfZc,16193
131
+ flyte/_protos/workflow/run_definition_pb2.pyi,sha256=xQ5bXt3J0hoXUGTqEvAGqm0fJT7dYOAl1DSbX83MrD4,16930
132
132
  flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
133
- flyte/_protos/workflow/run_logs_service_pb2.py,sha256=MKG9keauunf7EmIrlthQKgXrQAfMjbX9LyeBMlLhK30,3358
134
- flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=88_Qp-qQh9PSUUPSsyuawc9gBi9_4OEbnp37cgH1VGE,1534
133
+ flyte/_protos/workflow/run_logs_service_pb2.py,sha256=VXuiAXyB-R7LLHpllCSXXcDpaeUMStJNHUJOadudwfY,3333
134
+ flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=AeCw_SXrtbRtF-_hBBjHxF64WO2k_41xk-lG6tIXaHo,1516
135
135
  flyte/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=xoNyNBaK9dmrjZtiYkZQSQnSLNY7d2CK9pr5BTP7zxQ,2694
136
- flyte/_protos/workflow/run_service_pb2.py,sha256=aKeLCUAC_oIHHm4k6Pd7rbbspUwY5Cl3Rp7keasNbVo,14910
137
- flyte/_protos/workflow/run_service_pb2.pyi,sha256=AZBcXfw6tvlfa3OjQzVt3pSB5xc2DJGyW4aUgF2y_9s,9045
138
- flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=tO1qnrD5_0KrtToCIcuseVhkQNdNIQ2yfZHCzysV5sY,19657
139
- flyte/_protos/workflow/state_service_pb2.py,sha256=MyraTRsEQpchOOTlIVDGdSuYOtwnz84LNO9bwD3P67c,6712
140
- flyte/_protos/workflow/state_service_pb2.pyi,sha256=aiWXyWVI6ooqbZsYa01OaSw1JXkDuop_gwB0wTm7uPc,3881
136
+ flyte/_protos/workflow/run_service_pb2.py,sha256=_idWZnDz6mt0y0twfWE11g9bGUz_f85LFl0O9kfVnno,15996
137
+ flyte/_protos/workflow/run_service_pb2.pyi,sha256=BzqDOr4Dnjiw36942r44wDCamDLfQ4u6I7JTPud3F3M,9700
138
+ flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=i9X6zPqze8nfEu9VQXJ-xaCjhFTSf9W05Q_ZPNOTz5Q,21413
139
+ flyte/_protos/workflow/state_service_pb2.py,sha256=TlrvkZrLmCA0bm9NYPE4CETRiVM_wnTE8zh-l_klWdg,6812
140
+ flyte/_protos/workflow/state_service_pb2.pyi,sha256=Bq21Gr7EFCT9nFrt9p2bdU5Mq4hVNZ8SjxaSaxnor8Q,3900
141
141
  flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=nCRIosO0pGM66H-i3hP_KFQKSMCFHmnspGgyxchaxQA,5825
142
142
  flyte/_protos/workflow/task_definition_pb2.py,sha256=fqqvgxX6DykFHwRJFIrmYkBxLx6Qhtq3CuzBViuzvag,7833
143
143
  flyte/_protos/workflow/task_definition_pb2.pyi,sha256=WO23j393scV5Q5GFJfWOrydzNLG0indVAT36RxB6tw4,4163
@@ -179,13 +179,17 @@ flyte/io/_file.py,sha256=kp5700SKPy5htmMhm4hE2ybb99Ykny1b0Kwm3huCWXs,15572
179
179
  flyte/io/_dataframe/__init__.py,sha256=SDgNw45uf7m3cHhbUCOA3V3-5A2zSKgPcsWriRLwd74,4283
180
180
  flyte/io/_dataframe/basic_dfs.py,sha256=weQ8EfzdU-LcKi8Eebq1AiATVS1fGdfcbqtCDOrVLos,7728
181
181
  flyte/io/_dataframe/dataframe.py,sha256=uecLLjaAuLyYta2d4Tkk-DjxuHkzZjFUBbvMapPM7R8,51554
182
+ flyte/migrate/__init__.py,sha256=I1I0JoESM6s_kILMUcuP972Zks1DeTc5CiU2zjKxTeU,64
183
+ flyte/migrate/dynamic.py,sha256=igL6lMgKKH-g3CwF48SGi-F5YWdE9p8iXlMi4LJGnxc,296
184
+ flyte/migrate/task.py,sha256=V1-bKQuz0aPYG9jzHpjdujPJSGTQRH4Yda3ZPmwkVxA,3714
185
+ flyte/migrate/workflow.py,sha256=AbPchkUZXUAAGlrdy43M23fdpo9tsVaXcMLVSh7z9pU,328
182
186
  flyte/remote/__init__.py,sha256=y9eke9JzEJkygk8eKZjSj44fJGlyepuW4i-j6lbCAPY,617
183
- flyte/remote/_action.py,sha256=r2rLmJoPUIOCUoBUy4RG_1mMYmC4uiI1tKXuZZ9iC9k,23564
187
+ flyte/remote/_action.py,sha256=_EGMSjuqYAkxSrproa2P7107WuHe_ESN2lnJlkBBdhI,23881
184
188
  flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
185
189
  flyte/remote/_data.py,sha256=zYXXlqEvPdsC44Gm7rP_hQjRgVe3EFfhZNEWKF0p4MQ,6163
186
- flyte/remote/_logs.py,sha256=xBx4ozfY-NBMw3uD5o5YLsI4no10zGroNMcx1Oj0ef0,6689
190
+ flyte/remote/_logs.py,sha256=aDG18-uPVb2J3PxmqmAY1C0Z4Iv1P1agg-iF4nSQR4U,6709
187
191
  flyte/remote/_project.py,sha256=CFNTGpgXU3X599tkJ_oxijs9zPzzCWOB6mAWn6WeDEU,2828
188
- flyte/remote/_run.py,sha256=HzpoDthSw50vuT-gmzyzdkf28H4SyBgMr0d6bFSmyNU,9747
192
+ flyte/remote/_run.py,sha256=fpr_YcGZIv6K7Jt1if3-HHHVB2TVt_8AWcZ55rN_fgk,9750
189
193
  flyte/remote/_secret.py,sha256=l5xeMS83uMcWWeSSTRsSZUNhS0N--1Dze09C-thSOQs,4341
190
194
  flyte/remote/_task.py,sha256=pIQ2pIIcaEaOo5J1ua3eRlj9NAue9WOSyw64f1-A2oY,15183
191
195
  flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -226,9 +230,10 @@ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
226
230
  flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
227
231
  flyte/types/_type_engine.py,sha256=Tas_OXYddOi0nDuORjqan2SkJ96wKD8937I2l1bo8vk,97916
228
232
  flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
229
- flyte-0.2.0b35.data/scripts/runtime.py,sha256=2jTy3ccvrJ__Xrfdo2t0Fxhsojc5o2zIxDHt98RE_eU,6475
230
- flyte-0.2.0b35.dist-info/METADATA,sha256=BUMr4nE85BYanq5okRmLS2pt-9MB27YcBwg0vlJD3Qw,5857
231
- flyte-0.2.0b35.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
232
- flyte-0.2.0b35.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
233
- flyte-0.2.0b35.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
234
- flyte-0.2.0b35.dist-info/RECORD,,
233
+ flyte-0.2.0b37.data/scripts/runtime.py,sha256=2jTy3ccvrJ__Xrfdo2t0Fxhsojc5o2zIxDHt98RE_eU,6475
234
+ flyte-0.2.0b37.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
235
+ flyte-0.2.0b37.dist-info/METADATA,sha256=0GAL6o8sIULp-PGDX3gxYZ_yzltHYCjfJnieNDDIOFU,10016
236
+ flyte-0.2.0b37.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
237
+ flyte-0.2.0b37.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
238
+ flyte-0.2.0b37.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
239
+ flyte-0.2.0b37.dist-info/RECORD,,