modal 1.0.0.dev1__py3-none-any.whl → 1.0.0.dev3__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 +1 -3
- modal/_partial_function.py +3 -13
- modal/app.py +0 -2
- modal/client.pyi +2 -2
- modal/cls.py +1 -3
- modal/dict.py +1 -4
- modal/environments.py +1 -3
- modal/functions.pyi +6 -6
- modal/mount.py +1 -3
- modal/network_file_system.py +1 -4
- modal/queue.py +1 -4
- modal/secret.py +1 -3
- modal/volume.py +1 -4
- {modal-1.0.0.dev1.dist-info → modal-1.0.0.dev3.dist-info}/METADATA +1 -1
- {modal-1.0.0.dev1.dist-info → modal-1.0.0.dev3.dist-info}/RECORD +20 -20
- modal_version/__init__.py +1 -1
- {modal-1.0.0.dev1.dist-info → modal-1.0.0.dev3.dist-info}/WHEEL +0 -0
- {modal-1.0.0.dev1.dist-info → modal-1.0.0.dev3.dist-info}/entry_points.txt +0 -0
- {modal-1.0.0.dev1.dist-info → modal-1.0.0.dev3.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.0.dev1.dist-info → modal-1.0.0.dev3.dist-info}/top_level.txt +0 -0
modal/_functions.py
CHANGED
@@ -41,7 +41,7 @@ from ._utils.async_utils import (
|
|
41
41
|
synchronizer,
|
42
42
|
warn_if_generator_is_not_consumed,
|
43
43
|
)
|
44
|
-
from ._utils.deprecation import deprecation_error, deprecation_warning
|
44
|
+
from ._utils.deprecation import deprecation_error, deprecation_warning
|
45
45
|
from ._utils.function_utils import (
|
46
46
|
ATTEMPT_TIMEOUT_GRACE_PERIOD,
|
47
47
|
OUTPUTS_TIMEOUT,
|
@@ -1255,7 +1255,6 @@ class _Function(typing.Generic[P, ReturnType, OriginalReturnType], _Object, type
|
|
1255
1255
|
return cls._from_loader(_load_remote, rep, is_another_app=True, hydrate_lazily=True)
|
1256
1256
|
|
1257
1257
|
@classmethod
|
1258
|
-
@renamed_parameter((2024, 12, 18), "tag", "name")
|
1259
1258
|
def from_name(
|
1260
1259
|
cls: type["_Function"],
|
1261
1260
|
app_name: str,
|
@@ -1288,7 +1287,6 @@ class _Function(typing.Generic[P, ReturnType, OriginalReturnType], _Object, type
|
|
1288
1287
|
return cls._from_name(app_name, name, namespace, environment_name)
|
1289
1288
|
|
1290
1289
|
@staticmethod
|
1291
|
-
@renamed_parameter((2024, 12, 18), "tag", "name")
|
1292
1290
|
async def lookup(
|
1293
1291
|
app_name: str,
|
1294
1292
|
name: str,
|
modal/_partial_function.py
CHANGED
@@ -18,7 +18,7 @@ from modal_proto import api_pb2
|
|
18
18
|
from ._functions import _Function
|
19
19
|
from ._utils.async_utils import synchronizer
|
20
20
|
from ._utils.deprecation import deprecation_warning
|
21
|
-
from ._utils.function_utils import
|
21
|
+
from ._utils.function_utils import callable_has_non_self_params
|
22
22
|
from .config import logger
|
23
23
|
from .exception import InvalidError
|
24
24
|
|
@@ -181,21 +181,11 @@ class _PartialFunction(typing.Generic[P, ReturnType, OriginalReturnType]):
|
|
181
181
|
|
182
182
|
if require_sync and inspect.iscoroutinefunction(self.raw_f):
|
183
183
|
self.registered = True # Hacky, avoid false-positive warning
|
184
|
-
raise InvalidError(f"`@modal.{decorator_name}` can't be applied to an async function.")
|
184
|
+
raise InvalidError(f"The `@modal.{decorator_name}` decorator can't be applied to an async function.")
|
185
185
|
|
186
186
|
if require_nullary and callable_has_non_self_params(self.raw_f):
|
187
187
|
self.registered = True # Hacky, avoid false-positive warning
|
188
|
-
|
189
|
-
raise InvalidError(f"Functions obj by `@modal.{decorator_name}` can't have parameters.")
|
190
|
-
else:
|
191
|
-
# TODO(michael): probably fine to just make this an error at this point
|
192
|
-
# but best to do it in a separate PR
|
193
|
-
deprecation_warning(
|
194
|
-
(2024, 9, 4),
|
195
|
-
f"The function obj by `@modal.{decorator_name}` has default parameters, "
|
196
|
-
"but shouldn't have any parameters - Modal will drop support for "
|
197
|
-
"default parameters in a future release.",
|
198
|
-
)
|
188
|
+
raise InvalidError(f"Functions decorated by `@modal.{decorator_name}` can't have parameters.")
|
199
189
|
|
200
190
|
def _get_raw_f(self) -> Callable[P, ReturnType]:
|
201
191
|
assert self.raw_f is not None
|
modal/app.py
CHANGED
@@ -32,7 +32,6 @@ from ._utils.async_utils import synchronize_api
|
|
32
32
|
from ._utils.deprecation import (
|
33
33
|
deprecation_error,
|
34
34
|
deprecation_warning,
|
35
|
-
renamed_parameter,
|
36
35
|
warn_on_renamed_autoscaler_settings,
|
37
36
|
)
|
38
37
|
from ._utils.function_utils import FunctionInfo, is_global_object, is_method_fn
|
@@ -251,7 +250,6 @@ class _App:
|
|
251
250
|
return self._description
|
252
251
|
|
253
252
|
@staticmethod
|
254
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
255
253
|
async def lookup(
|
256
254
|
name: str,
|
257
255
|
*,
|
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.0.
|
34
|
+
version: str = "1.0.0.dev3",
|
35
35
|
): ...
|
36
36
|
def is_closed(self) -> bool: ...
|
37
37
|
@property
|
@@ -94,7 +94,7 @@ class Client:
|
|
94
94
|
server_url: str,
|
95
95
|
client_type: int,
|
96
96
|
credentials: typing.Optional[tuple[str, str]],
|
97
|
-
version: str = "1.0.0.
|
97
|
+
version: str = "1.0.0.dev3",
|
98
98
|
): ...
|
99
99
|
def is_closed(self) -> bool: ...
|
100
100
|
@property
|
modal/cls.py
CHANGED
@@ -25,7 +25,7 @@ from ._serialization import check_valid_cls_constructor_arg
|
|
25
25
|
from ._traceback import print_server_warnings
|
26
26
|
from ._type_manager import parameter_serde_registry
|
27
27
|
from ._utils.async_utils import synchronize_api, synchronizer
|
28
|
-
from ._utils.deprecation import deprecation_warning,
|
28
|
+
from ._utils.deprecation import deprecation_warning, warn_on_renamed_autoscaler_settings
|
29
29
|
from ._utils.grpc_utils import retry_transient_errors
|
30
30
|
from ._utils.mount_utils import validate_volumes
|
31
31
|
from .client import _Client
|
@@ -586,7 +586,6 @@ More information on class parameterization can be found here: https://modal.com/
|
|
586
586
|
return cls
|
587
587
|
|
588
588
|
@classmethod
|
589
|
-
@renamed_parameter((2024, 12, 18), "tag", "name")
|
590
589
|
def from_name(
|
591
590
|
cls: type["_Cls"],
|
592
591
|
app_name: str,
|
@@ -786,7 +785,6 @@ More information on class parameterization can be found here: https://modal.com/
|
|
786
785
|
return cls
|
787
786
|
|
788
787
|
@staticmethod
|
789
|
-
@renamed_parameter((2024, 12, 18), "tag", "name")
|
790
788
|
async def lookup(
|
791
789
|
app_name: str,
|
792
790
|
name: str,
|
modal/dict.py
CHANGED
@@ -11,7 +11,7 @@ from ._object import EPHEMERAL_OBJECT_HEARTBEAT_SLEEP, _get_environment_name, _O
|
|
11
11
|
from ._resolver import Resolver
|
12
12
|
from ._serialization import deserialize, serialize
|
13
13
|
from ._utils.async_utils import TaskContext, synchronize_api
|
14
|
-
from ._utils.deprecation import deprecation_warning
|
14
|
+
from ._utils.deprecation import deprecation_warning
|
15
15
|
from ._utils.grpc_utils import retry_transient_errors
|
16
16
|
from ._utils.name_utils import check_object_name
|
17
17
|
from .client import _Client
|
@@ -115,7 +115,6 @@ class _Dict(_Object, type_prefix="di"):
|
|
115
115
|
yield cls._new_hydrated(response.dict_id, client, None, is_another_app=True)
|
116
116
|
|
117
117
|
@staticmethod
|
118
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
119
118
|
def from_name(
|
120
119
|
name: str,
|
121
120
|
data: Optional[dict] = None, # DEPRECATED
|
@@ -159,7 +158,6 @@ class _Dict(_Object, type_prefix="di"):
|
|
159
158
|
return _Dict._from_loader(_load, "Dict()", is_another_app=True, hydrate_lazily=True)
|
160
159
|
|
161
160
|
@staticmethod
|
162
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
163
161
|
async def lookup(
|
164
162
|
name: str,
|
165
163
|
data: Optional[dict] = None,
|
@@ -200,7 +198,6 @@ class _Dict(_Object, type_prefix="di"):
|
|
200
198
|
return obj
|
201
199
|
|
202
200
|
@staticmethod
|
203
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
204
201
|
async def delete(
|
205
202
|
name: str,
|
206
203
|
*,
|
modal/environments.py
CHANGED
@@ -11,7 +11,7 @@ from modal_proto import api_pb2
|
|
11
11
|
from ._object import _Object
|
12
12
|
from ._resolver import Resolver
|
13
13
|
from ._utils.async_utils import synchronize_api, synchronizer
|
14
|
-
from ._utils.deprecation import deprecation_warning
|
14
|
+
from ._utils.deprecation import deprecation_warning
|
15
15
|
from ._utils.grpc_utils import retry_transient_errors
|
16
16
|
from ._utils.name_utils import check_object_name
|
17
17
|
from .client import _Client
|
@@ -50,7 +50,6 @@ class _Environment(_Object, type_prefix="en"):
|
|
50
50
|
)
|
51
51
|
|
52
52
|
@staticmethod
|
53
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
54
53
|
def from_name(
|
55
54
|
name: str,
|
56
55
|
*,
|
@@ -81,7 +80,6 @@ class _Environment(_Object, type_prefix="en"):
|
|
81
80
|
return _Environment._from_loader(_load, "Environment()", is_another_app=True, hydrate_lazily=True)
|
82
81
|
|
83
82
|
@staticmethod
|
84
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
85
83
|
async def lookup(
|
86
84
|
name: str,
|
87
85
|
client: Optional[_Client] = None,
|
modal/functions.pyi
CHANGED
@@ -234,11 +234,11 @@ class Function(
|
|
234
234
|
|
235
235
|
_call_generator_nowait: ___call_generator_nowait_spec[typing_extensions.Self]
|
236
236
|
|
237
|
-
class __remote_spec(typing_extensions.Protocol[
|
237
|
+
class __remote_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER, SUPERSELF]):
|
238
238
|
def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> ReturnType_INNER: ...
|
239
239
|
async def aio(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> ReturnType_INNER: ...
|
240
240
|
|
241
|
-
remote: __remote_spec[modal._functions.
|
241
|
+
remote: __remote_spec[modal._functions.P, modal._functions.ReturnType, typing_extensions.Self]
|
242
242
|
|
243
243
|
class __remote_gen_spec(typing_extensions.Protocol[SUPERSELF]):
|
244
244
|
def __call__(self, /, *args, **kwargs) -> typing.Generator[typing.Any, None, None]: ...
|
@@ -253,12 +253,12 @@ class Function(
|
|
253
253
|
self, *args: modal._functions.P.args, **kwargs: modal._functions.P.kwargs
|
254
254
|
) -> modal._functions.OriginalReturnType: ...
|
255
255
|
|
256
|
-
class ___experimental_spawn_spec(typing_extensions.Protocol[
|
256
|
+
class ___experimental_spawn_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER, SUPERSELF]):
|
257
257
|
def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
258
258
|
async def aio(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
259
259
|
|
260
260
|
_experimental_spawn: ___experimental_spawn_spec[
|
261
|
-
modal._functions.
|
261
|
+
modal._functions.P, modal._functions.ReturnType, typing_extensions.Self
|
262
262
|
]
|
263
263
|
|
264
264
|
class ___spawn_map_inner_spec(typing_extensions.Protocol[P_INNER, SUPERSELF]):
|
@@ -267,11 +267,11 @@ class Function(
|
|
267
267
|
|
268
268
|
_spawn_map_inner: ___spawn_map_inner_spec[modal._functions.P, typing_extensions.Self]
|
269
269
|
|
270
|
-
class __spawn_spec(typing_extensions.Protocol[
|
270
|
+
class __spawn_spec(typing_extensions.Protocol[P_INNER, ReturnType_INNER, SUPERSELF]):
|
271
271
|
def __call__(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
272
272
|
async def aio(self, /, *args: P_INNER.args, **kwargs: P_INNER.kwargs) -> FunctionCall[ReturnType_INNER]: ...
|
273
273
|
|
274
|
-
spawn: __spawn_spec[modal._functions.
|
274
|
+
spawn: __spawn_spec[modal._functions.P, modal._functions.ReturnType, typing_extensions.Self]
|
275
275
|
|
276
276
|
def get_raw_f(self) -> collections.abc.Callable[..., typing.Any]: ...
|
277
277
|
|
modal/mount.py
CHANGED
@@ -26,7 +26,7 @@ from ._object import _get_environment_name, _Object
|
|
26
26
|
from ._resolver import Resolver
|
27
27
|
from ._utils.async_utils import aclosing, async_map, synchronize_api
|
28
28
|
from ._utils.blob_utils import FileUploadSpec, blob_upload_file, get_file_upload_spec_from_path
|
29
|
-
from ._utils.deprecation import deprecation_warning
|
29
|
+
from ._utils.deprecation import deprecation_warning
|
30
30
|
from ._utils.grpc_utils import retry_transient_errors
|
31
31
|
from ._utils.name_utils import check_object_name
|
32
32
|
from ._utils.package_utils import get_module_mount_info
|
@@ -691,7 +691,6 @@ class _Mount(_Object, type_prefix="mo"):
|
|
691
691
|
return mount
|
692
692
|
|
693
693
|
@staticmethod
|
694
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
695
694
|
def from_name(
|
696
695
|
name: str,
|
697
696
|
*,
|
@@ -712,7 +711,6 @@ class _Mount(_Object, type_prefix="mo"):
|
|
712
711
|
return _Mount._from_loader(_load, "Mount()", hydrate_lazily=True)
|
713
712
|
|
714
713
|
@classmethod
|
715
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
716
714
|
async def lookup(
|
717
715
|
cls: type["_Mount"],
|
718
716
|
name: str,
|
modal/network_file_system.py
CHANGED
@@ -22,7 +22,7 @@ from ._object import (
|
|
22
22
|
from ._resolver import Resolver
|
23
23
|
from ._utils.async_utils import TaskContext, aclosing, async_map, sync_or_async_iter, synchronize_api
|
24
24
|
from ._utils.blob_utils import LARGE_FILE_LIMIT, blob_iter, blob_upload_file
|
25
|
-
from ._utils.deprecation import deprecation_warning
|
25
|
+
from ._utils.deprecation import deprecation_warning
|
26
26
|
from ._utils.grpc_utils import retry_transient_errors
|
27
27
|
from ._utils.hash_utils import get_sha256_hex
|
28
28
|
from ._utils.name_utils import check_object_name
|
@@ -89,7 +89,6 @@ class _NetworkFileSystem(_Object, type_prefix="sv"):
|
|
89
89
|
"""
|
90
90
|
|
91
91
|
@staticmethod
|
92
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
93
92
|
def from_name(
|
94
93
|
name: str,
|
95
94
|
*,
|
@@ -166,7 +165,6 @@ class _NetworkFileSystem(_Object, type_prefix="sv"):
|
|
166
165
|
yield cls._new_hydrated(response.shared_volume_id, client, None, is_another_app=True)
|
167
166
|
|
168
167
|
@staticmethod
|
169
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
170
168
|
async def lookup(
|
171
169
|
name: str,
|
172
170
|
namespace=api_pb2.DEPLOYMENT_NAMESPACE_WORKSPACE,
|
@@ -222,7 +220,6 @@ class _NetworkFileSystem(_Object, type_prefix="sv"):
|
|
222
220
|
return resp.shared_volume_id
|
223
221
|
|
224
222
|
@staticmethod
|
225
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
226
223
|
async def delete(name: str, client: Optional[_Client] = None, environment_name: Optional[str] = None):
|
227
224
|
obj = await _NetworkFileSystem.from_name(name, environment_name=environment_name).hydrate(client)
|
228
225
|
req = api_pb2.SharedVolumeDeleteRequest(shared_volume_id=obj.object_id)
|
modal/queue.py
CHANGED
@@ -14,7 +14,7 @@ from ._object import EPHEMERAL_OBJECT_HEARTBEAT_SLEEP, _get_environment_name, _O
|
|
14
14
|
from ._resolver import Resolver
|
15
15
|
from ._serialization import deserialize, serialize
|
16
16
|
from ._utils.async_utils import TaskContext, synchronize_api, warn_if_generator_is_not_consumed
|
17
|
-
from ._utils.deprecation import deprecation_warning
|
17
|
+
from ._utils.deprecation import deprecation_warning
|
18
18
|
from ._utils.grpc_utils import retry_transient_errors
|
19
19
|
from ._utils.name_utils import check_object_name
|
20
20
|
from .client import _Client
|
@@ -145,7 +145,6 @@ class _Queue(_Object, type_prefix="qu"):
|
|
145
145
|
yield cls._new_hydrated(response.queue_id, client, None, is_another_app=True)
|
146
146
|
|
147
147
|
@staticmethod
|
148
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
149
148
|
def from_name(
|
150
149
|
name: str,
|
151
150
|
*,
|
@@ -179,7 +178,6 @@ class _Queue(_Object, type_prefix="qu"):
|
|
179
178
|
return _Queue._from_loader(_load, "Queue()", is_another_app=True, hydrate_lazily=True)
|
180
179
|
|
181
180
|
@staticmethod
|
182
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
183
181
|
async def lookup(
|
184
182
|
name: str,
|
185
183
|
namespace=api_pb2.DEPLOYMENT_NAMESPACE_WORKSPACE,
|
@@ -215,7 +213,6 @@ class _Queue(_Object, type_prefix="qu"):
|
|
215
213
|
return obj
|
216
214
|
|
217
215
|
@staticmethod
|
218
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
219
216
|
async def delete(name: str, *, client: Optional[_Client] = None, environment_name: Optional[str] = None):
|
220
217
|
obj = await _Queue.from_name(name, environment_name=environment_name).hydrate(client)
|
221
218
|
req = api_pb2.QueueDeleteRequest(queue_id=obj.object_id)
|
modal/secret.py
CHANGED
@@ -10,7 +10,7 @@ from ._object import _get_environment_name, _Object
|
|
10
10
|
from ._resolver import Resolver
|
11
11
|
from ._runtime.execution_context import is_local
|
12
12
|
from ._utils.async_utils import synchronize_api
|
13
|
-
from ._utils.deprecation import deprecation_warning
|
13
|
+
from ._utils.deprecation import deprecation_warning
|
14
14
|
from ._utils.grpc_utils import retry_transient_errors
|
15
15
|
from ._utils.name_utils import check_object_name
|
16
16
|
from .client import _Client
|
@@ -162,7 +162,6 @@ class _Secret(_Object, type_prefix="st"):
|
|
162
162
|
return _Secret._from_loader(_load, "Secret.from_dotenv()", hydrate_lazily=True)
|
163
163
|
|
164
164
|
@staticmethod
|
165
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
166
165
|
def from_name(
|
167
166
|
name: str,
|
168
167
|
*,
|
@@ -206,7 +205,6 @@ class _Secret(_Object, type_prefix="st"):
|
|
206
205
|
return _Secret._from_loader(_load, "Secret()", hydrate_lazily=True)
|
207
206
|
|
208
207
|
@staticmethod
|
209
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
210
208
|
async def lookup(
|
211
209
|
name: str,
|
212
210
|
namespace=api_pb2.DEPLOYMENT_NAMESPACE_WORKSPACE,
|
modal/volume.py
CHANGED
@@ -49,7 +49,7 @@ from ._utils.blob_utils import (
|
|
49
49
|
get_file_upload_spec_from_fileobj,
|
50
50
|
get_file_upload_spec_from_path,
|
51
51
|
)
|
52
|
-
from ._utils.deprecation import deprecation_error, deprecation_warning
|
52
|
+
from ._utils.deprecation import deprecation_error, deprecation_warning
|
53
53
|
from ._utils.grpc_utils import retry_transient_errors
|
54
54
|
from ._utils.http_utils import ClientSessionRegistry
|
55
55
|
from ._utils.name_utils import check_object_name
|
@@ -149,7 +149,6 @@ class _Volume(_Object, type_prefix="vo"):
|
|
149
149
|
return self._lock
|
150
150
|
|
151
151
|
@staticmethod
|
152
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
153
152
|
def from_name(
|
154
153
|
name: str,
|
155
154
|
*,
|
@@ -244,7 +243,6 @@ class _Volume(_Object, type_prefix="vo"):
|
|
244
243
|
yield cls._new_hydrated(response.volume_id, client, response.metadata, is_another_app=True)
|
245
244
|
|
246
245
|
@staticmethod
|
247
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
248
246
|
async def lookup(
|
249
247
|
name: str,
|
250
248
|
namespace=api_pb2.DEPLOYMENT_NAMESPACE_WORKSPACE,
|
@@ -595,7 +593,6 @@ class _Volume(_Object, type_prefix="vo"):
|
|
595
593
|
)
|
596
594
|
|
597
595
|
@staticmethod
|
598
|
-
@renamed_parameter((2024, 12, 18), "label", "name")
|
599
596
|
async def delete(name: str, client: Optional[_Client] = None, environment_name: Optional[str] = None):
|
600
597
|
obj = await _Volume.from_name(name, environment_name=environment_name).hydrate(client)
|
601
598
|
req = api_pb2.VolumeDeleteRequest(volume_id=obj.object_id)
|
@@ -3,12 +3,12 @@ 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=2aWxN2v5WUnj-R-sk6BzJ-3AvggkQGQjwhtvbDH3pds,777
|
5
5
|
modal/_container_entrypoint.py,sha256=2Zx9O_EMJg0H77EdnC2vGKs6uFMWwbP1NLFf-qYmWmU,28962
|
6
|
-
modal/_functions.py,sha256=
|
6
|
+
modal/_functions.py,sha256=3ftxwJd-4bSZlEDv2SFGQBgakXqLiTvV_itoAShXrY8,80765
|
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=6ve4sI2nRAnjPCuAXdSoUplaXfzC9MqRlF_ZLULwwy0,11472
|
10
10
|
modal/_output.py,sha256=Z0nngPh2mKHMQc4MQ92YjVPc3ewOLa3I4dFBlL9nvQY,25656
|
11
|
-
modal/_partial_function.py,sha256=
|
11
|
+
modal/_partial_function.py,sha256=rxao4kjCoHYvV7esRFzIUiOW7y6jTGIyTYvYuCtBfjE,39140
|
12
12
|
modal/_pty.py,sha256=JZfPDDpzqICZqtyPI_oMJf_9w-p_lLNuzHhwhodUXio,1329
|
13
13
|
modal/_resolver.py,sha256=-nolqj_p_mx5czVYj1Mazh2IQWpSMrTOGughVJqYfo8,7579
|
14
14
|
modal/_resources.py,sha256=NMAp0GCLutiZI4GuKSIVnRHVlstoD3hNGUabjTUtzf4,1794
|
@@ -18,36 +18,36 @@ modal/_tunnel.py,sha256=zTBxBiuH1O22tS1OliAJdIsSmaZS8PlnifS_6S5z-mk,6320
|
|
18
18
|
modal/_tunnel.pyi,sha256=a4Ea0RQ5jaJB0A4LH9FANGB44ObqkHHGVDV4RwtokzU,1251
|
19
19
|
modal/_type_manager.py,sha256=DWjgmjYJuOagw2erin506UUbG2H5UzZCFEekS-7hmfA,9087
|
20
20
|
modal/_watcher.py,sha256=K6LYnlmSGQB4tWWI9JADv-tvSvQ1j522FwT71B51CX8,3584
|
21
|
-
modal/app.py,sha256=
|
21
|
+
modal/app.py,sha256=nwA0G0ZG9SOi3IMHtOHpLymbH0KY8mjVNftUjtWmgtc,51244
|
22
22
|
modal/app.pyi,sha256=zNwR1_2LpmQc9AhemuAeVdk90XNYDw9keOkXAwAATeA,28732
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
24
24
|
modal/client.py,sha256=o-aQThHpvDHUzg_kUafyhWzACViUBhY2WLZ2EitnSHA,16787
|
25
|
-
modal/client.pyi,sha256=
|
25
|
+
modal/client.pyi,sha256=u5KcyLX2hIG2Mup082BqCyrLRm-5FSBTvXimIeHdq7M,8457
|
26
26
|
modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
|
27
27
|
modal/cloud_bucket_mount.pyi,sha256=30T3K1a89l6wzmEJ_J9iWv9SknoGqaZDx59Xs-ZQcmk,1607
|
28
|
-
modal/cls.py,sha256=
|
28
|
+
modal/cls.py,sha256=KKCzn4xTo0hz4t9WxcYVDIHA3_Vm4kPs3UnBq134H58,38238
|
29
29
|
modal/cls.pyi,sha256=BmFCoiFS4EQjkx36iybAFNpxu6xaq24lyJpQuCsB-ko,12990
|
30
30
|
modal/config.py,sha256=OOMEJ5LHNFbHRW5wUpuhl0TH6EPW8D1XV9I3OJXrZrk,12668
|
31
31
|
modal/container_process.py,sha256=vvyK3DVPUMsuqvkKdUiQ49cDLF9JawGrxpglLk5vfgI,6208
|
32
32
|
modal/container_process.pyi,sha256=cR4aRHTbcVvmxGCc1_k2Ey8JllJIAQYq9PBKx0_1TuI,2916
|
33
|
-
modal/dict.py,sha256=
|
33
|
+
modal/dict.py,sha256=G7jA94GYBwcN1jgpaFESjS3xDBIjR_N4cJLno5H2qow,14304
|
34
34
|
modal/dict.pyi,sha256=RBaQyOd1ABRNN7vIf5L_rv94y7Kq5Qn9IlKHSr4j8N0,8120
|
35
|
-
modal/environments.py,sha256=
|
35
|
+
modal/environments.py,sha256=gHFNLG78bqgizpQ4w_elz27QOqmcgAonFsmLs7NjUJ4,6804
|
36
36
|
modal/environments.pyi,sha256=4HbI0kywveaUVI7HqDtZ4HphCTGXYi_wie2hz87up5A,3425
|
37
37
|
modal/exception.py,sha256=4JyO-SACaLNDe2QC48EjsK8GMkZ8AgEurZ8j1YdRu8E,5263
|
38
38
|
modal/file_io.py,sha256=lcMs_E9Xfm0YX1t9U2wNIBPnqHRxmImqjLW1GHqVmyg,20945
|
39
39
|
modal/file_io.pyi,sha256=oB7x-rKq7bmm8cA7Z7W9C9yeko7KK9m9i5GidFnkGK4,9569
|
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=
|
42
|
+
modal/functions.pyi,sha256=0RGY6ZEkaHZcxhKrY_DnwYew9vDIK7hW8BY0LFjm2GM,17001
|
43
43
|
modal/gpu.py,sha256=Kbhs_u49FaC2Zi0TjCdrpstpRtT5eZgecynmQi5IZVE,6752
|
44
44
|
modal/image.py,sha256=lg3XxIWNYV8je88oEPbihzSEq_9gumc0NLbzZLAhm74,92807
|
45
45
|
modal/image.pyi,sha256=MDq7tNJevElK78VxFYrZRe_00kz9gPdg98MN5c6fFoE,25644
|
46
46
|
modal/io_streams.py,sha256=YDZVQSDv05DeXg5TwcucC9Rj5hQBx2GXdluan9rIUpw,15467
|
47
47
|
modal/io_streams.pyi,sha256=1UK6kWLREASQfq-wL9wSp5iqjLU0egRZPDn4LXs1PZY,5136
|
48
|
-
modal/mount.py,sha256=
|
48
|
+
modal/mount.py,sha256=djtfIt9N5t2zujLU9VtVQaYyNazgjGCM9wKv5NxhLf4,32844
|
49
49
|
modal/mount.pyi,sha256=PHs-N9LGSDfYWw70UrhvGZW_6uWwyx-1GAieROzCNNs,12583
|
50
|
-
modal/network_file_system.py,sha256=
|
50
|
+
modal/network_file_system.py,sha256=P65zs04YkRyGm1uGNbIYzjQH-YGdCTBiW6L5q_JoYh4,14592
|
51
51
|
modal/network_file_system.pyi,sha256=58DiUqHGlARmI3cz-Yo7IFObKKFIiGh5UIU5JxGNFfc,8333
|
52
52
|
modal/object.py,sha256=bTeskuY8JFrESjU4_UL_nTwYlBQdOLmVaOX3X6EMxsg,164
|
53
53
|
modal/object.pyi,sha256=Nc6fCW8ViC8YQPbtJav9KNDCW296-VimRUh-v3AaaYY,5674
|
@@ -59,7 +59,7 @@ modal/partial_function.pyi,sha256=NFWz1aCAs2B3-GnPf1cTatWRZOLnYpFKCnjP_X9iNRs,64
|
|
59
59
|
modal/proxy.py,sha256=XEjIHzZvbD3UW4YWyDzbDuNFq6hDUxyPPxupl2qwULY,1429
|
60
60
|
modal/proxy.pyi,sha256=FTTK1g3La8oLf0oXWeoTp1jMVKghzN_2UmESJoLvsn0,396
|
61
61
|
modal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
|
-
modal/queue.py,sha256=
|
62
|
+
modal/queue.py,sha256=U2QmeY8T0fdLZmZKKcDcSnNzYu8MM-tr2qm0Nd3D2eo,18809
|
63
63
|
modal/queue.pyi,sha256=O0f0S5kM1P0GVgzUzgsN0XsI46B9cJem4kkWluFndjM,10632
|
64
64
|
modal/retries.py,sha256=IvNLDM0f_GLUDD5VgEDoN09C88yoxSrCquinAuxT1Sc,5205
|
65
65
|
modal/runner.py,sha256=yK1mBkX1_ZKvvWLoe1e2mGehJSWs97Mpyglo9Oj5rQw,24783
|
@@ -69,7 +69,7 @@ modal/sandbox.py,sha256=aLW1hCMrk9ndfXaWjDcknS0U-ei-GhUpSjo-pURrnW8,32722
|
|
69
69
|
modal/sandbox.pyi,sha256=_40Mjzj9iO8MrMqb5snlnQZ5FAy2bEv5-8BGbqqgxLk,22959
|
70
70
|
modal/schedule.py,sha256=ewa7hb9NKYnoeSCW2PujZAbGGJL8btX6X3KalCFpc_M,2626
|
71
71
|
modal/scheduler_placement.py,sha256=BAREdOY5HzHpzSBqt6jDVR6YC_jYfHMVqOzkyqQfngU,1235
|
72
|
-
modal/secret.py,sha256=
|
72
|
+
modal/secret.py,sha256=I2z-rgKWl_Ix107d2_Y2OWGXdFOuJ7zMOyDfIOdFI1A,10374
|
73
73
|
modal/secret.pyi,sha256=NY_dz0UjiYyn4u4LaBZwPP3Ji7SlTLpEyzrYK2sj9HQ,3103
|
74
74
|
modal/serving.py,sha256=orZjhyikqk7U77My7GedbVKy65j0_CF7J7mqye86dRw,4650
|
75
75
|
modal/serving.pyi,sha256=MVlw5aqe1rJPapB7f6GSAQn7GY00T617LZpqFq_1qsw,2000
|
@@ -78,7 +78,7 @@ modal/snapshot.pyi,sha256=dIEBdTPb7O3VwkQ8TMPjfyU17RLuS9i0DnACxxHy8X4,676
|
|
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=ILbRv6JsZq-jK8jcJM7eB74e0PsbzwBm7hyPcV9lBlQ,2121
|
81
|
-
modal/volume.py,sha256=
|
81
|
+
modal/volume.py,sha256=156xd4FoEc-a83ksCjtVdx5jYlnj17WUuNvVhVnt4No,43381
|
82
82
|
modal/volume.pyi,sha256=9hPIMRBzGZycVL8uRfGpjSmNu_pCbkGAOyrnE86bU2Y,21113
|
83
83
|
modal/_runtime/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
|
84
84
|
modal/_runtime/asgi.py,sha256=_2xSTsDD27Cit7xnMs4lzkJA2wzer2_N4Oa3BkXFzVA,22521
|
@@ -146,7 +146,7 @@ modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddR
|
|
146
146
|
modal/requirements/PREVIEW.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
147
147
|
modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
|
148
148
|
modal/requirements/base-images.json,sha256=57vMSqzMbLBxw5tFWSaMiIkkVEps4JfX5PAtXGnkS4U,740
|
149
|
-
modal-1.0.0.
|
149
|
+
modal-1.0.0.dev3.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
150
150
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
151
151
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
152
152
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
@@ -169,10 +169,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
|
|
169
169
|
modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
170
170
|
modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
|
171
171
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
172
|
-
modal_version/__init__.py,sha256=
|
172
|
+
modal_version/__init__.py,sha256=DglsWyd67baJaAgqNGGoks3B9TCq8XHVtBoSZKg8vH8,120
|
173
173
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
174
|
-
modal-1.0.0.
|
175
|
-
modal-1.0.0.
|
176
|
-
modal-1.0.0.
|
177
|
-
modal-1.0.0.
|
178
|
-
modal-1.0.0.
|
174
|
+
modal-1.0.0.dev3.dist-info/METADATA,sha256=zvL6VkPL9lmdo8fo2Igjj9QXWkzFoqTD12E9aKt1Ouk,2454
|
175
|
+
modal-1.0.0.dev3.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
176
|
+
modal-1.0.0.dev3.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
177
|
+
modal-1.0.0.dev3.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
178
|
+
modal-1.0.0.dev3.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|