modal 1.0.5.dev21__py3-none-any.whl → 1.0.5.dev23__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.
modal/_functions.py CHANGED
@@ -1273,9 +1273,9 @@ class _Function(typing.Generic[P, ReturnType, OriginalReturnType], _Object, type
1273
1273
  ) -> "_Function":
1274
1274
  """Reference a Function from a deployed App by its name.
1275
1275
 
1276
- In contrast to `modal.Function.lookup`, this is a lazy method
1277
- that defers hydrating the local object with metadata from
1278
- Modal servers until the first time it is actually used.
1276
+ This is a lazy method that defers hydrating the local
1277
+ object with metadata from Modal servers until the first
1278
+ time it is actually used.
1279
1279
 
1280
1280
  ```python
1281
1281
  f = modal.Function.from_name("other-app", "function")
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.5.dev21",
34
+ version: str = "1.0.5.dev23",
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.5.dev21",
163
+ version: str = "1.0.5.dev23",
164
164
  ):
165
165
  """mdmd:hidden
166
166
  The Modal client object is not intended to be instantiated directly by users.
modal/cls.py CHANGED
@@ -617,9 +617,9 @@ More information on class parameterization can be found here: https://modal.com/
617
617
  ) -> "_Cls":
618
618
  """Reference a Cls from a deployed App by its name.
619
619
 
620
- In contrast to `modal.Cls.lookup`, this is a lazy method
621
- that defers hydrating the local object with metadata from
622
- Modal servers until the first time it is actually used.
620
+ This is a lazy method that defers hydrating the local
621
+ object with metadata from Modal servers until the first
622
+ time it is actually used.
623
623
 
624
624
  ```python
625
625
  Model = modal.Cls.from_name("other-app", "Model")
modal/cls.pyi CHANGED
@@ -367,9 +367,9 @@ class _Cls(modal._object._Object):
367
367
  ) -> _Cls:
368
368
  """Reference a Cls from a deployed App by its name.
369
369
 
370
- In contrast to `modal.Cls.lookup`, this is a lazy method
371
- that defers hydrating the local object with metadata from
372
- Modal servers until the first time it is actually used.
370
+ This is a lazy method that defers hydrating the local
371
+ object with metadata from Modal servers until the first
372
+ time it is actually used.
373
373
 
374
374
  ```python
375
375
  Model = modal.Cls.from_name("other-app", "Model")
@@ -526,9 +526,9 @@ class Cls(modal.object.Object):
526
526
  ) -> Cls:
527
527
  """Reference a Cls from a deployed App by its name.
528
528
 
529
- In contrast to `modal.Cls.lookup`, this is a lazy method
530
- that defers hydrating the local object with metadata from
531
- Modal servers until the first time it is actually used.
529
+ This is a lazy method that defers hydrating the local
530
+ object with metadata from Modal servers until the first
531
+ time it is actually used.
532
532
 
533
533
  ```python
534
534
  Model = modal.Cls.from_name("other-app", "Model")
modal/dict.py CHANGED
@@ -125,9 +125,9 @@ class _Dict(_Object, type_prefix="di"):
125
125
  ) -> "_Dict":
126
126
  """Reference a named Dict, creating if necessary.
127
127
 
128
- In contrast to `modal.Dict.lookup`, this is a lazy method
129
- that defers hydrating the local object with metadata from
130
- Modal servers until the first time it is actually used.
128
+ This is a lazy method that defers hydrating the local
129
+ object with metadata from Modal servers until the first
130
+ time it is actually used.
131
131
 
132
132
  ```python
133
133
  d = modal.Dict.from_name("my-dict", create_if_missing=True)
modal/dict.pyi CHANGED
@@ -89,9 +89,9 @@ class _Dict(modal._object._Object):
89
89
  ) -> _Dict:
90
90
  """Reference a named Dict, creating if necessary.
91
91
 
92
- In contrast to `modal.Dict.lookup`, this is a lazy method
93
- that defers hydrating the local object with metadata from
94
- Modal servers until the first time it is actually used.
92
+ This is a lazy method that defers hydrating the local
93
+ object with metadata from Modal servers until the first
94
+ time it is actually used.
95
95
 
96
96
  ```python
97
97
  d = modal.Dict.from_name("my-dict", create_if_missing=True)
@@ -304,9 +304,9 @@ class Dict(modal.object.Object):
304
304
  ) -> Dict:
305
305
  """Reference a named Dict, creating if necessary.
306
306
 
307
- In contrast to `modal.Dict.lookup`, this is a lazy method
308
- that defers hydrating the local object with metadata from
309
- Modal servers until the first time it is actually used.
307
+ This is a lazy method that defers hydrating the local
308
+ object with metadata from Modal servers until the first
309
+ time it is actually used.
310
310
 
311
311
  ```python
312
312
  d = modal.Dict.from_name("my-dict", create_if_missing=True)
modal/functions.pyi CHANGED
@@ -247,9 +247,9 @@ class Function(
247
247
  ) -> Function:
248
248
  """Reference a Function from a deployed App by its name.
249
249
 
250
- In contrast to `modal.Function.lookup`, this is a lazy method
251
- that defers hydrating the local object with metadata from
252
- Modal servers until the first time it is actually used.
250
+ This is a lazy method that defers hydrating the local
251
+ object with metadata from Modal servers until the first
252
+ time it is actually used.
253
253
 
254
254
  ```python
255
255
  f = modal.Function.from_name("other-app", "function")
@@ -98,9 +98,9 @@ class _NetworkFileSystem(_Object, type_prefix="sv"):
98
98
  ) -> "_NetworkFileSystem":
99
99
  """Reference a NetworkFileSystem by its name, creating if necessary.
100
100
 
101
- In contrast to `modal.NetworkFileSystem.lookup`, this is a lazy method
102
- that defers hydrating the local object with metadata from Modal servers
103
- until the first time it is actually used.
101
+ This is a lazy method that defers hydrating the local object with
102
+ metadata from Modal servers until the first time it is actually
103
+ used.
104
104
 
105
105
  ```python notest
106
106
  nfs = NetworkFileSystem.from_name("my-nfs", create_if_missing=True)
@@ -56,9 +56,9 @@ class _NetworkFileSystem(modal._object._Object):
56
56
  ) -> _NetworkFileSystem:
57
57
  """Reference a NetworkFileSystem by its name, creating if necessary.
58
58
 
59
- In contrast to `modal.NetworkFileSystem.lookup`, this is a lazy method
60
- that defers hydrating the local object with metadata from Modal servers
61
- until the first time it is actually used.
59
+ This is a lazy method that defers hydrating the local object with
60
+ metadata from Modal servers until the first time it is actually
61
+ used.
62
62
 
63
63
  ```python notest
64
64
  nfs = NetworkFileSystem.from_name("my-nfs", create_if_missing=True)
@@ -233,9 +233,9 @@ class NetworkFileSystem(modal.object.Object):
233
233
  ) -> NetworkFileSystem:
234
234
  """Reference a NetworkFileSystem by its name, creating if necessary.
235
235
 
236
- In contrast to `modal.NetworkFileSystem.lookup`, this is a lazy method
237
- that defers hydrating the local object with metadata from Modal servers
238
- until the first time it is actually used.
236
+ This is a lazy method that defers hydrating the local object with
237
+ metadata from Modal servers until the first time it is actually
238
+ used.
239
239
 
240
240
  ```python notest
241
241
  nfs = NetworkFileSystem.from_name("my-nfs", create_if_missing=True)
modal/queue.py CHANGED
@@ -154,9 +154,9 @@ class _Queue(_Object, type_prefix="qu"):
154
154
  ) -> "_Queue":
155
155
  """Reference a named Queue, creating if necessary.
156
156
 
157
- In contrast to `modal.Queue.lookup`, this is a lazy method
158
- the defers hydrating the local object with metadata from
159
- Modal servers until the first time it is actually used.
157
+ This is a lazy method the defers hydrating the local
158
+ object with metadata from Modal servers until the first
159
+ time it is actually used.
160
160
 
161
161
  ```python
162
162
  q = modal.Queue.from_name("my-queue", create_if_missing=True)
modal/queue.pyi CHANGED
@@ -114,9 +114,9 @@ class _Queue(modal._object._Object):
114
114
  ) -> _Queue:
115
115
  """Reference a named Queue, creating if necessary.
116
116
 
117
- In contrast to `modal.Queue.lookup`, this is a lazy method
118
- the defers hydrating the local object with metadata from
119
- Modal servers until the first time it is actually used.
117
+ This is a lazy method the defers hydrating the local
118
+ object with metadata from Modal servers until the first
119
+ time it is actually used.
120
120
 
121
121
  ```python
122
122
  q = modal.Queue.from_name("my-queue", create_if_missing=True)
@@ -371,9 +371,9 @@ class Queue(modal.object.Object):
371
371
  ) -> Queue:
372
372
  """Reference a named Queue, creating if necessary.
373
373
 
374
- In contrast to `modal.Queue.lookup`, this is a lazy method
375
- the defers hydrating the local object with metadata from
376
- Modal servers until the first time it is actually used.
374
+ This is a lazy method the defers hydrating the local
375
+ object with metadata from Modal servers until the first
376
+ time it is actually used.
377
377
 
378
378
  ```python
379
379
  q = modal.Queue.from_name("my-queue", create_if_missing=True)
modal/volume.py CHANGED
@@ -161,9 +161,9 @@ class _Volume(_Object, type_prefix="vo"):
161
161
  ) -> "_Volume":
162
162
  """Reference a Volume by name, creating if necessary.
163
163
 
164
- In contrast to `modal.Volume.lookup`, this is a lazy method
165
- that defers hydrating the local object with metadata from
166
- Modal servers until the first time is is actually used.
164
+ This is a lazy method that defers hydrating the local
165
+ object with metadata from Modal servers until the first
166
+ time is is actually used.
167
167
 
168
168
  ```python
169
169
  vol = modal.Volume.from_name("my-volume", create_if_missing=True)
modal/volume.pyi CHANGED
@@ -114,9 +114,9 @@ class _Volume(modal._object._Object):
114
114
  ) -> _Volume:
115
115
  """Reference a Volume by name, creating if necessary.
116
116
 
117
- In contrast to `modal.Volume.lookup`, this is a lazy method
118
- that defers hydrating the local object with metadata from
119
- Modal servers until the first time is is actually used.
117
+ This is a lazy method that defers hydrating the local
118
+ object with metadata from Modal servers until the first
119
+ time is is actually used.
120
120
 
121
121
  ```python
122
122
  vol = modal.Volume.from_name("my-volume", create_if_missing=True)
@@ -393,9 +393,9 @@ class Volume(modal.object.Object):
393
393
  ) -> Volume:
394
394
  """Reference a Volume by name, creating if necessary.
395
395
 
396
- In contrast to `modal.Volume.lookup`, this is a lazy method
397
- that defers hydrating the local object with metadata from
398
- Modal servers until the first time is is actually used.
396
+ This is a lazy method that defers hydrating the local
397
+ object with metadata from Modal servers until the first
398
+ time is is actually used.
399
399
 
400
400
  ```python
401
401
  vol = modal.Volume.from_name("my-volume", create_if_missing=True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: modal
3
- Version: 1.0.5.dev21
3
+ Version: 1.0.5.dev23
4
4
  Summary: Python client library for Modal
5
5
  Author-email: Modal Labs <support@modal.com>
6
6
  License: Apache-2.0
@@ -3,7 +3,7 @@ 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
5
  modal/_container_entrypoint.py,sha256=2Zx9O_EMJg0H77EdnC2vGKs6uFMWwbP1NLFf-qYmWmU,28962
6
- modal/_functions.py,sha256=MOffek84MZ50Lj1Gh0GelkGtJuazz6lQKV4awMSioRg,80705
6
+ modal/_functions.py,sha256=Fgavqqqp0P-ZAKk0-3tO3cUaGX5xgq8kXRQ3kSWpaFc,80665
7
7
  modal/_ipython.py,sha256=TW1fkVOmZL3YYqdS2YlM1hqpf654Yf8ZyybHdBnlhSw,301
8
8
  modal/_location.py,sha256=joiX-0ZeutEUDTrrqLF1GHXCdVLF-rHzstocbMcd_-k,366
9
9
  modal/_object.py,sha256=KzzzZoM41UQUiY9TKOrft9BtZKgjWG_ukdlyLGjB4UY,10758
@@ -22,16 +22,16 @@ modal/app.py,sha256=pj-4mpvBR6phFG38rQZ8GM1FIgcaM8cje5d_Vo2_gJU,46602
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=4V29NEMM3OfwCt7ixyozi51-DU_XkA7adoV3tFh7Hhw,15081
25
+ modal/client.pyi,sha256=32iWa_uq3S0I0X49laR4i6n7WyPBpaCnB2jikccCapU,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
- modal/cls.py,sha256=FzDGWTuDvGhyHyd2gFPYnmJbUqEsCXXgUC4zRPm3rwQ,39830
29
- modal/cls.pyi,sha256=_GcB_FSxT51I4VtvSRdak1zDvaPIP3P8cejChF1OhdM,27717
28
+ modal/cls.py,sha256=s5UhFqNQz34aYOpmMTnlgQMhI7GfN3IkCLNlGXrrW7M,39795
29
+ modal/cls.pyi,sha256=B-Rn4PjcfejAlUIh8pZKx__ysPakVGoeq8xuyiN-HKg,27647
30
30
  modal/config.py,sha256=e8sQ4RgwgJ_45S302vWUWs_wqRlKyEt3tU898RiaDKE,12073
31
31
  modal/container_process.py,sha256=PDvjcyZ6eeN8foKQgR0WJ66Sg3lt7OFhK7Y_Akz6k5w,5846
32
32
  modal/container_process.pyi,sha256=E81Zqa6OZ8k_I5SXHb2xz3Sn4vd9SEKd5gyNSr7nBW8,5428
33
- modal/dict.py,sha256=QiCOzZPBcfhJNdKfdS35rwPbZ4nC2nOsDPXnqmUtiAA,14341
34
- modal/dict.pyi,sha256=Ig58Gme_qJcz2LLA0ll1epUysDUX26Z7NEwBBC4i8qc,20910
33
+ modal/dict.py,sha256=7k08gpQA4-UMyfycojq_plaXldzWIdhWAhJs18n-0L8,14305
34
+ modal/dict.pyi,sha256=1Rrrg4ff705m9GD9Mdvg4lg9Mx2EbT7WKHjFVwZS220,20838
35
35
  modal/environments.py,sha256=gHFNLG78bqgizpQ4w_elz27QOqmcgAonFsmLs7NjUJ4,6804
36
36
  modal/environments.pyi,sha256=9-KtrzAcUe55cCP4020lSUD7-fWS7OPakAHssq4-bro,4219
37
37
  modal/exception.py,sha256=RjfKTJH7-Gcf_33BGkvDch-ry1Zx9u6-0QLViNxNTaU,5520
@@ -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=wov-otB5M1oTdrYDtR2_VgacYin2srdtAP4McA1Cqzw,6516
41
41
  modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
42
- modal/functions.pyi,sha256=9jOccXgj4vo16XMH9bW06aBp1bacceCfzEnm53zRACQ,34859
42
+ modal/functions.pyi,sha256=C-vcR7DNCeqb4gIQiooocX_PhgvlvJ8ef4Wt4kqcu_c,34819
43
43
  modal/gpu.py,sha256=Fe5ORvVPDIstSq1xjmM6OoNgLYFWvogP9r5BgmD3hYg,6769
44
44
  modal/image.py,sha256=HAFqGvur6IsWp-7fKDJUU1_KzTwBMt6FDmwQCskxCi4,93301
45
45
  modal/image.pyi,sha256=RX6R-n1SwmNkJXi7L-BuRcfIU_zZH89kw-L7RWjiGic,67344
@@ -47,8 +47,8 @@ modal/io_streams.py,sha256=FUDpBsVK8isqwyC7DtAcQZhaHlMFSaNZGhYJOg-SFW0,15590
47
47
  modal/io_streams.pyi,sha256=5b3b93ztZeR8IpJtNIGffX24QLPgocE4-gAps8y7CKU,13824
48
48
  modal/mount.py,sha256=7gdzBNueSjPsgsdisMv1bv5SncEQyWc6D-YlAbpze3s,35523
49
49
  modal/mount.pyi,sha256=Q4ryg68yyfgJh4dWqcs4y9jvcF8JArU8tIUZhdjRHac,19613
50
- modal/network_file_system.py,sha256=lgtmHYjzA5gDMx0tysH0-WJB2Ao9JD2W15NyYK2A7_w,14612
51
- modal/network_file_system.pyi,sha256=pKY8Cx_Zct8vwWaFTywBKsDmppyVHeI7cFDccdIC2RY,17759
50
+ modal/network_file_system.py,sha256=i9LhgDXURltOOL0FPwX7pd_BDZOuTaU1TZ2Eet2WlBw,14563
51
+ modal/network_file_system.pyi,sha256=xKVVLn9s7qf8iSnDvPZhXeQx83nKynhiwzvMbYY-S_A,17661
52
52
  modal/object.py,sha256=bTeskuY8JFrESjU4_UL_nTwYlBQdOLmVaOX3X6EMxsg,164
53
53
  modal/object.pyi,sha256=OT5nnTwPfQx1Uk0GkTQuGXBhznRk1yXGloH4VkTpcPg,6502
54
54
  modal/output.py,sha256=q4T9uHduunj4NwY-YSwkHGgjZlCXMuJbfQ5UFaAGRAc,1968
@@ -59,8 +59,8 @@ modal/partial_function.pyi,sha256=-rhLIgXtLpP5weJw7U4aMcDxtFMwXJ1wf-nncPowUMg,14
59
59
  modal/proxy.py,sha256=NQJJMGo-D2IfmeU0vb10WWaE4oTLcuf9jTeEJvactOg,1446
60
60
  modal/proxy.pyi,sha256=yWGWwADCRGrC2w81B7671UTH4Uv3HMZKy5vVqlJUZoA,1417
61
61
  modal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- modal/queue.py,sha256=8mmBmMsXG3Dnhq_Y9melHZKQ8xv8cnM90xXLitAHdR4,18846
63
- modal/queue.pyi,sha256=64z-T7xuPYjzVoeUyyfeCwo0ubMR85JeeFoRcPCmq1s,26716
62
+ modal/queue.py,sha256=NThsdkwSHReuv8as8MVdSxgrJNkOxTckyTCgjVhVUqI,18809
63
+ modal/queue.pyi,sha256=6hQq7BZ519EBKXWZbrUgyis9TZ0DNIByk5QgyIK3F4Y,26642
64
64
  modal/retries.py,sha256=IvNLDM0f_GLUDD5VgEDoN09C88yoxSrCquinAuxT1Sc,5205
65
65
  modal/runner.py,sha256=VV-PC03waAdSc_tAwpVN427TelOgs-cKeYS2GFeVRuA,24029
66
66
  modal/runner.pyi,sha256=wdB_ByqIWQdrCz4koBLfBjJ55VHlOEAMFcJ4MRWnlUA,8503
@@ -78,8 +78,8 @@ modal/snapshot.pyi,sha256=0q83hlmWxAhDu8xwZyL5VmYh0i8Tigf7S60or2k30L8,1682
78
78
  modal/stream_type.py,sha256=A6320qoAAWhEfwOCZfGtymQTu5AfLfJXXgARqooTPvY,417
79
79
  modal/token_flow.py,sha256=0_4KabXKsuE4OXTJ1OuLOtA-b1sesShztMZkkRFK7tA,7605
80
80
  modal/token_flow.pyi,sha256=eirYjyqbRiT3GCKMIPHJPpkvBTu8WxDKqSHehWaJI_4,2533
81
- modal/volume.py,sha256=IbkOJSHBjILEwF976tTifWEZEeQ-JDdU1snBl_iOCCU,43047
82
- modal/volume.pyi,sha256=sguBq7BakXdc8IxAajxyCnaOlkDrvKpnZ93noiTcWnM,39558
81
+ modal/volume.py,sha256=SbpM45-KlKGbynYZyDGkj3PhfHx76AipAmNzA0LxWEQ,43009
82
+ modal/volume.pyi,sha256=HIk9SFOYTNaLzvGj9ZaSolkRvdweo3Bg2Mrlq4KxACM,39482
83
83
  modal/_runtime/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
84
84
  modal/_runtime/asgi.py,sha256=_2xSTsDD27Cit7xnMs4lzkJA2wzer2_N4Oa3BkXFzVA,22521
85
85
  modal/_runtime/container_io_manager.py,sha256=qKYtd52I0JAmiw1Wfy_EQXHuHsbmt-XwLqKDLBhWrZc,44289
@@ -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=f1bwyp2UkM844eoO9Qk30gQw_xrMqKpMSeJ6MErXnEk,995
150
- modal-1.0.5.dev21.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
150
+ modal-1.0.5.dev23.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=az2MRXqhtjUo4scYFoEi2zfyuaMUuHBATa8AoeQOHkk,121
173
+ modal_version/__init__.py,sha256=xw3MVaRg3zyZmcNCet7RxDckJPJCNmYMmecn8maSv0I,121
174
174
  modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
175
- modal-1.0.5.dev21.dist-info/METADATA,sha256=tcNSebHzC2eDsnO5yciqHFyBN1c8Yo6-jtRyR0uYXfA,2462
176
- modal-1.0.5.dev21.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
177
- modal-1.0.5.dev21.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
178
- modal-1.0.5.dev21.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
179
- modal-1.0.5.dev21.dist-info/RECORD,,
175
+ modal-1.0.5.dev23.dist-info/METADATA,sha256=AMPeD0Y00laXrpf79rH9e6ObJvxQZo-Riur_EnVV6qI,2462
176
+ modal-1.0.5.dev23.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
177
+ modal-1.0.5.dev23.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
178
+ modal-1.0.5.dev23.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
179
+ modal-1.0.5.dev23.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.5.dev21"
4
+ __version__ = "1.0.5.dev23"