modal 1.0.3.dev1__py3-none-any.whl → 1.0.3.dev2__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/client.pyi +2 -2
- modal/image.py +38 -22
- {modal-1.0.3.dev1.dist-info → modal-1.0.3.dev2.dist-info}/METADATA +1 -1
- {modal-1.0.3.dev1.dist-info → modal-1.0.3.dev2.dist-info}/RECORD +9 -9
- modal_version/__init__.py +1 -1
- {modal-1.0.3.dev1.dist-info → modal-1.0.3.dev2.dist-info}/WHEEL +0 -0
- {modal-1.0.3.dev1.dist-info → modal-1.0.3.dev2.dist-info}/entry_points.txt +0 -0
- {modal-1.0.3.dev1.dist-info → modal-1.0.3.dev2.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.3.dev1.dist-info → modal-1.0.3.dev2.dist-info}/top_level.txt +0 -0
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.3.
|
34
|
+
version: str = "1.0.3.dev2",
|
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.3.
|
97
|
+
version: str = "1.0.3.dev2",
|
98
98
|
): ...
|
99
99
|
def is_closed(self) -> bool: ...
|
100
100
|
@property
|
modal/image.py
CHANGED
@@ -647,7 +647,13 @@ class _Image(_Object, type_prefix="im"):
|
|
647
647
|
metadata = resp.metadata
|
648
648
|
|
649
649
|
if result.status == api_pb2.GenericResult.GENERIC_STATUS_FAILURE:
|
650
|
-
|
650
|
+
if result.exception:
|
651
|
+
raise RemoteError(f"Image build for {image_id} failed with the exception:\n{result.exception}")
|
652
|
+
else:
|
653
|
+
msg = f"Image build for {image_id} failed. See build logs for more details."
|
654
|
+
if not _get_output_manager():
|
655
|
+
msg += " (Hint: Use `modal.enable_output()` to see logs from the process building the Image.)"
|
656
|
+
raise RemoteError(msg)
|
651
657
|
elif result.status == api_pb2.GenericResult.GENERIC_STATUS_TERMINATED:
|
652
658
|
raise RemoteError(f"Image build for {image_id} terminated due to external shut-down. Please try again.")
|
653
659
|
elif result.status == api_pb2.GenericResult.GENERIC_STATUS_TIMEOUT:
|
@@ -1522,12 +1528,14 @@ class _Image(_Object, type_prefix="im"):
|
|
1522
1528
|
modal_requirements_commands = []
|
1523
1529
|
if builder_version <= "2024.10":
|
1524
1530
|
# past 2024.10, client dependencies are mounted at runtime
|
1525
|
-
modal_requirements_commands.extend(
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
+
modal_requirements_commands.extend(
|
1532
|
+
[
|
1533
|
+
f"COPY {CONTAINER_REQUIREMENTS_PATH} {CONTAINER_REQUIREMENTS_PATH}",
|
1534
|
+
f"RUN python -m pip install --upgrade {_base_image_config('package_tools', builder_version)}",
|
1535
|
+
f"RUN {requirements_prefix}{_get_modal_requirements_command(builder_version)}",
|
1536
|
+
]
|
1537
|
+
)
|
1538
|
+
if "2024.10" >= builder_version > "2023.12":
|
1531
1539
|
modal_requirements_commands.append(f"RUN rm {CONTAINER_REQUIREMENTS_PATH}")
|
1532
1540
|
|
1533
1541
|
return [
|
@@ -1830,23 +1838,31 @@ class _Image(_Object, type_prefix="im"):
|
|
1830
1838
|
f"FROM python:{full_python_version}-slim-{debian_codename}",
|
1831
1839
|
]
|
1832
1840
|
if version <= "2024.10":
|
1833
|
-
commands.extend(
|
1834
|
-
|
1835
|
-
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1841
|
+
commands.extend(
|
1842
|
+
[
|
1843
|
+
f"COPY {CONTAINER_REQUIREMENTS_PATH} {CONTAINER_REQUIREMENTS_PATH}",
|
1844
|
+
]
|
1845
|
+
)
|
1846
|
+
commands.extend(
|
1847
|
+
[
|
1848
|
+
"RUN apt-get update",
|
1849
|
+
"RUN apt-get install -y gcc gfortran build-essential",
|
1850
|
+
f"RUN pip install --upgrade {_base_image_config('package_tools', version)}",
|
1851
|
+
]
|
1852
|
+
)
|
1841
1853
|
if version <= "2024.10":
|
1842
1854
|
# after 2024.10, modal requirements are mounted at runtime
|
1843
|
-
commands.extend(
|
1844
|
-
|
1845
|
-
|
1846
|
-
|
1847
|
-
|
1848
|
-
|
1849
|
-
|
1855
|
+
commands.extend(
|
1856
|
+
[
|
1857
|
+
f"RUN {_get_modal_requirements_command(version)}",
|
1858
|
+
]
|
1859
|
+
)
|
1860
|
+
commands.extend(
|
1861
|
+
[
|
1862
|
+
# Set debian front-end to non-interactive to avoid users getting stuck with input prompts.
|
1863
|
+
"RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections",
|
1864
|
+
]
|
1865
|
+
)
|
1850
1866
|
if "2024.10" >= version > "2023.12":
|
1851
1867
|
commands.append(f"RUN rm {CONTAINER_REQUIREMENTS_PATH}")
|
1852
1868
|
if version > "2024.10":
|
@@ -22,7 +22,7 @@ modal/app.py,sha256=NZ_rJ9TuMfiNiLg8-gOFgufD5flGtXWPHOZI0gdD3hE,46585
|
|
22
22
|
modal/app.pyi,sha256=4-b_vbe3lNAqQPcMRpQCEDsE1zsVkQRJGUql9B7HvbM,22659
|
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=
|
25
|
+
modal/client.pyi,sha256=GDuhXbz8cfOJ7FSjEb6XDSHFDKPViR1LQGHjY4Atktw,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
28
|
modal/cls.py,sha256=dBbeARwOWftlKd1cwtM0cHFtQWSWkwVXwVmOV4w0SyI,37907
|
@@ -41,7 +41,7 @@ modal/file_pattern_matcher.py,sha256=wov-otB5M1oTdrYDtR2_VgacYin2srdtAP4McA1Cqzw
|
|
41
41
|
modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
|
42
42
|
modal/functions.pyi,sha256=iqdp5ixtOOlm8bF-QYbD_G8VKqSRt_AVLT7AWjpn6pQ,16236
|
43
43
|
modal/gpu.py,sha256=Kbhs_u49FaC2Zi0TjCdrpstpRtT5eZgecynmQi5IZVE,6752
|
44
|
-
modal/image.py,sha256
|
44
|
+
modal/image.py,sha256=yrI9DCw7GAck3d788GCHJom-_yU55zNu7reNapBhlgE,93284
|
45
45
|
modal/image.pyi,sha256=2xjB6XOZDtm_chDdd90UoIj8pnDt5hCg6bOmu5fNaA4,25625
|
46
46
|
modal/io_streams.py,sha256=YDZVQSDv05DeXg5TwcucC9Rj5hQBx2GXdluan9rIUpw,15467
|
47
47
|
modal/io_streams.pyi,sha256=1UK6kWLREASQfq-wL9wSp5iqjLU0egRZPDn4LXs1PZY,5136
|
@@ -147,7 +147,7 @@ modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddR
|
|
147
147
|
modal/requirements/PREVIEW.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
148
148
|
modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
|
149
149
|
modal/requirements/base-images.json,sha256=57vMSqzMbLBxw5tFWSaMiIkkVEps4JfX5PAtXGnkS4U,740
|
150
|
-
modal-1.0.3.
|
150
|
+
modal-1.0.3.dev2.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
|
173
|
+
modal_version/__init__.py,sha256=4i8S9iaNFT-F-PobzZrdGgtvl7JaionX6OaMyf2J6RE,120
|
174
174
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
175
|
-
modal-1.0.3.
|
176
|
-
modal-1.0.3.
|
177
|
-
modal-1.0.3.
|
178
|
-
modal-1.0.3.
|
179
|
-
modal-1.0.3.
|
175
|
+
modal-1.0.3.dev2.dist-info/METADATA,sha256=tHJ5wylwSO0Po8_YKBwI3dAD-EXjHg5iJW10bh19U_0,2454
|
176
|
+
modal-1.0.3.dev2.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
177
|
+
modal-1.0.3.dev2.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
178
|
+
modal-1.0.3.dev2.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
179
|
+
modal-1.0.3.dev2.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|