modal 0.73.95__py3-none-any.whl → 0.73.97__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/_utils/grpc_utils.py +10 -0
- modal/client.pyi +2 -2
- modal/image.py +5 -2
- modal/image.pyi +17 -13
- modal/parallel_map.py +19 -21
- modal/requirements/PREVIEW.txt +16 -0
- modal/requirements/base-images.json +5 -1
- {modal-0.73.95.dist-info → modal-0.73.97.dist-info}/METADATA +1 -1
- {modal-0.73.95.dist-info → modal-0.73.97.dist-info}/RECORD +14 -13
- modal_version/_version_generated.py +1 -1
- {modal-0.73.95.dist-info → modal-0.73.97.dist-info}/LICENSE +0 -0
- {modal-0.73.95.dist-info → modal-0.73.97.dist-info}/WHEEL +0 -0
- {modal-0.73.95.dist-info → modal-0.73.97.dist-info}/entry_points.txt +0 -0
- {modal-0.73.95.dist-info → modal-0.73.97.dist-info}/top_level.txt +0 -0
modal/_utils/grpc_utils.py
CHANGED
@@ -8,6 +8,7 @@ import typing
|
|
8
8
|
import urllib.parse
|
9
9
|
import uuid
|
10
10
|
from collections.abc import AsyncIterator
|
11
|
+
from dataclasses import dataclass
|
11
12
|
from typing import (
|
12
13
|
Any,
|
13
14
|
Optional,
|
@@ -68,6 +69,11 @@ RETRYABLE_GRPC_STATUS_CODES = [
|
|
68
69
|
Status.INTERNAL,
|
69
70
|
]
|
70
71
|
|
72
|
+
@dataclass
|
73
|
+
class RetryWarningMessage:
|
74
|
+
message: str
|
75
|
+
warning_interval: int
|
76
|
+
errors_to_warn_for: typing.List[Status]
|
71
77
|
|
72
78
|
def create_channel(
|
73
79
|
server_url: str,
|
@@ -144,6 +150,7 @@ async def retry_transient_errors(
|
|
144
150
|
attempt_timeout: Optional[float] = None, # timeout for each attempt
|
145
151
|
total_timeout: Optional[float] = None, # timeout for the entire function call
|
146
152
|
attempt_timeout_floor=2.0, # always have at least this much timeout (only for total_timeout)
|
153
|
+
retry_warning_message: Optional[RetryWarningMessage] = None
|
147
154
|
) -> ResponseType:
|
148
155
|
"""Retry on transient gRPC failures with back-off until max_retries is reached.
|
149
156
|
If max_retries is None, retry forever."""
|
@@ -212,6 +219,9 @@ async def retry_transient_errors(
|
|
212
219
|
|
213
220
|
n_retries += 1
|
214
221
|
|
222
|
+
if retry_warning_message and n_retries % retry_warning_message.warning_interval == 0:
|
223
|
+
logger.warning(retry_warning_message.message)
|
224
|
+
|
215
225
|
await asyncio.sleep(delay)
|
216
226
|
delay = min(delay * delay_factor, max_delay)
|
217
227
|
|
modal/client.pyi
CHANGED
@@ -27,7 +27,7 @@ class _Client:
|
|
27
27
|
_snapshotted: bool
|
28
28
|
|
29
29
|
def __init__(
|
30
|
-
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.73.
|
30
|
+
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.73.97"
|
31
31
|
): ...
|
32
32
|
def is_closed(self) -> bool: ...
|
33
33
|
@property
|
@@ -85,7 +85,7 @@ class Client:
|
|
85
85
|
_snapshotted: bool
|
86
86
|
|
87
87
|
def __init__(
|
88
|
-
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.73.
|
88
|
+
self, server_url: str, client_type: int, credentials: typing.Optional[tuple[str, str]], version: str = "0.73.97"
|
89
89
|
): ...
|
90
90
|
def is_closed(self) -> bool: ...
|
91
91
|
@property
|
modal/image.py
CHANGED
@@ -56,13 +56,14 @@ if typing.TYPE_CHECKING:
|
|
56
56
|
import modal._functions
|
57
57
|
|
58
58
|
# This is used for both type checking and runtime validation
|
59
|
-
ImageBuilderVersion = Literal["2023.12", "2024.04", "2024.10"]
|
59
|
+
ImageBuilderVersion = Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]
|
60
60
|
|
61
61
|
# Note: we also define supported Python versions via logic at the top of the package __init__.py
|
62
62
|
# so that we fail fast / clearly in unsupported containers. Additionally, we enumerate the supported
|
63
63
|
# Python versions in mount.py where we specify the "standalone Python versions" we create mounts for.
|
64
64
|
# Consider consolidating these multiple sources of truth?
|
65
65
|
SUPPORTED_PYTHON_SERIES: dict[ImageBuilderVersion, list[str]] = {
|
66
|
+
"PREVIEW": ["3.9", "3.10", "3.11", "3.12", "3.13"],
|
66
67
|
"2024.10": ["3.9", "3.10", "3.11", "3.12", "3.13"],
|
67
68
|
"2024.04": ["3.9", "3.10", "3.11", "3.12"],
|
68
69
|
"2023.12": ["3.9", "3.10", "3.11", "3.12"],
|
@@ -248,9 +249,11 @@ def _get_image_builder_version(server_version: ImageBuilderVersion) -> ImageBuil
|
|
248
249
|
update_suggestion = "your image builder version using the Modal dashboard"
|
249
250
|
else:
|
250
251
|
update_suggestion = "your client library (pip install --upgrade modal)"
|
252
|
+
preview_versions: set[ImageBuilderVersion] = {"PREVIEW"}
|
253
|
+
suggested_versions = supported_versions - preview_versions
|
251
254
|
raise VersionError(
|
252
255
|
"This version of the modal client supports the following image builder versions:"
|
253
|
-
f" {
|
256
|
+
f" {suggested_versions!r}."
|
254
257
|
f"\n\nYou are using {version!r}{version_source}."
|
255
258
|
f" Please update {update_suggestion}."
|
256
259
|
)
|
modal/image.pyi
CHANGED
@@ -16,7 +16,7 @@ import pathlib
|
|
16
16
|
import typing
|
17
17
|
import typing_extensions
|
18
18
|
|
19
|
-
ImageBuilderVersion = typing.Literal["2023.12", "2024.04", "2024.10"]
|
19
|
+
ImageBuilderVersion = typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]
|
20
20
|
|
21
21
|
class _AutoDockerIgnoreSentinel:
|
22
22
|
def __repr__(self) -> str: ...
|
@@ -26,17 +26,21 @@ AUTO_DOCKERIGNORE: _AutoDockerIgnoreSentinel
|
|
26
26
|
|
27
27
|
def _validate_python_version(
|
28
28
|
python_version: typing.Optional[str],
|
29
|
-
builder_version: typing.Literal["2023.12", "2024.04", "2024.10"],
|
29
|
+
builder_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"],
|
30
30
|
allow_micro_granularity: bool = True,
|
31
31
|
) -> str: ...
|
32
32
|
def _dockerhub_python_version(
|
33
|
-
builder_version: typing.Literal["2023.12", "2024.04", "2024.10"
|
33
|
+
builder_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"],
|
34
|
+
python_version: typing.Optional[str] = None,
|
34
35
|
) -> str: ...
|
35
|
-
def _base_image_config(
|
36
|
+
def _base_image_config(
|
37
|
+
group: str, builder_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]
|
38
|
+
) -> typing.Any: ...
|
36
39
|
def _get_modal_requirements_path(
|
37
|
-
builder_version: typing.Literal["2023.12", "2024.04", "2024.10"
|
40
|
+
builder_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"],
|
41
|
+
python_version: typing.Optional[str] = None,
|
38
42
|
) -> str: ...
|
39
|
-
def _get_modal_requirements_command(version: typing.Literal["2023.12", "2024.04", "2024.10"]) -> str: ...
|
43
|
+
def _get_modal_requirements_command(version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]) -> str: ...
|
40
44
|
def _flatten_str_args(
|
41
45
|
function_name: str, arg_name: str, args: collections.abc.Sequence[typing.Union[str, list[str]]]
|
42
46
|
) -> list[str]: ...
|
@@ -50,8 +54,8 @@ def _make_pip_install_args(
|
|
50
54
|
extra_options: str = "",
|
51
55
|
) -> str: ...
|
52
56
|
def _get_image_builder_version(
|
53
|
-
server_version: typing.Literal["2023.12", "2024.04", "2024.10"],
|
54
|
-
) -> typing.Literal["2023.12", "2024.04", "2024.10"]: ...
|
57
|
+
server_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"],
|
58
|
+
) -> typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]: ...
|
55
59
|
def _create_context_mount(
|
56
60
|
docker_commands: collections.abc.Sequence[str],
|
57
61
|
ignore_fn: collections.abc.Callable[[pathlib.Path], bool],
|
@@ -100,7 +104,7 @@ class _Image(modal._object._Object):
|
|
100
104
|
*,
|
101
105
|
base_images: typing.Optional[dict[str, _Image]] = None,
|
102
106
|
dockerfile_function: typing.Optional[
|
103
|
-
collections.abc.Callable[[typing.Literal["2023.12", "2024.04", "2024.10"]], DockerfileSpec]
|
107
|
+
collections.abc.Callable[[typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]], DockerfileSpec]
|
104
108
|
] = None,
|
105
109
|
secrets: typing.Optional[collections.abc.Sequence[modal.secret._Secret]] = None,
|
106
110
|
gpu_config: typing.Optional[modal_proto.api_pb2.GPUConfig] = None,
|
@@ -246,7 +250,7 @@ class _Image(modal._object._Object):
|
|
246
250
|
@staticmethod
|
247
251
|
def _registry_setup_commands(
|
248
252
|
tag: str,
|
249
|
-
builder_version: typing.Literal["2023.12", "2024.04", "2024.10"],
|
253
|
+
builder_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"],
|
250
254
|
setup_commands: list[str],
|
251
255
|
add_python: typing.Optional[str] = None,
|
252
256
|
) -> list[str]: ...
|
@@ -354,7 +358,7 @@ class Image(modal.object.Object):
|
|
354
358
|
*,
|
355
359
|
base_images: typing.Optional[dict[str, Image]] = None,
|
356
360
|
dockerfile_function: typing.Optional[
|
357
|
-
collections.abc.Callable[[typing.Literal["2023.12", "2024.04", "2024.10"]], DockerfileSpec]
|
361
|
+
collections.abc.Callable[[typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"]], DockerfileSpec]
|
358
362
|
] = None,
|
359
363
|
secrets: typing.Optional[collections.abc.Sequence[modal.secret.Secret]] = None,
|
360
364
|
gpu_config: typing.Optional[modal_proto.api_pb2.GPUConfig] = None,
|
@@ -505,7 +509,7 @@ class Image(modal.object.Object):
|
|
505
509
|
@staticmethod
|
506
510
|
def _registry_setup_commands(
|
507
511
|
tag: str,
|
508
|
-
builder_version: typing.Literal["2023.12", "2024.04", "2024.10"],
|
512
|
+
builder_version: typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"],
|
509
513
|
setup_commands: list[str],
|
510
514
|
add_python: typing.Optional[str] = None,
|
511
515
|
) -> list[str]: ...
|
@@ -595,4 +599,4 @@ class Image(modal.object.Object):
|
|
595
599
|
|
596
600
|
_logs: ___logs_spec[typing_extensions.Self]
|
597
601
|
|
598
|
-
SUPPORTED_PYTHON_SERIES: dict[typing.Literal["2023.12", "2024.04", "2024.10"], list[str]]
|
602
|
+
SUPPORTED_PYTHON_SERIES: dict[typing.Literal["2023.12", "2024.04", "2024.10", "PREVIEW"], list[str]]
|
modal/parallel_map.py
CHANGED
@@ -5,7 +5,7 @@ import typing
|
|
5
5
|
from dataclasses import dataclass
|
6
6
|
from typing import Any, Callable, Optional
|
7
7
|
|
8
|
-
from grpclib import
|
8
|
+
from grpclib import Status
|
9
9
|
|
10
10
|
from modal._runtime.execution_context import current_input_id
|
11
11
|
from modal._utils.async_utils import (
|
@@ -27,13 +27,17 @@ from modal._utils.function_utils import (
|
|
27
27
|
_create_input,
|
28
28
|
_process_result,
|
29
29
|
)
|
30
|
-
from modal._utils.grpc_utils import retry_transient_errors
|
30
|
+
from modal._utils.grpc_utils import RETRYABLE_GRPC_STATUS_CODES, RetryWarningMessage, retry_transient_errors
|
31
31
|
from modal.config import logger
|
32
32
|
from modal_proto import api_pb2
|
33
33
|
|
34
34
|
if typing.TYPE_CHECKING:
|
35
35
|
import modal.client
|
36
36
|
|
37
|
+
# pump_inputs should retry if it receives any of the standard retryable codes plus RESOURCE_EXHAUSTED.
|
38
|
+
PUMP_INPUTS_RETRYABLE_GRPC_STATUS_CODES = RETRYABLE_GRPC_STATUS_CODES + [Status.RESOURCE_EXHAUSTED]
|
39
|
+
PUMP_INPUTS_MAX_RETRIES = 8
|
40
|
+
PUMP_INPUTS_MAX_RETRY_DELAY=15
|
37
41
|
|
38
42
|
class _SynchronizedQueue:
|
39
43
|
"""mdmd:hidden"""
|
@@ -136,25 +140,19 @@ async def _map_invocation(
|
|
136
140
|
logger.debug(
|
137
141
|
f"Pushing {len(items)} inputs to server. Num queued inputs awaiting push is {input_queue.qsize()}."
|
138
142
|
)
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
raise err
|
153
|
-
logger.warning(
|
154
|
-
f"Warning: map progress for function {function._function_name} is limited."
|
155
|
-
" Common bottlenecks include slow iteration over results, or function backlogs."
|
156
|
-
)
|
157
|
-
|
143
|
+
# with 8 retries we log the warning below about every 30 seconds which isn't too spammy.
|
144
|
+
retry_warning_message = RetryWarningMessage(
|
145
|
+
message=f"Warning: map progress for function {function._function_name} is limited."
|
146
|
+
" Common bottlenecks include slow iteration over results, or function backlogs.",
|
147
|
+
warning_interval=8,
|
148
|
+
errors_to_warn_for=[Status.RESOURCE_EXHAUSTED])
|
149
|
+
resp = await retry_transient_errors(
|
150
|
+
client.stub.FunctionPutInputs,
|
151
|
+
request,
|
152
|
+
max_retries=None,
|
153
|
+
max_delay=PUMP_INPUTS_MAX_RETRY_DELAY,
|
154
|
+
additional_status_codes=[Status.RESOURCE_EXHAUSTED],
|
155
|
+
retry_warning_message=retry_warning_message)
|
158
156
|
count_update()
|
159
157
|
for item in resp.inputs:
|
160
158
|
pending_outputs.setdefault(item.input_id, 0)
|
@@ -0,0 +1,16 @@
|
|
1
|
+
aiohappyeyeballs==2.4.3
|
2
|
+
aiohttp==3.10.8
|
3
|
+
aiosignal==1.3.1
|
4
|
+
async-timeout==4.0.3 ; python_version < "3.11"
|
5
|
+
attrs==24.2.0
|
6
|
+
certifi==2024.8.30
|
7
|
+
frozenlist==1.4.1
|
8
|
+
grpclib==0.4.7
|
9
|
+
h2==4.1.0
|
10
|
+
hpack==4.0.0
|
11
|
+
hyperframe==6.0.1
|
12
|
+
idna==3.10
|
13
|
+
multidict==6.1.0
|
14
|
+
protobuf>=3.20,<6
|
15
|
+
typing_extensions==4.12.2
|
16
|
+
yarl==1.13.1
|
@@ -1,22 +1,26 @@
|
|
1
1
|
{
|
2
2
|
"debian": {
|
3
|
+
"PREVIEW": "bookworm",
|
3
4
|
"2024.10": "bookworm",
|
4
5
|
"2024.04": "bookworm",
|
5
6
|
"2023.12": "bullseye"
|
6
7
|
},
|
7
8
|
"python": {
|
9
|
+
"PREVIEW": ["3.9.20", "3.10.15", "3.11.10", "3.12.6", "3.13.0"],
|
8
10
|
"2024.10": ["3.9.20", "3.10.15", "3.11.10", "3.12.6", "3.13.0"],
|
9
11
|
"2024.04": ["3.9.19", "3.10.14", "3.11.8", "3.12.2"],
|
10
12
|
"2023.12": ["3.9.15", "3.10.8", "3.11.0", "3.12.1"]
|
11
13
|
},
|
12
14
|
"micromamba": {
|
15
|
+
"PREVIEW": "1.5.10",
|
13
16
|
"2024.10": "1.5.10",
|
14
17
|
"2024.04": "1.5.8",
|
15
18
|
"2023.12": "1.3.1"
|
16
19
|
},
|
17
20
|
"package_tools": {
|
21
|
+
"PREVIEW": "pip wheel uv",
|
18
22
|
"2024.10": "pip wheel uv",
|
19
23
|
"2024.04": "pip wheel uv",
|
20
24
|
"2023.12": "pip"
|
21
25
|
}
|
22
|
-
}
|
26
|
+
}
|
@@ -22,7 +22,7 @@ modal/app.py,sha256=ojhuLZuNZAQ1OsbDH0k6G4pm1W7bOIvZfXbaKlvQ-Ao,45622
|
|
22
22
|
modal/app.pyi,sha256=tZFbcsu20SuvfB2puxCyuXLFNJ9bQulzag55rVpgZmc,26827
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
24
24
|
modal/client.py,sha256=j9D3hNis1lfhnz9lVFGgJgowbH3PaGUzNKgHPWYG778,15372
|
25
|
-
modal/client.pyi,sha256=
|
25
|
+
modal/client.pyi,sha256=r4hv31JcXvoGh2VhVQG2N3wqeQMyWnD5sq25f-eTZ0c,7593
|
26
26
|
modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
|
27
27
|
modal/cloud_bucket_mount.pyi,sha256=30T3K1a89l6wzmEJ_J9iWv9SknoGqaZDx59Xs-ZQcmk,1607
|
28
28
|
modal/cls.py,sha256=JhDbaZZHN52lqA_roY1BCbcN9BvbkUcdXiM2Kg9lIc0,31717
|
@@ -43,8 +43,8 @@ modal/file_pattern_matcher.py,sha256=trosX-Bp7dOubudN1bLLhRAoidWy1TcoaR4Pv8CedWw
|
|
43
43
|
modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
|
44
44
|
modal/functions.pyi,sha256=ujc6eIYyNmMn__4dpxEy85-vZmAniZv56D2A4uBgs6U,14377
|
45
45
|
modal/gpu.py,sha256=Kbhs_u49FaC2Zi0TjCdrpstpRtT5eZgecynmQi5IZVE,6752
|
46
|
-
modal/image.py,sha256=
|
47
|
-
modal/image.pyi,sha256=
|
46
|
+
modal/image.py,sha256=fWamISDhtUo-DRtIn9c8aevNE78HafOlG9Rn-otUZv8,90800
|
47
|
+
modal/image.pyi,sha256=Im_ap8E2oxDXA6uHQExKtH0KlB17gg6dfgAaJwW38ts,25163
|
48
48
|
modal/io_streams.py,sha256=QkQiizKRzd5bnbKQsap31LJgBYlAnj4-XkV_50xPYX0,15079
|
49
49
|
modal/io_streams.pyi,sha256=bJ7ZLmSmJ0nKoa6r4FJpbqvzdUVa0lEe0Fa-MMpMezU,5071
|
50
50
|
modal/mount.py,sha256=JII0zTS1fPCcCbZgO18okkOuTDqYCxY1DIVa6i1E9cI,32196
|
@@ -54,7 +54,7 @@ modal/network_file_system.pyi,sha256=4N3eqMbTSlqmS8VV_aJK-uvrgJC8xnf_YtW5FHfRfc8
|
|
54
54
|
modal/object.py,sha256=bTeskuY8JFrESjU4_UL_nTwYlBQdOLmVaOX3X6EMxsg,164
|
55
55
|
modal/object.pyi,sha256=kyJkRQcVv3ct7zSAxvvXcuhBVeH914v80uSlqeS7cA4,5632
|
56
56
|
modal/output.py,sha256=q4T9uHduunj4NwY-YSwkHGgjZlCXMuJbfQ5UFaAGRAc,1968
|
57
|
-
modal/parallel_map.py,sha256=
|
57
|
+
modal/parallel_map.py,sha256=Mctp_HdfyG1aMCw2ohcywLqGEKIbSPNtI3VyvXgSGJc,16321
|
58
58
|
modal/parallel_map.pyi,sha256=CWLbHNo6bJMOHSGfbLLcIDh-3XT3jtUOG_jzuFYLqcw,2573
|
59
59
|
modal/partial_function.py,sha256=uu8zvIV0Big0jiTlC4-VPL16dOScNB5jhfPeqxvvCrI,1117
|
60
60
|
modal/partial_function.pyi,sha256=-MAK61qJRi6Wjym-Measz5_9moJurYrJfdi7uSQZa5M,4936
|
@@ -100,7 +100,7 @@ modal/_utils/deprecation.py,sha256=EXP1beU4pmEqEzWMLw6E3kUfNfpmNA_VOp6i0EHi93g,4
|
|
100
100
|
modal/_utils/docker_utils.py,sha256=h1uETghR40mp_y3fSWuZAfbIASH1HMzuphJHghAL6DU,3722
|
101
101
|
modal/_utils/function_utils.py,sha256=Rmz8GJDie-RW_q2RcTwholEWixS2IQDPBsRBJ3f3ZvU,27302
|
102
102
|
modal/_utils/grpc_testing.py,sha256=H1zHqthv19eGPJz2HKXDyWXWGSqO4BRsxah3L5Xaa8A,8619
|
103
|
-
modal/_utils/grpc_utils.py,sha256=
|
103
|
+
modal/_utils/grpc_utils.py,sha256=rERGLUYRVv1tOLxOkHD-c8fc_gXUhHfHshkr7NQCH7Q,8356
|
104
104
|
modal/_utils/hash_utils.py,sha256=zg3J6OGxTFGSFri1qQ12giDz90lWk8bzaxCTUCRtiX4,3034
|
105
105
|
modal/_utils/http_utils.py,sha256=yeTFsXYr0rYMEhB7vBP7audG9Uc7OLhzKBANFDZWVt0,2451
|
106
106
|
modal/_utils/logger.py,sha256=ePzdudrtx9jJCjuO6-bcL_kwUJfi4AwloUmIiNtqkY0,1330
|
@@ -142,8 +142,9 @@ modal/requirements/2023.12.312.txt,sha256=zWWUVgVQ92GXBKNYYr2-5vn9rlnXcmkqlwlX5u
|
|
142
142
|
modal/requirements/2023.12.txt,sha256=OjsbXFkCSdkzzryZP82Q73osr5wxQ6EUzmGcK7twfkA,502
|
143
143
|
modal/requirements/2024.04.txt,sha256=6NnrbIE-mflwMyKyQ0tsWeY8XFE1kSW9oE8DVDoD8QU,544
|
144
144
|
modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
145
|
+
modal/requirements/PREVIEW.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
145
146
|
modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
|
146
|
-
modal/requirements/base-images.json,sha256=
|
147
|
+
modal/requirements/base-images.json,sha256=57vMSqzMbLBxw5tFWSaMiIkkVEps4JfX5PAtXGnkS4U,740
|
147
148
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
148
149
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
149
150
|
modal_docs/gen_reference_docs.py,sha256=cvTgltucqYLLIX84QxAwf51Z5Vc2n6cLxS8VcrxNCAo,6401
|
@@ -168,10 +169,10 @@ modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0y
|
|
168
169
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
169
170
|
modal_version/__init__.py,sha256=wiJQ53c-OMs0Xf1UeXOxQ7FwlV1VzIjnX6o-pRYZ_Pk,470
|
170
171
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
171
|
-
modal_version/_version_generated.py,sha256=
|
172
|
-
modal-0.73.
|
173
|
-
modal-0.73.
|
174
|
-
modal-0.73.
|
175
|
-
modal-0.73.
|
176
|
-
modal-0.73.
|
177
|
-
modal-0.73.
|
172
|
+
modal_version/_version_generated.py,sha256=GXWojmBCCsRL7QfI6BI5GdzQMmMkGm1XDHdo0VvPKlw,149
|
173
|
+
modal-0.73.97.dist-info/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
174
|
+
modal-0.73.97.dist-info/METADATA,sha256=pptO1KPZXxSNZWFtlYfC5qiB7oeOGtB2jNIzRA55-jU,2452
|
175
|
+
modal-0.73.97.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
176
|
+
modal-0.73.97.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
177
|
+
modal-0.73.97.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
178
|
+
modal-0.73.97.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|