modal 0.74.61__py3-none-any.whl → 0.75.0__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 +12 -2
- modal/client.pyi +2 -2
- modal/file_pattern_matcher.py +2 -0
- modal/functions.pyi +7 -0
- modal/image.py +3 -2
- modal/mount.py +4 -4
- {modal-0.74.61.dist-info → modal-0.75.0.dist-info}/METADATA +1 -1
- {modal-0.74.61.dist-info → modal-0.75.0.dist-info}/RECORD +17 -17
- modal_proto/api.proto +2 -0
- modal_proto/api_pb2.py +614 -614
- modal_proto/api_pb2.pyi +9 -1
- modal_version/__init__.py +1 -1
- modal_version/_version_generated.py +1 -1
- {modal-0.74.61.dist-info → modal-0.75.0.dist-info}/WHEEL +0 -0
- {modal-0.74.61.dist-info → modal-0.75.0.dist-info}/entry_points.txt +0 -0
- {modal-0.74.61.dist-info → modal-0.75.0.dist-info}/licenses/LICENSE +0 -0
- {modal-0.74.61.dist-info → modal-0.75.0.dist-info}/top_level.txt +0 -0
modal_proto/api_pb2.pyi
CHANGED
@@ -3627,25 +3627,33 @@ class DictUpdateRequest(google.protobuf.message.Message):
|
|
3627
3627
|
|
3628
3628
|
DICT_ID_FIELD_NUMBER: builtins.int
|
3629
3629
|
UPDATES_FIELD_NUMBER: builtins.int
|
3630
|
+
IF_NOT_EXISTS_FIELD_NUMBER: builtins.int
|
3630
3631
|
dict_id: builtins.str
|
3631
3632
|
@property
|
3632
3633
|
def updates(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DictEntry]: ...
|
3634
|
+
if_not_exists: builtins.bool
|
3633
3635
|
def __init__(
|
3634
3636
|
self,
|
3635
3637
|
*,
|
3636
3638
|
dict_id: builtins.str = ...,
|
3637
3639
|
updates: collections.abc.Iterable[global___DictEntry] | None = ...,
|
3640
|
+
if_not_exists: builtins.bool = ...,
|
3638
3641
|
) -> None: ...
|
3639
|
-
def ClearField(self, field_name: typing_extensions.Literal["dict_id", b"dict_id", "updates", b"updates"]) -> None: ...
|
3642
|
+
def ClearField(self, field_name: typing_extensions.Literal["dict_id", b"dict_id", "if_not_exists", b"if_not_exists", "updates", b"updates"]) -> None: ...
|
3640
3643
|
|
3641
3644
|
global___DictUpdateRequest = DictUpdateRequest
|
3642
3645
|
|
3643
3646
|
class DictUpdateResponse(google.protobuf.message.Message):
|
3644
3647
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
3645
3648
|
|
3649
|
+
CREATED_FIELD_NUMBER: builtins.int
|
3650
|
+
created: builtins.bool
|
3646
3651
|
def __init__(
|
3647
3652
|
self,
|
3653
|
+
*,
|
3654
|
+
created: builtins.bool = ...,
|
3648
3655
|
) -> None: ...
|
3656
|
+
def ClearField(self, field_name: typing_extensions.Literal["created", b"created"]) -> None: ...
|
3649
3657
|
|
3650
3658
|
global___DictUpdateResponse = DictUpdateResponse
|
3651
3659
|
|
modal_version/__init__.py
CHANGED
@@ -7,7 +7,7 @@ from ._version_generated import build_number
|
|
7
7
|
major_number = 0
|
8
8
|
|
9
9
|
# Bump this manually on breaking changes, then reset the number in _version_generated.py
|
10
|
-
minor_number =
|
10
|
+
minor_number = 75
|
11
11
|
|
12
12
|
# Right now, automatically increment the patch number in CI
|
13
13
|
__version__ = f"{major_number}.{minor_number}.{max(build_number, 0)}"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|