modal 1.1.5.dev64__py3-none-any.whl → 1.1.5.dev66__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/_functions.py +3 -36
- modal/client.pyi +2 -2
- modal/cls.py +0 -41
- modal/cls.pyi +0 -78
- modal/dict.py +0 -41
- modal/dict.pyi +0 -77
- modal/environments.py +0 -20
- modal/environments.pyi +0 -14
- modal/functions.pyi +6 -55
- modal/image.py +3 -31
- modal/image.pyi +0 -5
- modal/mount.py +0 -117
- modal/mount.pyi +0 -170
- modal/network_file_system.py +1 -40
- modal/network_file_system.pyi +0 -74
- modal/queue.py +0 -39
- modal/queue.pyi +0 -74
- modal/secret.py +0 -29
- modal/secret.pyi +0 -38
- modal/volume.py +0 -41
- modal/volume.pyi +0 -77
- {modal-1.1.5.dev64.dist-info → modal-1.1.5.dev66.dist-info}/METADATA +1 -1
- {modal-1.1.5.dev64.dist-info → modal-1.1.5.dev66.dist-info}/RECORD +28 -28
- modal_version/__init__.py +1 -1
- {modal-1.1.5.dev64.dist-info → modal-1.1.5.dev66.dist-info}/WHEEL +0 -0
- {modal-1.1.5.dev64.dist-info → modal-1.1.5.dev66.dist-info}/entry_points.txt +0 -0
- {modal-1.1.5.dev64.dist-info → modal-1.1.5.dev66.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.5.dev64.dist-info → modal-1.1.5.dev66.dist-info}/top_level.txt +0 -0
modal/secret.pyi
CHANGED
|
@@ -441,17 +441,6 @@ class _Secret(modal._object._Object):
|
|
|
441
441
|
"""
|
|
442
442
|
...
|
|
443
443
|
|
|
444
|
-
@staticmethod
|
|
445
|
-
async def lookup(
|
|
446
|
-
name: str,
|
|
447
|
-
namespace=None,
|
|
448
|
-
client: typing.Optional[modal.client._Client] = None,
|
|
449
|
-
environment_name: typing.Optional[str] = None,
|
|
450
|
-
required_keys: list[str] = [],
|
|
451
|
-
) -> _Secret:
|
|
452
|
-
"""mdmd:hidden"""
|
|
453
|
-
...
|
|
454
|
-
|
|
455
444
|
@staticmethod
|
|
456
445
|
async def create_deployed(
|
|
457
446
|
deployment_name: str,
|
|
@@ -572,33 +561,6 @@ class Secret(modal.object.Object):
|
|
|
572
561
|
"""
|
|
573
562
|
...
|
|
574
563
|
|
|
575
|
-
class __lookup_spec(typing_extensions.Protocol):
|
|
576
|
-
def __call__(
|
|
577
|
-
self,
|
|
578
|
-
/,
|
|
579
|
-
name: str,
|
|
580
|
-
namespace=None,
|
|
581
|
-
client: typing.Optional[modal.client.Client] = None,
|
|
582
|
-
environment_name: typing.Optional[str] = None,
|
|
583
|
-
required_keys: list[str] = [],
|
|
584
|
-
) -> Secret:
|
|
585
|
-
"""mdmd:hidden"""
|
|
586
|
-
...
|
|
587
|
-
|
|
588
|
-
async def aio(
|
|
589
|
-
self,
|
|
590
|
-
/,
|
|
591
|
-
name: str,
|
|
592
|
-
namespace=None,
|
|
593
|
-
client: typing.Optional[modal.client.Client] = None,
|
|
594
|
-
environment_name: typing.Optional[str] = None,
|
|
595
|
-
required_keys: list[str] = [],
|
|
596
|
-
) -> Secret:
|
|
597
|
-
"""mdmd:hidden"""
|
|
598
|
-
...
|
|
599
|
-
|
|
600
|
-
lookup: __lookup_spec
|
|
601
|
-
|
|
602
564
|
class __create_deployed_spec(typing_extensions.Protocol):
|
|
603
565
|
def __call__(
|
|
604
566
|
self,
|
modal/volume.py
CHANGED
|
@@ -484,47 +484,6 @@ class _Volume(_Object, type_prefix="vo"):
|
|
|
484
484
|
rep="modal.Volume.ephemeral()",
|
|
485
485
|
)
|
|
486
486
|
|
|
487
|
-
@staticmethod
|
|
488
|
-
async def lookup(
|
|
489
|
-
name: str,
|
|
490
|
-
namespace=None, # mdmd:line-hidden
|
|
491
|
-
client: Optional[_Client] = None,
|
|
492
|
-
environment_name: Optional[str] = None,
|
|
493
|
-
create_if_missing: bool = False,
|
|
494
|
-
version: "typing.Optional[modal_proto.api_pb2.VolumeFsVersion.ValueType]" = None,
|
|
495
|
-
) -> "_Volume":
|
|
496
|
-
"""mdmd:hidden
|
|
497
|
-
Lookup a named Volume.
|
|
498
|
-
|
|
499
|
-
DEPRECATED: This method is deprecated in favor of `modal.Volume.from_name`.
|
|
500
|
-
|
|
501
|
-
In contrast to `modal.Volume.from_name`, this is an eager method
|
|
502
|
-
that will hydrate the local object with metadata from Modal servers.
|
|
503
|
-
|
|
504
|
-
```python notest
|
|
505
|
-
vol = modal.Volume.from_name("my-volume")
|
|
506
|
-
print(vol.listdir("/"))
|
|
507
|
-
```
|
|
508
|
-
"""
|
|
509
|
-
deprecation_warning(
|
|
510
|
-
(2025, 1, 27),
|
|
511
|
-
"`modal.Volume.lookup` is deprecated and will be removed in a future release."
|
|
512
|
-
" It can be replaced with `modal.Volume.from_name`."
|
|
513
|
-
"\n\nSee https://modal.com/docs/guide/modal-1-0-migration for more information.",
|
|
514
|
-
)
|
|
515
|
-
warn_if_passing_namespace(namespace, "modal.Volume.lookup")
|
|
516
|
-
obj = _Volume.from_name(
|
|
517
|
-
name,
|
|
518
|
-
environment_name=environment_name,
|
|
519
|
-
create_if_missing=create_if_missing,
|
|
520
|
-
version=version,
|
|
521
|
-
)
|
|
522
|
-
if client is None:
|
|
523
|
-
client = await _Client.from_env()
|
|
524
|
-
resolver = Resolver(client=client)
|
|
525
|
-
await resolver.load(obj)
|
|
526
|
-
return obj
|
|
527
|
-
|
|
528
487
|
@staticmethod
|
|
529
488
|
async def create_deployed(
|
|
530
489
|
deployment_name: str,
|
modal/volume.pyi
CHANGED
|
@@ -533,30 +533,6 @@ class _Volume(modal._object._Object):
|
|
|
533
533
|
"""
|
|
534
534
|
...
|
|
535
535
|
|
|
536
|
-
@staticmethod
|
|
537
|
-
async def lookup(
|
|
538
|
-
name: str,
|
|
539
|
-
namespace=None,
|
|
540
|
-
client: typing.Optional[modal.client._Client] = None,
|
|
541
|
-
environment_name: typing.Optional[str] = None,
|
|
542
|
-
create_if_missing: bool = False,
|
|
543
|
-
version: typing.Optional[int] = None,
|
|
544
|
-
) -> _Volume:
|
|
545
|
-
"""mdmd:hidden
|
|
546
|
-
Lookup a named Volume.
|
|
547
|
-
|
|
548
|
-
DEPRECATED: This method is deprecated in favor of `modal.Volume.from_name`.
|
|
549
|
-
|
|
550
|
-
In contrast to `modal.Volume.from_name`, this is an eager method
|
|
551
|
-
that will hydrate the local object with metadata from Modal servers.
|
|
552
|
-
|
|
553
|
-
```python notest
|
|
554
|
-
vol = modal.Volume.from_name("my-volume")
|
|
555
|
-
print(vol.listdir("/"))
|
|
556
|
-
```
|
|
557
|
-
"""
|
|
558
|
-
...
|
|
559
|
-
|
|
560
536
|
@staticmethod
|
|
561
537
|
async def create_deployed(
|
|
562
538
|
deployment_name: str,
|
|
@@ -866,59 +842,6 @@ class Volume(modal.object.Object):
|
|
|
866
842
|
"""
|
|
867
843
|
...
|
|
868
844
|
|
|
869
|
-
class __lookup_spec(typing_extensions.Protocol):
|
|
870
|
-
def __call__(
|
|
871
|
-
self,
|
|
872
|
-
/,
|
|
873
|
-
name: str,
|
|
874
|
-
namespace=None,
|
|
875
|
-
client: typing.Optional[modal.client.Client] = None,
|
|
876
|
-
environment_name: typing.Optional[str] = None,
|
|
877
|
-
create_if_missing: bool = False,
|
|
878
|
-
version: typing.Optional[int] = None,
|
|
879
|
-
) -> Volume:
|
|
880
|
-
"""mdmd:hidden
|
|
881
|
-
Lookup a named Volume.
|
|
882
|
-
|
|
883
|
-
DEPRECATED: This method is deprecated in favor of `modal.Volume.from_name`.
|
|
884
|
-
|
|
885
|
-
In contrast to `modal.Volume.from_name`, this is an eager method
|
|
886
|
-
that will hydrate the local object with metadata from Modal servers.
|
|
887
|
-
|
|
888
|
-
```python notest
|
|
889
|
-
vol = modal.Volume.from_name("my-volume")
|
|
890
|
-
print(vol.listdir("/"))
|
|
891
|
-
```
|
|
892
|
-
"""
|
|
893
|
-
...
|
|
894
|
-
|
|
895
|
-
async def aio(
|
|
896
|
-
self,
|
|
897
|
-
/,
|
|
898
|
-
name: str,
|
|
899
|
-
namespace=None,
|
|
900
|
-
client: typing.Optional[modal.client.Client] = None,
|
|
901
|
-
environment_name: typing.Optional[str] = None,
|
|
902
|
-
create_if_missing: bool = False,
|
|
903
|
-
version: typing.Optional[int] = None,
|
|
904
|
-
) -> Volume:
|
|
905
|
-
"""mdmd:hidden
|
|
906
|
-
Lookup a named Volume.
|
|
907
|
-
|
|
908
|
-
DEPRECATED: This method is deprecated in favor of `modal.Volume.from_name`.
|
|
909
|
-
|
|
910
|
-
In contrast to `modal.Volume.from_name`, this is an eager method
|
|
911
|
-
that will hydrate the local object with metadata from Modal servers.
|
|
912
|
-
|
|
913
|
-
```python notest
|
|
914
|
-
vol = modal.Volume.from_name("my-volume")
|
|
915
|
-
print(vol.listdir("/"))
|
|
916
|
-
```
|
|
917
|
-
"""
|
|
918
|
-
...
|
|
919
|
-
|
|
920
|
-
lookup: __lookup_spec
|
|
921
|
-
|
|
922
845
|
class __create_deployed_spec(typing_extensions.Protocol):
|
|
923
846
|
def __call__(
|
|
924
847
|
self,
|
|
@@ -3,7 +3,7 @@ modal/__main__.py,sha256=45H-GtwzaDfN-1nP4_HYvzN3s7AG_HXR4-ynrsjO_OI,2803
|
|
|
3
3
|
modal/_clustered_functions.py,sha256=Sy4Sf_17EO8OL-FUe8LYcm4hrqLyQFCssNhr3p0SroU,3013
|
|
4
4
|
modal/_clustered_functions.pyi,sha256=JmYwAGOLEnD5AF-gYF9O5tu-SgGjeoJz-X1j48b1Ijg,1157
|
|
5
5
|
modal/_container_entrypoint.py,sha256=B_fIKKjWposiNsYOePifX7S6cR9hf5LRPhDfVums5O8,27867
|
|
6
|
-
modal/_functions.py,sha256=
|
|
6
|
+
modal/_functions.py,sha256=a0pCvDiTt2rsIBbHay68RbTpuiRDwxw11kv5nBcnwUo,90522
|
|
7
7
|
modal/_ipython.py,sha256=TW1fkVOmZL3YYqdS2YlM1hqpf654Yf8ZyybHdBnlhSw,301
|
|
8
8
|
modal/_location.py,sha256=joiX-0ZeutEUDTrrqLF1GHXCdVLF-rHzstocbMcd_-k,366
|
|
9
9
|
modal/_object.py,sha256=gwsLdXb-Ecd8nH8LVCo8oVZPzzdyo9BrN1DjgQmsSuM,11967
|
|
@@ -22,33 +22,33 @@ modal/app.py,sha256=RRUz2NjAWIQLHtU2IEslOlnIOCxPiWts3IP3rTFArkY,49635
|
|
|
22
22
|
modal/app.pyi,sha256=CDp_rlX3hBuFdv9VRsKvNKCgu_hS2IO2uNU5qhzmXps,44719
|
|
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=wPuVebsSsWHAKpR9d2uvXzLgSMdqGfFIQjSv0tOdmCk,15831
|
|
26
26
|
modal/cloud_bucket_mount.py,sha256=I2GRXYhOWLIz2kJZjXu75jAm9EJkBNcutGc6jR2ReUw,5928
|
|
27
27
|
modal/cloud_bucket_mount.pyi,sha256=VuUOipMIHqFXMkD-3g2bsoqpSxV5qswlFHDOqPQzYAo,7405
|
|
28
|
-
modal/cls.py,sha256=
|
|
29
|
-
modal/cls.pyi,sha256=
|
|
28
|
+
modal/cls.py,sha256=IZG9gLlssbhTgIn6iSEmBSKkbbkst3skASMae-59FII,40239
|
|
29
|
+
modal/cls.pyi,sha256=jJsDPFoqzM4ht-V-e-xEJKJ5TINLF0fYtoBm_UeAW5Y,27281
|
|
30
30
|
modal/config.py,sha256=OLxJU1K7ijiV_65g700QcHX8hIPH-dgzuybyQAOf6cg,12333
|
|
31
31
|
modal/container_process.py,sha256=Mutkl7sg_WR5zP4oJiWSC-3UdYRqp0zdKi1shZbi-bk,6996
|
|
32
32
|
modal/container_process.pyi,sha256=9m-st3hCUlNN1GOTctfPPvIvoLtEl7FbuGWwif5-7YU,6037
|
|
33
|
-
modal/dict.py,sha256=
|
|
34
|
-
modal/dict.pyi,sha256=
|
|
35
|
-
modal/environments.py,sha256=
|
|
36
|
-
modal/environments.pyi,sha256=
|
|
33
|
+
modal/dict.py,sha256=XkaxuojMVtcc4bZvCjJcd6DedU5xxfF8H4w-mDzFPCo,21580
|
|
34
|
+
modal/dict.pyi,sha256=deOiwuwZtwXqedC3h19SwoQIWc4mUnDTBM5XkONt48Y,31712
|
|
35
|
+
modal/environments.py,sha256=xXYDfgzd20CuFdww_zQ53OB0qANQG-j_ls_fT7mGdoQ,6028
|
|
36
|
+
modal/environments.pyi,sha256=YwI2zClQ5vZHqqKaBJYX2eK4QHRlUuqRlF0lM1JrMOs,3673
|
|
37
37
|
modal/exception.py,sha256=o0V93PK8Hcg2YQ2aeOB1Y-qWBw4Gz5ATfyokR8GapuQ,5634
|
|
38
38
|
modal/file_io.py,sha256=OSKr77TujcXGJW1iikzYiHckLSmv07QBgBHcxxYEkoI,21456
|
|
39
39
|
modal/file_io.pyi,sha256=xtO6Glf_BFwDE7QiQQo24QqcMf_Vv-iz7WojcGVlLBU,15932
|
|
40
40
|
modal/file_pattern_matcher.py,sha256=A_Kdkej6q7YQyhM_2-BvpFmPqJ0oHb54B6yf9VqvPVE,8116
|
|
41
41
|
modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
|
|
42
|
-
modal/functions.pyi,sha256=
|
|
42
|
+
modal/functions.pyi,sha256=CMwApS396tdElFrjnV6RuL2DTCz4C3jYzYoq1y_LPUQ,37988
|
|
43
43
|
modal/gpu.py,sha256=Fe5ORvVPDIstSq1xjmM6OoNgLYFWvogP9r5BgmD3hYg,6769
|
|
44
|
-
modal/image.py,sha256=
|
|
45
|
-
modal/image.pyi,sha256=
|
|
44
|
+
modal/image.py,sha256=MN5-pEmj-i66_XUxHo_z_VIu6KD186dF70417KKiRt0,106712
|
|
45
|
+
modal/image.pyi,sha256=Ba7rdjbktmibwG9yLf3SMRWycw34V8SScG-Krakx1Yk,76506
|
|
46
46
|
modal/io_streams.py,sha256=hZOVc5beOAm8S_VQQmmKUbk_BJ9OltN83RY0yMPqUDo,16545
|
|
47
47
|
modal/io_streams.pyi,sha256=aOun_jUFKHSJyUY6-7gKvNoxzcULsa8_hxdtEO7v-gk,13980
|
|
48
|
-
modal/mount.py,sha256=
|
|
49
|
-
modal/mount.pyi,sha256=
|
|
50
|
-
modal/network_file_system.py,sha256=
|
|
51
|
-
modal/network_file_system.pyi,sha256=
|
|
48
|
+
modal/mount.py,sha256=9AQEP7aF3kD1d5n_QBQsDtRB1OV74qaYdMbLyaxfOdw,33213
|
|
49
|
+
modal/mount.pyi,sha256=MD_zV2M7eCWxbOpQRjU60aHevN-bmbiywaCX82QoFlw,15380
|
|
50
|
+
modal/network_file_system.py,sha256=ZdEIRgdcR-p_ILyw_AecEtPOhhrSWJeADYCtFnhtaHM,13509
|
|
51
|
+
modal/network_file_system.pyi,sha256=zF4PIaiuIaC4OLQ0YCj1e2O3uepW9-2Jo1T3blc7RVg,15365
|
|
52
52
|
modal/object.py,sha256=bTeskuY8JFrESjU4_UL_nTwYlBQdOLmVaOX3X6EMxsg,164
|
|
53
53
|
modal/object.pyi,sha256=qlyVVMezW3XgJe_iqhtzWRSki3Nuk-KrpXc1g-r8ujA,6944
|
|
54
54
|
modal/output.py,sha256=q4T9uHduunj4NwY-YSwkHGgjZlCXMuJbfQ5UFaAGRAc,1968
|
|
@@ -59,8 +59,8 @@ modal/partial_function.pyi,sha256=lqqOzZ9-QvHTDWKQ_oAYYOvsXgTOBKhO9u-RI98JbUk,13
|
|
|
59
59
|
modal/proxy.py,sha256=CQydu_NPDgApN2GLdd7rrcg8PM-pXyFdVYcTaGMBRCQ,1491
|
|
60
60
|
modal/proxy.pyi,sha256=yWGWwADCRGrC2w81B7671UTH4Uv3HMZKy5vVqlJUZoA,1417
|
|
61
61
|
modal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
modal/queue.py,sha256=
|
|
63
|
-
modal/queue.pyi,sha256=
|
|
62
|
+
modal/queue.py,sha256=aaH3SNWeh_HjEyVUtFiN345v0GJFoucJ6aNDrDggWZQ,25775
|
|
63
|
+
modal/queue.pyi,sha256=mFu7GFFVFNLU9VZshnfekEsb-ABgpjdhJ07KXHvdv3A,37256
|
|
64
64
|
modal/retries.py,sha256=IvNLDM0f_GLUDD5VgEDoN09C88yoxSrCquinAuxT1Sc,5205
|
|
65
65
|
modal/runner.py,sha256=A_zaRmJ4dNpQJWNlwUI_GJIy2GMuaQBRjMAabX0Fmvg,24599
|
|
66
66
|
modal/runner.pyi,sha256=vUDRKqLz09QvZsaCH1gTG_iujewj-eGxxb6-VmN6eAw,8531
|
|
@@ -69,8 +69,8 @@ modal/sandbox.py,sha256=qi_zWDOntB6RSAejCrAAKcW3vZZOkdrBnuic4dBo7NI,45953
|
|
|
69
69
|
modal/sandbox.pyi,sha256=Jkmi83cU0YfZTmGbyCiChHPcjpTjsagw4Q50_cowfNQ,50689
|
|
70
70
|
modal/schedule.py,sha256=ng0g0AqNY5GQI9KhkXZQ5Wam5G42glbkqVQsNpBtbDE,3078
|
|
71
71
|
modal/scheduler_placement.py,sha256=BAREdOY5HzHpzSBqt6jDVR6YC_jYfHMVqOzkyqQfngU,1235
|
|
72
|
-
modal/secret.py,sha256=
|
|
73
|
-
modal/secret.pyi,sha256=
|
|
72
|
+
modal/secret.py,sha256=ThwP-PkwUZwiYkygqumh15n8P_77-N5ZyRWLc6I3r28,18323
|
|
73
|
+
modal/secret.pyi,sha256=2dj8FPBlAJodp_yvwwzV0_Q1VevMNpKxri0rDvlIn4U,20493
|
|
74
74
|
modal/serving.py,sha256=3I3WBeVbzZY258u9PXBCW_dZBgypq3OhwBuTVvlgubE,4423
|
|
75
75
|
modal/serving.pyi,sha256=YfixTaWikyYpwhnNxCHMZnDDQiPmV1xJ87QF91U_WGU,1924
|
|
76
76
|
modal/snapshot.py,sha256=E3oxYQkYVRB_LeFBfmUV1Y6vHz8-azXJfC4x7A1QKnI,1455
|
|
@@ -78,8 +78,8 @@ modal/snapshot.pyi,sha256=0q83hlmWxAhDu8xwZyL5VmYh0i8Tigf7S60or2k30L8,1682
|
|
|
78
78
|
modal/stream_type.py,sha256=A6320qoAAWhEfwOCZfGtymQTu5AfLfJXXgARqooTPvY,417
|
|
79
79
|
modal/token_flow.py,sha256=GWpar0gANs71vm9Bd_Cj87UG1K3ljTURbkEjG3JLsrY,7616
|
|
80
80
|
modal/token_flow.pyi,sha256=eirYjyqbRiT3GCKMIPHJPpkvBTu8WxDKqSHehWaJI_4,2533
|
|
81
|
-
modal/volume.py,sha256=
|
|
82
|
-
modal/volume.pyi,sha256=
|
|
81
|
+
modal/volume.py,sha256=LNfy3GZVuPZdG9LaBjHiLtpw2OdKpuOfOvw6bK1yKT8,51798
|
|
82
|
+
modal/volume.pyi,sha256=Fgq-QDo4iwWO-CFAgG879AbbyBuSvwOaIRbGclcTQik,51972
|
|
83
83
|
modal/_runtime/__init__.py,sha256=MIEP8jhXUeGq_eCjYFcqN5b1bxBM4fdk0VESpjWR0fc,28
|
|
84
84
|
modal/_runtime/asgi.py,sha256=AOcduIlijmlxhXVWo7AIUhigo-bqm6nDkHj4Q4JLy6o,22607
|
|
85
85
|
modal/_runtime/container_io_manager.py,sha256=6RnUl7-jizlSdo1S5ZG7cYG6XxdyAo6rXxmsDyRtW-8,52014
|
|
@@ -153,7 +153,7 @@ modal/experimental/__init__.py,sha256=QkCGP1lZiOa8sY4ZNqMF8JsnuRaDI7PJpXkGtKMWgD
|
|
|
153
153
|
modal/experimental/flash.py,sha256=C4sef08rARYFllsgtqukFmYL18SZW0_JpMS0BejDcUs,28552
|
|
154
154
|
modal/experimental/flash.pyi,sha256=vV_OQhtdrPn8SW0XrBK-aLLHHIvxAzLzwFbWrke-m74,15463
|
|
155
155
|
modal/experimental/ipython.py,sha256=TrCfmol9LGsRZMeDoeMPx3Hv3BFqQhYnmD_iH0pqdhk,2904
|
|
156
|
-
modal-1.1.5.
|
|
156
|
+
modal-1.1.5.dev66.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
|
|
@@ -182,10 +182,10 @@ modal_proto/sandbox_router_pb2.py,sha256=INd9izYaIYqllESQt4MSv2Rj9Hf5bMjAvtCc9b4
|
|
|
182
182
|
modal_proto/sandbox_router_pb2.pyi,sha256=YCK0WnCgRos3-p7t4USQQ7x6WAuM278yeQX2IeU5mLg,13295
|
|
183
183
|
modal_proto/sandbox_router_pb2_grpc.py,sha256=zonC5flvCwxeZYJPENj1IJo2Mr0J58DpoC1_8IdPYik,8243
|
|
184
184
|
modal_proto/sandbox_router_pb2_grpc.pyi,sha256=4QgCB9b7_ykvH8YD-hfnogVH9CLyHVDC5QNb03l4_X8,2735
|
|
185
|
-
modal_version/__init__.py,sha256=
|
|
185
|
+
modal_version/__init__.py,sha256=zg2cNdUsd1AR7YrLggxRN7kcEhyGATD3RqCCOs5FRYk,121
|
|
186
186
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
|
187
|
-
modal-1.1.5.
|
|
188
|
-
modal-1.1.5.
|
|
189
|
-
modal-1.1.5.
|
|
190
|
-
modal-1.1.5.
|
|
191
|
-
modal-1.1.5.
|
|
187
|
+
modal-1.1.5.dev66.dist-info/METADATA,sha256=X7tz_PT6CDxaVHZEtI9xvOq8QLaLvQmuOFp8FZGygpw,2481
|
|
188
|
+
modal-1.1.5.dev66.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
189
|
+
modal-1.1.5.dev66.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
|
190
|
+
modal-1.1.5.dev66.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
|
191
|
+
modal-1.1.5.dev66.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|