modal 1.0.6.dev14__py3-none-any.whl → 1.0.6.dev16__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 modal might be problematic. Click here for more details.

@@ -15,7 +15,6 @@ if telemetry_socket:
15
15
  instrument_imports(telemetry_socket)
16
16
 
17
17
  import asyncio
18
- import concurrent.futures
19
18
  import inspect
20
19
  import queue
21
20
  import signal
@@ -49,7 +48,6 @@ from ._runtime.container_io_manager import (
49
48
  ContainerIOManager,
50
49
  IOContext,
51
50
  UserException,
52
- _ContainerIOManager,
53
51
  )
54
52
 
55
53
  if TYPE_CHECKING:
@@ -198,21 +196,16 @@ def call_function(
198
196
 
199
197
  # Send up to this many outputs at a time.
200
198
  generator_queue: asyncio.Queue[Any] = await container_io_manager._queue_create.aio(1024)
201
- generator_output_task = asyncio.create_task(
202
- container_io_manager.generator_output_task.aio(
203
- function_call_ids[0],
204
- io_context.finalized_function.data_format,
205
- generator_queue,
206
- )
207
- )
208
-
209
- item_count = 0
210
- async for value in res:
211
- await container_io_manager._queue_put.aio(generator_queue, value)
212
- item_count += 1
199
+ async with container_io_manager.generator_output_sender(
200
+ function_call_ids[0],
201
+ io_context.finalized_function.data_format,
202
+ generator_queue,
203
+ ):
204
+ item_count = 0
205
+ async for value in res:
206
+ await container_io_manager._queue_put.aio(generator_queue, value)
207
+ item_count += 1
213
208
 
214
- await container_io_manager._queue_put.aio(generator_queue, _ContainerIOManager._GENERATOR_STOP_SENTINEL)
215
- await generator_output_task # Wait to finish sending generator outputs.
216
209
  message = api_pb2.GeneratorDone(items_total=item_count)
217
210
  await container_io_manager.push_outputs.aio(
218
211
  io_context,
@@ -249,20 +242,17 @@ def call_function(
249
242
 
250
243
  # Send up to this many outputs at a time.
251
244
  generator_queue: asyncio.Queue[Any] = container_io_manager._queue_create(1024)
252
- generator_output_task: concurrent.futures.Future = container_io_manager.generator_output_task( # type: ignore
245
+
246
+ with container_io_manager.generator_output_sender(
253
247
  function_call_ids[0],
254
248
  io_context.finalized_function.data_format,
255
249
  generator_queue,
256
- _future=True, # type: ignore # Synchronicity magic to return a future.
257
- )
258
-
259
- item_count = 0
260
- for value in res:
261
- container_io_manager._queue_put(generator_queue, value)
262
- item_count += 1
250
+ ):
251
+ item_count = 0
252
+ for value in res:
253
+ container_io_manager._queue_put(generator_queue, value)
254
+ item_count += 1
263
255
 
264
- container_io_manager._queue_put(generator_queue, _ContainerIOManager._GENERATOR_STOP_SENTINEL)
265
- generator_output_task.result() # Wait to finish sending generator outputs.
266
256
  message = api_pb2.GeneratorDone(items_total=item_count)
267
257
  container_io_manager.push_outputs(io_context, started_at, message, api_pb2.DATA_FORMAT_GENERATOR_DONE)
268
258
  else:
@@ -290,7 +290,6 @@ class _ContainerIOManager:
290
290
 
291
291
  _client: _Client
292
292
 
293
- _GENERATOR_STOP_SENTINEL: ClassVar[Sentinel] = Sentinel()
294
293
  _singleton: ClassVar[Optional["_ContainerIOManager"]] = None
295
294
 
296
295
  def _init(self, container_args: api_pb2.ContainerArguments, client: _Client):
@@ -508,33 +507,47 @@ class _ContainerIOManager:
508
507
  req = api_pb2.FunctionCallPutDataRequest(function_call_id=function_call_id, data_chunks=data_chunks)
509
508
  await retry_transient_errors(self._client.stub.FunctionCallPutDataOut, req)
510
509
 
511
- async def generator_output_task(self, function_call_id: str, data_format: int, message_rx: asyncio.Queue) -> None:
512
- """Task that feeds generator outputs into a function call's `data_out` stream."""
513
- index = 1
514
- received_sentinel = False
515
- while not received_sentinel:
516
- message = await message_rx.get()
517
- if message is self._GENERATOR_STOP_SENTINEL:
518
- break
519
- # ASGI 'http.response.start' and 'http.response.body' msgs are observed to be separated by 1ms.
520
- # If we don't sleep here for 1ms we end up with an extra call to .put_data_out().
521
- if index == 1:
522
- await asyncio.sleep(0.001)
523
- serialized_messages = [serialize_data_format(message, data_format)]
524
- total_size = len(serialized_messages[0]) + 512
525
- while total_size < 16 * 1024 * 1024: # 16 MiB, maximum size in a single message
526
- try:
527
- message = message_rx.get_nowait()
528
- except asyncio.QueueEmpty:
529
- break
530
- if message is self._GENERATOR_STOP_SENTINEL:
531
- received_sentinel = True
510
+ @asynccontextmanager
511
+ async def generator_output_sender(
512
+ self, function_call_id: str, data_format: int, message_rx: asyncio.Queue
513
+ ) -> AsyncGenerator[None, None]:
514
+ """Runs background task that feeds generator outputs into a function call's `data_out` stream."""
515
+ GENERATOR_STOP_SENTINEL = Sentinel()
516
+
517
+ async def generator_output_task():
518
+ index = 1
519
+ received_sentinel = False
520
+ while not received_sentinel:
521
+ message = await message_rx.get()
522
+ if message is GENERATOR_STOP_SENTINEL:
532
523
  break
533
- else:
534
- serialized_messages.append(serialize_data_format(message, data_format))
535
- total_size += len(serialized_messages[-1]) + 512 # 512 bytes for estimated framing overhead
536
- await self.put_data_out(function_call_id, index, data_format, serialized_messages)
537
- index += len(serialized_messages)
524
+ # ASGI 'http.response.start' and 'http.response.body' msgs are observed to be separated by 1ms.
525
+ # If we don't sleep here for 1ms we end up with an extra call to .put_data_out().
526
+ if index == 1:
527
+ await asyncio.sleep(0.001)
528
+ serialized_messages = [serialize_data_format(message, data_format)]
529
+ total_size = len(serialized_messages[0]) + 512
530
+ while total_size < 16 * 1024 * 1024: # 16 MiB, maximum size in a single message
531
+ try:
532
+ message = message_rx.get_nowait()
533
+ except asyncio.QueueEmpty:
534
+ break
535
+ if message is GENERATOR_STOP_SENTINEL:
536
+ received_sentinel = True
537
+ break
538
+ else:
539
+ serialized_messages.append(serialize_data_format(message, data_format))
540
+ total_size += len(serialized_messages[-1]) + 512 # 512 bytes for estimated framing overhead
541
+ await self.put_data_out(function_call_id, index, data_format, serialized_messages)
542
+ index += len(serialized_messages)
543
+
544
+ task = asyncio.create_task(generator_output_task())
545
+ try:
546
+ yield
547
+ finally:
548
+ # gracefully stop the task after all current inputs have been sent
549
+ await message_rx.put(GENERATOR_STOP_SENTINEL)
550
+ await task
538
551
 
539
552
  async def _queue_create(self, size: int) -> asyncio.Queue:
540
553
  """Create a queue, on the synchronicity event loop (needed on Python 3.8 and 3.9)."""
@@ -106,7 +106,6 @@ class _ContainerIOManager:
106
106
  _is_interactivity_enabled: bool
107
107
  _fetching_inputs: bool
108
108
  _client: modal.client._Client
109
- _GENERATOR_STOP_SENTINEL: typing.ClassVar[Sentinel]
110
109
  _singleton: typing.ClassVar[typing.Optional[_ContainerIOManager]]
111
110
 
112
111
  def _init(self, container_args: modal_proto.api_pb2.ContainerArguments, client: modal.client._Client): ...
@@ -148,10 +147,10 @@ class _ContainerIOManager:
148
147
  """
149
148
  ...
150
149
 
151
- async def generator_output_task(
150
+ def generator_output_sender(
152
151
  self, function_call_id: str, data_format: int, message_rx: asyncio.queues.Queue
153
- ) -> None:
154
- """Task that feeds generator outputs into a function call's `data_out` stream."""
152
+ ) -> typing.AsyncContextManager[None]:
153
+ """Runs background task that feeds generator outputs into a function call's `data_out` stream."""
155
154
  ...
156
155
 
157
156
  async def _queue_create(self, size: int) -> asyncio.queues.Queue:
@@ -268,7 +267,6 @@ class ContainerIOManager:
268
267
  _is_interactivity_enabled: bool
269
268
  _fetching_inputs: bool
270
269
  _client: modal.client.Client
271
- _GENERATOR_STOP_SENTINEL: typing.ClassVar[Sentinel]
272
270
  _singleton: typing.ClassVar[typing.Optional[ContainerIOManager]]
273
271
 
274
272
  def __init__(self, /, *args, **kwargs):
@@ -367,16 +365,20 @@ class ContainerIOManager:
367
365
 
368
366
  put_data_out: __put_data_out_spec[typing_extensions.Self]
369
367
 
370
- class __generator_output_task_spec(typing_extensions.Protocol[SUPERSELF]):
371
- def __call__(self, /, function_call_id: str, data_format: int, message_rx: asyncio.queues.Queue) -> None:
372
- """Task that feeds generator outputs into a function call's `data_out` stream."""
368
+ class __generator_output_sender_spec(typing_extensions.Protocol[SUPERSELF]):
369
+ def __call__(
370
+ self, /, function_call_id: str, data_format: int, message_rx: asyncio.queues.Queue
371
+ ) -> synchronicity.combined_types.AsyncAndBlockingContextManager[None]:
372
+ """Runs background task that feeds generator outputs into a function call's `data_out` stream."""
373
373
  ...
374
374
 
375
- async def aio(self, /, function_call_id: str, data_format: int, message_rx: asyncio.queues.Queue) -> None:
376
- """Task that feeds generator outputs into a function call's `data_out` stream."""
375
+ def aio(
376
+ self, /, function_call_id: str, data_format: int, message_rx: asyncio.queues.Queue
377
+ ) -> typing.AsyncContextManager[None]:
378
+ """Runs background task that feeds generator outputs into a function call's `data_out` stream."""
377
379
  ...
378
380
 
379
- generator_output_task: __generator_output_task_spec[typing_extensions.Self]
381
+ generator_output_sender: __generator_output_sender_spec[typing_extensions.Self]
380
382
 
381
383
  class ___queue_create_spec(typing_extensions.Protocol[SUPERSELF]):
382
384
  def __call__(self, /, size: int) -> asyncio.queues.Queue:
@@ -188,6 +188,14 @@ def get_content_length(data: BinaryIO) -> int:
188
188
  return content_length - pos
189
189
 
190
190
 
191
+ async def _measure_endpoint_latency(item: str) -> int:
192
+ latency_ms = 0
193
+ t0 = time.monotonic_ns()
194
+ async with ClientSessionRegistry.get_session().head(item) as _:
195
+ latency_ms = (time.monotonic_ns() - t0) // 1_000_000
196
+ return latency_ms
197
+
198
+
191
199
  async def _blob_upload_with_fallback(items, blob_ids: list[str], callback) -> tuple[str, bool, int]:
192
200
  r2_latency_ms = 0
193
201
  r2_failed = False
@@ -197,10 +205,14 @@ async def _blob_upload_with_fallback(items, blob_ids: list[str], callback) -> tu
197
205
  if idx == 0 and len(items) > 1 and random.random() > HEALTHY_R2_UPLOAD_PERCENTAGE:
198
206
  continue
199
207
  try:
200
- init_time = time.monotonic_ns()
201
- await callback(item)
202
208
  if blob_id.endswith(":r2"):
203
- r2_latency_ms = (time.monotonic_ns() - init_time) // 1_000_000
209
+ # measure the time it takes to contact the bucket endpoint
210
+ r2_latency_ms, _ = await asyncio.gather(
211
+ _measure_endpoint_latency(item),
212
+ callback(item),
213
+ )
214
+ else:
215
+ await callback(item)
204
216
  return blob_id, r2_failed, r2_latency_ms
205
217
  except Exception as _:
206
218
  if blob_id.endswith(":r2"):
modal/client.pyi CHANGED
@@ -31,7 +31,7 @@ class _Client:
31
31
  server_url: str,
32
32
  client_type: int,
33
33
  credentials: typing.Optional[tuple[str, str]],
34
- version: str = "1.0.6.dev14",
34
+ version: str = "1.0.6.dev16",
35
35
  ):
36
36
  """mdmd:hidden
37
37
  The Modal client object is not intended to be instantiated directly by users.
@@ -160,7 +160,7 @@ class Client:
160
160
  server_url: str,
161
161
  client_type: int,
162
162
  credentials: typing.Optional[tuple[str, str]],
163
- version: str = "1.0.6.dev14",
163
+ version: str = "1.0.6.dev16",
164
164
  ):
165
165
  """mdmd:hidden
166
166
  The Modal client object is not intended to be instantiated directly by users.
modal/functions.pyi CHANGED
@@ -428,7 +428,7 @@ class Function(
428
428
 
429
429
  _call_generator: ___call_generator_spec[typing_extensions.Self]
430
430
 
431
- class __remote_spec(typing_extensions.Protocol[ReturnType_INNER, P_INNER, SUPERSELF]):
431
+ class __remote_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER, SUPERSELF]):
432
432
  def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> ReturnType_INNER:
433
433
  """Calls the function remotely, executing it with the given arguments and returning the execution's result."""
434
434
  ...
@@ -437,7 +437,7 @@ class Function(
437
437
  """Calls the function remotely, executing it with the given arguments and returning the execution's result."""
438
438
  ...
439
439
 
440
- remote: __remote_spec[modal._functions.ReturnType, modal._functions.P, typing_extensions.Self]
440
+ remote: __remote_spec[modal._functions.P, modal._functions.ReturnType, typing_extensions.Self]
441
441
 
442
442
  class __remote_gen_spec(typing_extensions.Protocol[SUPERSELF]):
443
443
  def __call__(self, /, *args, **kwargs) -> typing.Generator[typing.Any, None, None]:
@@ -464,7 +464,7 @@ class Function(
464
464
  """
465
465
  ...
466
466
 
467
- class ___experimental_spawn_spec(typing_extensions.Protocol[ReturnType_INNER, P_INNER, SUPERSELF]):
467
+ class ___experimental_spawn_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER, SUPERSELF]):
468
468
  def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]:
469
469
  """[Experimental] Calls the function with the given arguments, without waiting for the results.
470
470
 
@@ -488,7 +488,7 @@ class Function(
488
488
  ...
489
489
 
490
490
  _experimental_spawn: ___experimental_spawn_spec[
491
- modal._functions.ReturnType, modal._functions.P, typing_extensions.Self
491
+ modal._functions.P, modal._functions.ReturnType, typing_extensions.Self
492
492
  ]
493
493
 
494
494
  class ___spawn_map_inner_spec(typing_extensions.Protocol[P_INNER, SUPERSELF]):
@@ -497,7 +497,7 @@ class Function(
497
497
 
498
498
  _spawn_map_inner: ___spawn_map_inner_spec[modal._functions.P, typing_extensions.Self]
499
499
 
500
- class __spawn_spec(typing_extensions.Protocol[ReturnType_INNER, P_INNER, SUPERSELF]):
500
+ class __spawn_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER, SUPERSELF]):
501
501
  def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]:
502
502
  """Calls the function with the given arguments, without waiting for the results.
503
503
 
@@ -518,7 +518,7 @@ class Function(
518
518
  """
519
519
  ...
520
520
 
521
- spawn: __spawn_spec[modal._functions.ReturnType, modal._functions.P, typing_extensions.Self]
521
+ spawn: __spawn_spec[modal._functions.P, modal._functions.ReturnType, typing_extensions.Self]
522
522
 
523
523
  def get_raw_f(self) -> collections.abc.Callable[..., typing.Any]:
524
524
  """Return the inner Python object wrapped by this Modal Function."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: modal
3
- Version: 1.0.6.dev14
3
+ Version: 1.0.6.dev16
4
4
  Summary: Python client library for Modal
5
5
  Author-email: Modal Labs <support@modal.com>
6
6
  License: Apache-2.0
@@ -2,7 +2,7 @@ modal/__init__.py,sha256=1131svUxi876UMFC6Z68qe5Z031ZfZ9NrduvGwHphj8,2710
2
2
  modal/__main__.py,sha256=sTJcc9EbDuCKSwg3tL6ZckFw9WWdlkXW8mId1IvJCNc,2846
3
3
  modal/_clustered_functions.py,sha256=kTf-9YBXY88NutC1akI-gCbvf01RhMPCw-zoOI_YIUE,2700
4
4
  modal/_clustered_functions.pyi,sha256=_QKM87tdYwcALSGth8a0-9qXl02fZK6zMfEGEoYz7eA,1007
5
- modal/_container_entrypoint.py,sha256=2Zx9O_EMJg0H77EdnC2vGKs6uFMWwbP1NLFf-qYmWmU,28962
5
+ modal/_container_entrypoint.py,sha256=1qBMNY_E9ICC_sRCtillMxmKPsmxJl1J0_qOAG8rH-0,28288
6
6
  modal/_functions.py,sha256=kZf0EdIgEYnHuXasjOX3fsJktjZMA1n3rPXEscKMuJU,82303
7
7
  modal/_ipython.py,sha256=TW1fkVOmZL3YYqdS2YlM1hqpf654Yf8ZyybHdBnlhSw,301
8
8
  modal/_location.py,sha256=joiX-0ZeutEUDTrrqLF1GHXCdVLF-rHzstocbMcd_-k,366
@@ -22,7 +22,7 @@ modal/app.py,sha256=fCKq3TJ2Y5LB2WKNs6pp_5XECNH5avUL01jQljuoYRU,46603
22
22
  modal/app.pyi,sha256=Z6wi_dkXywiaM2rvAvguj2Wgu9ZgPjMSLl1nH1a7EYI,42243
23
23
  modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
24
24
  modal/client.py,sha256=OwISJvkgMb-rHm9Gc4i-7YcDgGiZgwJ7F_PzwZH7a6Q,16847
25
- modal/client.pyi,sha256=1vUNzHTixk2OllLAfrF5nl0vmcGuHraYb1RPznsxNlo,15081
25
+ modal/client.pyi,sha256=Uq9I-JB_C_3mL9JBR_VYq2ie2l4ZfhKNfIpkmyqLkNs,15081
26
26
  modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
27
27
  modal/cloud_bucket_mount.pyi,sha256=-qSfYAQvIoO_l2wsCCGTG5ZUwQieNKXdAO00yP1-LYU,7394
28
28
  modal/cls.py,sha256=EFrM949jNXJpmwB2G_1d28b8IpHShfKIEIaiPkZqeOU,39881
@@ -39,7 +39,7 @@ modal/file_io.py,sha256=SCBfLk5gRieqdTVlA_f-2YHHtRp7Iy_sA6iR1zPsO3c,21100
39
39
  modal/file_io.pyi,sha256=_Hm-59MrppfuBYxtzdJkA2Jf9zI5LlbPh_0gURk0_7s,15222
40
40
  modal/file_pattern_matcher.py,sha256=urAue8es8jxqX94k9EYoZxxhtfgOlsEES8lbFHOorzc,7734
41
41
  modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
42
- modal/functions.pyi,sha256=FJe_91dSrMCRNVT-YV1UhtxFKzIvL_C5q8xdk08-wT8,34840
42
+ modal/functions.pyi,sha256=ffW_kkU8AxMuV77ltmjK3nslXW_2iwEjKsT-Cgd4Trs,34840
43
43
  modal/gpu.py,sha256=Fe5ORvVPDIstSq1xjmM6OoNgLYFWvogP9r5BgmD3hYg,6769
44
44
  modal/image.py,sha256=lfbLICSDz4DPEiSipvGasL8EEu8ydHeyn3qBwgFPgBo,105262
45
45
  modal/image.pyi,sha256=RGxpmYZUJXtZrH9H3xPHdfHFd_KpmDp3ZHrDS8vUKlI,71760
@@ -82,8 +82,8 @@ modal/volume.py,sha256=7-nLtHhIY18qPJo0W23rBc2p4chf-t4Se3uJPzTSzoA,44333
82
82
  modal/volume.pyi,sha256=sjr67f0npiRzl2j3blrcMA_QSoogJAS0xLqWI06xWXQ,40727
83
83
  modal/_runtime/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
84
84
  modal/_runtime/asgi.py,sha256=_2xSTsDD27Cit7xnMs4lzkJA2wzer2_N4Oa3BkXFzVA,22521
85
- modal/_runtime/container_io_manager.py,sha256=qKYtd52I0JAmiw1Wfy_EQXHuHsbmt-XwLqKDLBhWrZc,44289
86
- modal/_runtime/container_io_manager.pyi,sha256=coh_qkm5LFKLOACYBaWAKKzzmbMTEY4E5K0wfcTDlGQ,22874
85
+ modal/_runtime/container_io_manager.py,sha256=ANV-Tp1zJbVII0aXdj1HByUrePQPWvlfss19z2Jeogg,44752
86
+ modal/_runtime/container_io_manager.pyi,sha256=yGgA-fcVwv5M8cOzLlj-44qOI1vTw9Fa3GQP7_2aXqA,22967
87
87
  modal/_runtime/execution_context.py,sha256=73Y5zH_o-MhVCrkJXakYVlFkKqCa2CWvqoHjOfJrJGg,3034
88
88
  modal/_runtime/execution_context.pyi,sha256=IFcW1jphqTchX4fy-45rqfz91RhkZPWtIhIvLvGsNGM,2294
89
89
  modal/_runtime/gpu_memory_snapshot.py,sha256=HXgqPHQj0LARhmie_h62V95L-M2R1Kg21INUm_IStn8,7574
@@ -92,7 +92,7 @@ modal/_runtime/user_code_imports.py,sha256=78wJyleqY2RVibqcpbDQyfWVBVT9BjyHPeoV9
92
92
  modal/_utils/__init__.py,sha256=waLjl5c6IPDhSsdWAm9Bji4e2PVxamYABKAze6CHVXY,28
93
93
  modal/_utils/app_utils.py,sha256=88BT4TPLWfYAQwKTHcyzNQRHg8n9B-QE2UyJs96iV-0,108
94
94
  modal/_utils/async_utils.py,sha256=MhSCsCL8GqIVFWoHubU_899IH-JBZAiiqadG9Wri2l4,29361
95
- modal/_utils/blob_utils.py,sha256=4R-X3VNUJkc8EDSyGNfgcR5fAAkdpQ9W0O5Fy3PyOlU,20628
95
+ modal/_utils/blob_utils.py,sha256=v2NAQVVGx1AQjHQ7-2T64x5rYtwjFFykxDXb-0grrzA,21022
96
96
  modal/_utils/bytes_io_segment_payload.py,sha256=vaXPq8b52-x6G2hwE7SrjS58pg_aRm7gV3bn3yjmTzQ,4261
97
97
  modal/_utils/deprecation.py,sha256=-Bgg7jZdcJU8lROy18YyVnQYbM8hue-hVmwJqlWAGH0,5504
98
98
  modal/_utils/docker_utils.py,sha256=h1uETghR40mp_y3fSWuZAfbIASH1HMzuphJHghAL6DU,3722
@@ -147,7 +147,7 @@ modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddR
147
147
  modal/requirements/PREVIEW.txt,sha256=KxDaVTOwatHvboDo4lorlgJ7-n-MfAwbPwxJ0zcJqrs,312
148
148
  modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
149
149
  modal/requirements/base-images.json,sha256=3oKVHov9vE88hMQGnn1OqDQK-ohxNF_TEL2DNPKg09s,1051
150
- modal-1.0.6.dev14.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
150
+ modal-1.0.6.dev16.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
151
151
  modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
152
152
  modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
153
153
  modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
@@ -170,10 +170,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
170
170
  modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
171
171
  modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
172
172
  modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
- modal_version/__init__.py,sha256=zYw8248AEj-OFqdLPTDL0VviUvKe49wiJGzOGuaK0w8,121
173
+ modal_version/__init__.py,sha256=QU7Vg7L8IEUMI-f1e0YHIAD7O0LQB6pASdpGIV9Vpdk,121
174
174
  modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
175
- modal-1.0.6.dev14.dist-info/METADATA,sha256=N1WBRQYscNbzUJ04pKmKQTor2aPAgto2bULB3PC-O4U,2462
176
- modal-1.0.6.dev14.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
177
- modal-1.0.6.dev14.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
178
- modal-1.0.6.dev14.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
179
- modal-1.0.6.dev14.dist-info/RECORD,,
175
+ modal-1.0.6.dev16.dist-info/METADATA,sha256=JR3xCGKca8UEzy-5oLRDcp5z9QIILPRsu6n3fqMQsPA,2462
176
+ modal-1.0.6.dev16.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
177
+ modal-1.0.6.dev16.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
178
+ modal-1.0.6.dev16.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
179
+ modal-1.0.6.dev16.dist-info/RECORD,,
modal_version/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # Copyright Modal Labs 2025
2
2
  """Supplies the current version of the modal client library."""
3
3
 
4
- __version__ = "1.0.6.dev14"
4
+ __version__ = "1.0.6.dev16"