fal 1.10.0__py3-none-any.whl → 1.11.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.
Potentially problematic release.
This version of fal might be problematic. Click here for more details.
- fal/_fal_version.py +2 -2
- fal/container.py +6 -0
- {fal-1.10.0.dist-info → fal-1.11.0.dist-info}/METADATA +2 -2
- {fal-1.10.0.dist-info → fal-1.11.0.dist-info}/RECORD +7 -7
- {fal-1.10.0.dist-info → fal-1.11.0.dist-info}/WHEEL +1 -1
- {fal-1.10.0.dist-info → fal-1.11.0.dist-info}/entry_points.txt +0 -0
- {fal-1.10.0.dist-info → fal-1.11.0.dist-info}/top_level.txt +0 -0
fal/_fal_version.py
CHANGED
fal/container.py
CHANGED
|
@@ -4,6 +4,8 @@ from typing import Dict, Literal
|
|
|
4
4
|
Builder = Literal["depot", "service", "worker"]
|
|
5
5
|
BUILDERS = {"depot", "service", "worker"}
|
|
6
6
|
DEFAULT_BUILDER: Builder = "depot"
|
|
7
|
+
DEFAULT_COMPRESSION: str = "gzip"
|
|
8
|
+
DEFAULT_FORCE_COMPRESSION: bool = False
|
|
7
9
|
|
|
8
10
|
|
|
9
11
|
@dataclass
|
|
@@ -16,6 +18,8 @@ class ContainerImage:
|
|
|
16
18
|
build_args: Dict[str, str] = field(default_factory=dict)
|
|
17
19
|
registries: Dict[str, Dict[str, str]] = field(default_factory=dict)
|
|
18
20
|
builder: Builder = field(default=DEFAULT_BUILDER)
|
|
21
|
+
compression: str = DEFAULT_COMPRESSION
|
|
22
|
+
force_compression: bool = DEFAULT_FORCE_COMPRESSION
|
|
19
23
|
|
|
20
24
|
def __post_init__(self) -> None:
|
|
21
25
|
if self.registries:
|
|
@@ -46,4 +50,6 @@ class ContainerImage:
|
|
|
46
50
|
"build_args": self.build_args,
|
|
47
51
|
"registries": self.registries,
|
|
48
52
|
"builder": self.builder,
|
|
53
|
+
"compression": self.compression,
|
|
54
|
+
"force_compression": self.force_compression,
|
|
49
55
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
fal/__init__.py,sha256=wXs1G0gSc7ZK60-bHe-B2m0l_sA6TrFk4BxY0tMoLe8,784
|
|
2
2
|
fal/__main__.py,sha256=4JMK66Wj4uLZTKbF-sT3LAxOsr6buig77PmOkJCRRxw,83
|
|
3
|
-
fal/_fal_version.py,sha256=
|
|
3
|
+
fal/_fal_version.py,sha256=NYxfUyIQwdONRcmiATXsc3iD0kuKImoMYD3H1Vdv9OM,513
|
|
4
4
|
fal/_serialization.py,sha256=rD2YiSa8iuzCaZohZwN_MPEB-PpSKbWRDeaIDpTEjyY,7653
|
|
5
5
|
fal/_version.py,sha256=EBGqrknaf1WygENX-H4fBefLvHryvJBBGtVJetaB0NY,266
|
|
6
6
|
fal/api.py,sha256=jqmQfhRvZMYpWWvbTfARxjywP_72c314pnLPTb5dGwA,44755
|
|
7
7
|
fal/app.py,sha256=3WhjRgJdJ2ajAeZ3IeFb20_Zm6EH19a_WIuDtanaMHE,23308
|
|
8
8
|
fal/apps.py,sha256=RpmElElJnDYjsTRQOdNYiJwd74GEOGYA38L5O5GzNEg,11068
|
|
9
9
|
fal/config.py,sha256=aVv0k2fxMZurlra4c7ZIKQQCNPI-Dm_Mns6PsYWdh-c,2264
|
|
10
|
-
fal/container.py,sha256=
|
|
10
|
+
fal/container.py,sha256=PM7e1RloTCexZ64uAv7sa2RSZxPI-X8KcxkdaZqEfjw,1914
|
|
11
11
|
fal/files.py,sha256=QgfYfMKmNobMPufrAP_ga1FKcIAlSbw18Iar1-0qepo,2650
|
|
12
12
|
fal/flags.py,sha256=oWN_eidSUOcE9wdPK_77si3A1fpgOC0UEERPsvNLIMc,842
|
|
13
13
|
fal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -133,8 +133,8 @@ openapi_fal_rest/models/workflow_node_type.py,sha256=-FzyeY2bxcNmizKbJI8joG7byRi
|
|
|
133
133
|
openapi_fal_rest/models/workflow_schema.py,sha256=4K5gsv9u9pxx2ItkffoyHeNjBBYf6ur5bN4m_zePZNY,2019
|
|
134
134
|
openapi_fal_rest/models/workflow_schema_input.py,sha256=2OkOXWHTNsCXHWS6EGDFzcJKkW5FIap-2gfO233EvZQ,1191
|
|
135
135
|
openapi_fal_rest/models/workflow_schema_output.py,sha256=EblwSPAGfWfYVWw_WSSaBzQVju296is9o28rMBAd0mc,1196
|
|
136
|
-
fal-1.
|
|
137
|
-
fal-1.
|
|
138
|
-
fal-1.
|
|
139
|
-
fal-1.
|
|
140
|
-
fal-1.
|
|
136
|
+
fal-1.11.0.dist-info/METADATA,sha256=gyk3rZlftiD1qXNBRHk5Z_g-CC65Qi9OTS_zuKfQGHE,4043
|
|
137
|
+
fal-1.11.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
138
|
+
fal-1.11.0.dist-info/entry_points.txt,sha256=32zwTUC1U1E7nSTIGCoANQOQ3I7-qHG5wI6gsVz5pNU,37
|
|
139
|
+
fal-1.11.0.dist-info/top_level.txt,sha256=r257X1L57oJL8_lM0tRrfGuXFwm66i1huwQygbpLmHw,21
|
|
140
|
+
fal-1.11.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|