modal 1.1.2.dev24__py3-none-any.whl → 1.1.2.dev26__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/cli/entry_point.py +9 -3
- modal/cli/launch.py +11 -2
- modal/client.pyi +2 -2
- {modal-1.1.2.dev24.dist-info → modal-1.1.2.dev26.dist-info}/METADATA +1 -1
- {modal-1.1.2.dev24.dist-info → modal-1.1.2.dev26.dist-info}/RECORD +10 -10
- modal_version/__init__.py +1 -1
- {modal-1.1.2.dev24.dist-info → modal-1.1.2.dev26.dist-info}/WHEEL +0 -0
- {modal-1.1.2.dev24.dist-info → modal-1.1.2.dev26.dist-info}/entry_points.txt +0 -0
- {modal-1.1.2.dev24.dist-info → modal-1.1.2.dev26.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.2.dev24.dist-info → modal-1.1.2.dev26.dist-info}/top_level.txt +0 -0
modal/cli/entry_point.py
CHANGED
@@ -33,7 +33,7 @@ def version_callback(value: bool):
|
|
33
33
|
|
34
34
|
|
35
35
|
entrypoint_cli_typer = typer.Typer(
|
36
|
-
no_args_is_help=
|
36
|
+
no_args_is_help=False,
|
37
37
|
add_completion=False,
|
38
38
|
rich_markup_mode="markdown",
|
39
39
|
help="""
|
@@ -45,12 +45,18 @@ entrypoint_cli_typer = typer.Typer(
|
|
45
45
|
)
|
46
46
|
|
47
47
|
|
48
|
-
@entrypoint_cli_typer.callback()
|
48
|
+
@entrypoint_cli_typer.callback(invoke_without_command=True)
|
49
49
|
def modal(
|
50
50
|
ctx: typer.Context,
|
51
51
|
version: bool = typer.Option(None, "--version", callback=version_callback),
|
52
52
|
):
|
53
|
-
|
53
|
+
# TODO: When https://github.com/fastapi/typer/pull/1240 gets shipped, then
|
54
|
+
# - set invoke_without_command=False in the callback decorator
|
55
|
+
# - set no_args_is_help=True in entrypoint_cli_typer
|
56
|
+
if ctx.invoked_subcommand is None:
|
57
|
+
console = make_console()
|
58
|
+
console.print(ctx.get_help())
|
59
|
+
raise typer.Exit()
|
54
60
|
|
55
61
|
|
56
62
|
def check_path():
|
modal/cli/launch.py
CHANGED
@@ -9,6 +9,7 @@ from pathlib import Path
|
|
9
9
|
from typing import Any, Optional
|
10
10
|
|
11
11
|
import rich.panel
|
12
|
+
from rich.markdown import Markdown
|
12
13
|
from typer import Typer
|
13
14
|
|
14
15
|
from .._output import make_console
|
@@ -20,10 +21,10 @@ from .import_refs import ImportRef, _get_runnable_app, import_file_or_module
|
|
20
21
|
launch_cli = Typer(
|
21
22
|
name="launch",
|
22
23
|
no_args_is_help=True,
|
24
|
+
rich_markup_mode="markdown",
|
23
25
|
help="""
|
24
26
|
Open a serverless app instance on Modal.
|
25
|
-
|
26
|
-
This command is in preview and may change in the future.
|
27
|
+
>⚠️ `modal launch` is **experimental** and may change in the future.
|
27
28
|
""",
|
28
29
|
)
|
29
30
|
|
@@ -31,6 +32,14 @@ launch_cli = Typer(
|
|
31
32
|
def _launch_program(
|
32
33
|
name: str, filename: str, detach: bool, args: dict[str, Any], *, description: Optional[str] = None
|
33
34
|
) -> None:
|
35
|
+
console = make_console()
|
36
|
+
console.print(
|
37
|
+
rich.panel.Panel(
|
38
|
+
Markdown(f"⚠️ `modal launch {name}` is **experimental** and may change in the future."),
|
39
|
+
border_style="yellow",
|
40
|
+
),
|
41
|
+
)
|
42
|
+
|
34
43
|
os.environ["MODAL_LAUNCH_ARGS"] = json.dumps(args)
|
35
44
|
|
36
45
|
program_path = str(Path(__file__).parent / "programs" / filename)
|
modal/client.pyi
CHANGED
@@ -33,7 +33,7 @@ class _Client:
|
|
33
33
|
server_url: str,
|
34
34
|
client_type: int,
|
35
35
|
credentials: typing.Optional[tuple[str, str]],
|
36
|
-
version: str = "1.1.2.
|
36
|
+
version: str = "1.1.2.dev26",
|
37
37
|
):
|
38
38
|
"""mdmd:hidden
|
39
39
|
The Modal client object is not intended to be instantiated directly by users.
|
@@ -164,7 +164,7 @@ class Client:
|
|
164
164
|
server_url: str,
|
165
165
|
client_type: int,
|
166
166
|
credentials: typing.Optional[tuple[str, str]],
|
167
|
-
version: str = "1.1.2.
|
167
|
+
version: str = "1.1.2.dev26",
|
168
168
|
):
|
169
169
|
"""mdmd:hidden
|
170
170
|
The Modal client object is not intended to be instantiated directly by users.
|
@@ -22,7 +22,7 @@ modal/app.py,sha256=GsClEQIs8i0K-n-DxkCO3flV2xq36sejFd4Dtjxfw0U,47914
|
|
22
22
|
modal/app.pyi,sha256=k0HnXfwV3mEze3PFHmSeqXBqizNqeJWF5oxrqo-P4Wg,43447
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
24
24
|
modal/client.py,sha256=kyAIVB3Ay-XKJizQ_1ufUFB__EagV0MLmHJpyYyJ7J0,18636
|
25
|
-
modal/client.pyi,sha256=
|
25
|
+
modal/client.pyi,sha256=d19OXapHTrzrWJE4h3zXewMXS-v1Sq7LTvsY42qVh9U,15831
|
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=1mBcExFrLDTZwkD3Dzu8F26_CL0CGktOV9pE60Y8g_E,40689
|
@@ -132,10 +132,10 @@ modal/cli/cluster.py,sha256=8pQurDUvLP_HdSeHH5ZB6WIoDh48FR8qP9vGOtSsFXI,3168
|
|
132
132
|
modal/cli/config.py,sha256=lhp2Pq4RbTDhaZJ-ZJvhrMqJj8c-WjuRX6gjE3TrvXc,1691
|
133
133
|
modal/cli/container.py,sha256=9Ti-TIZ6vjDSmn9mk9h6SRwyhkQjtwirBN18LjpLyvE,3719
|
134
134
|
modal/cli/dict.py,sha256=YAJtiv41YcCd5Fqam3hXCNTs4Y0yOgGR_i6RfQNSAFM,4572
|
135
|
-
modal/cli/entry_point.py,sha256=
|
135
|
+
modal/cli/entry_point.py,sha256=F06p54rPOs1xAUeYW76RaimFOgLW_I17RCvNwfZRqPc,4747
|
136
136
|
modal/cli/environment.py,sha256=Ayddkiq9jdj3XYDJ8ZmUqFpPPH8xajYlbexRkzGtUcg,4334
|
137
137
|
modal/cli/import_refs.py,sha256=X59Z5JwgliRO6C-cIFto2Pr7o3SwlZMKQPKA0aI4ZK4,13927
|
138
|
-
modal/cli/launch.py,sha256=
|
138
|
+
modal/cli/launch.py,sha256=vlr6RHvXkmpUpO8anAyOxyvZUYYVZCJzqGjJ_jUwicY,6472
|
139
139
|
modal/cli/network_file_system.py,sha256=I9IqTpVfk32uKYwGd8LTldkQx6UKYrQYNZ26q7Ab5Oo,8126
|
140
140
|
modal/cli/profile.py,sha256=g8X6tFFK9ccKyu2he9Yu19WLSLNdztzECgmIV__XJFs,3257
|
141
141
|
modal/cli/queues.py,sha256=5vKtKQ7YExdaxNPYZ0g5suU9sX0-F5h0zy0qBV-hN80,6140
|
@@ -153,7 +153,7 @@ modal/experimental/__init__.py,sha256=dPBPpxsmjZMLF3YjRrXoTvT01pl65wxi4UdFZsOem3
|
|
153
153
|
modal/experimental/flash.py,sha256=viXQumCIFp5VFsPFURdFTBTjP_QnsAi8nSWXAMmfjeQ,19744
|
154
154
|
modal/experimental/flash.pyi,sha256=A8_qJGtGoXEzKDdHbvhmCw7oqfneFEvJQK3ZdTOvUdU,10830
|
155
155
|
modal/experimental/ipython.py,sha256=TrCfmol9LGsRZMeDoeMPx3Hv3BFqQhYnmD_iH0pqdhk,2904
|
156
|
-
modal-1.1.2.
|
156
|
+
modal-1.1.2.dev26.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
157
157
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
158
158
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
159
159
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
@@ -176,10 +176,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
|
|
176
176
|
modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
177
177
|
modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
|
178
178
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
|
-
modal_version/__init__.py,sha256=
|
179
|
+
modal_version/__init__.py,sha256=LRfhlQ4IC8ceMGtkW-ftdn2TkRlVcEiYZG_R9092Noo,121
|
180
180
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
181
|
-
modal-1.1.2.
|
182
|
-
modal-1.1.2.
|
183
|
-
modal-1.1.2.
|
184
|
-
modal-1.1.2.
|
185
|
-
modal-1.1.2.
|
181
|
+
modal-1.1.2.dev26.dist-info/METADATA,sha256=oTAFrQ2YIEamL6kULSdA2YQwGbHCAZYL0xNnJpAtXFk,2460
|
182
|
+
modal-1.1.2.dev26.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
183
|
+
modal-1.1.2.dev26.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
184
|
+
modal-1.1.2.dev26.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
185
|
+
modal-1.1.2.dev26.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|