modal 1.1.5.dev42__py3-none-any.whl → 1.1.5.dev44__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.
Potentially problematic release.
This version of modal might be problematic. Click here for more details.
- modal/client.pyi +2 -2
- modal/dict.py +15 -2
- modal/dict.pyi +22 -6
- modal/functions.pyi +6 -6
- {modal-1.1.5.dev42.dist-info → modal-1.1.5.dev44.dist-info}/METADATA +1 -1
- {modal-1.1.5.dev42.dist-info → modal-1.1.5.dev44.dist-info}/RECORD +14 -14
- modal_proto/api.proto +3 -0
- modal_proto/api_pb2.py +506 -506
- modal_proto/api_pb2.pyi +6 -1
- modal_version/__init__.py +1 -1
- {modal-1.1.5.dev42.dist-info → modal-1.1.5.dev44.dist-info}/WHEEL +0 -0
- {modal-1.1.5.dev42.dist-info → modal-1.1.5.dev44.dist-info}/entry_points.txt +0 -0
- {modal-1.1.5.dev42.dist-info → modal-1.1.5.dev44.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.5.dev42.dist-info → modal-1.1.5.dev44.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
|
@@ -6633,6 +6633,7 @@ class Image(google.protobuf.message.Message):
|
|
|
6633
6633
|
RUNTIME_DEBUG_FIELD_NUMBER: builtins.int
|
|
6634
6634
|
BUILD_FUNCTION_FIELD_NUMBER: builtins.int
|
|
6635
6635
|
BUILD_ARGS_FIELD_NUMBER: builtins.int
|
|
6636
|
+
VOLUME_MOUNTS_FIELD_NUMBER: builtins.int
|
|
6636
6637
|
@property
|
|
6637
6638
|
def base_images(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___BaseImage]: ...
|
|
6638
6639
|
@property
|
|
@@ -6663,6 +6664,9 @@ class Image(google.protobuf.message.Message):
|
|
|
6663
6664
|
@property
|
|
6664
6665
|
def build_args(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
|
6665
6666
|
"""Build arguments for the image (--build-arg) for ARG substitution in Dockerfile."""
|
|
6667
|
+
@property
|
|
6668
|
+
def volume_mounts(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___VolumeMount]:
|
|
6669
|
+
"""Volume mount for RUN commands"""
|
|
6666
6670
|
def __init__(
|
|
6667
6671
|
self,
|
|
6668
6672
|
*,
|
|
@@ -6680,9 +6684,10 @@ class Image(google.protobuf.message.Message):
|
|
|
6680
6684
|
runtime_debug: builtins.bool = ...,
|
|
6681
6685
|
build_function: global___BuildFunction | None = ...,
|
|
6682
6686
|
build_args: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
|
6687
|
+
volume_mounts: collections.abc.Iterable[global___VolumeMount] | None = ...,
|
|
6683
6688
|
) -> None: ...
|
|
6684
6689
|
def HasField(self, field_name: typing_extensions.Literal["build_function", b"build_function", "gpu_config", b"gpu_config", "image_registry_config", b"image_registry_config"]) -> builtins.bool: ...
|
|
6685
|
-
def ClearField(self, field_name: typing_extensions.Literal["base_images", b"base_images", "build_args", b"build_args", "build_function", b"build_function", "build_function_def", b"build_function_def", "build_function_globals", b"build_function_globals", "context_files", b"context_files", "context_mount_id", b"context_mount_id", "dockerfile_commands", b"dockerfile_commands", "gpu_config", b"gpu_config", "image_registry_config", b"image_registry_config", "runtime", b"runtime", "runtime_debug", b"runtime_debug", "secret_ids", b"secret_ids", "version", b"version"]) -> None: ...
|
|
6690
|
+
def ClearField(self, field_name: typing_extensions.Literal["base_images", b"base_images", "build_args", b"build_args", "build_function", b"build_function", "build_function_def", b"build_function_def", "build_function_globals", b"build_function_globals", "context_files", b"context_files", "context_mount_id", b"context_mount_id", "dockerfile_commands", b"dockerfile_commands", "gpu_config", b"gpu_config", "image_registry_config", b"image_registry_config", "runtime", b"runtime", "runtime_debug", b"runtime_debug", "secret_ids", b"secret_ids", "version", b"version", "volume_mounts", b"volume_mounts"]) -> None: ...
|
|
6686
6691
|
|
|
6687
6692
|
global___Image = Image
|
|
6688
6693
|
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|