omdev 0.0.0.dev268__py3-none-any.whl → 0.0.0.dev270__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.
- omdev/.manifests.json +12 -0
- omdev/cache/data/actions.py +4 -2
- omdev/cache/data/specs.py +4 -2
- omdev/packaging/marshal.py +7 -7
- omdev/scripts/pyproject.py +582 -583
- omdev/tools/diff.py +26 -0
- omdev/tools/git/cli.py +9 -1
- {omdev-0.0.0.dev268.dist-info → omdev-0.0.0.dev270.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev268.dist-info → omdev-0.0.0.dev270.dist-info}/RECORD +13 -12
- {omdev-0.0.0.dev268.dist-info → omdev-0.0.0.dev270.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev268.dist-info → omdev-0.0.0.dev270.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev268.dist-info → omdev-0.0.0.dev270.dist-info}/licenses/LICENSE +0 -0
- {omdev-0.0.0.dev268.dist-info → omdev-0.0.0.dev270.dist-info}/top_level.txt +0 -0
omdev/.manifests.json
CHANGED
@@ -239,6 +239,18 @@
|
|
239
239
|
}
|
240
240
|
}
|
241
241
|
},
|
242
|
+
{
|
243
|
+
"module": ".tools.diff",
|
244
|
+
"attr": "_CLI_MODULE",
|
245
|
+
"file": "omdev/tools/diff.py",
|
246
|
+
"line": 21,
|
247
|
+
"value": {
|
248
|
+
"$.cli.types.CliModule": {
|
249
|
+
"cmd_name": "diff",
|
250
|
+
"mod_name": "omdev.tools.diff"
|
251
|
+
}
|
252
|
+
}
|
253
|
+
},
|
242
254
|
{
|
243
255
|
"module": ".tools.doc",
|
244
256
|
"attr": "_CLI_MODULE",
|
omdev/cache/data/actions.py
CHANGED
@@ -41,5 +41,7 @@ class ExtractAction(Action, lang.Final):
|
|
41
41
|
@lang.static_init
|
42
42
|
def _install_standard_marshalling() -> None:
|
43
43
|
actions_poly = msh.polymorphism_from_subclasses(Action, naming=msh.Naming.SNAKE, strip_suffix=True)
|
44
|
-
msh.
|
45
|
-
|
44
|
+
msh.install_standard_factories(
|
45
|
+
msh.PolymorphismMarshalerFactory(actions_poly),
|
46
|
+
msh.PolymorphismUnmarshalerFactory(actions_poly),
|
47
|
+
)
|
omdev/cache/data/specs.py
CHANGED
@@ -95,5 +95,7 @@ class GithubContentSpec(Spec):
|
|
95
95
|
@lang.static_init
|
96
96
|
def _install_standard_marshalling() -> None:
|
97
97
|
specs_poly = msh.polymorphism_from_subclasses(Spec, naming=msh.Naming.SNAKE, strip_suffix=True)
|
98
|
-
msh.
|
99
|
-
|
98
|
+
msh.install_standard_factories(
|
99
|
+
msh.PolymorphismMarshalerFactory(specs_poly),
|
100
|
+
msh.PolymorphismUnmarshalerFactory(specs_poly),
|
101
|
+
)
|
omdev/packaging/marshal.py
CHANGED
@@ -65,17 +65,17 @@ def _install_standard_marshalling() -> None:
|
|
65
65
|
msh.Impl(RequiresOp, 'op'),
|
66
66
|
],
|
67
67
|
)
|
68
|
-
msh.
|
68
|
+
msh.install_standard_factories(
|
69
69
|
msh.PolymorphismMarshalerFactory(requires_node_poly),
|
70
|
+
msh.PolymorphismUnmarshalerFactory(requires_node_poly),
|
70
71
|
msh.PolymorphismUnionMarshalerFactory(requires_node_poly.impls, allow_partial=True),
|
71
|
-
|
72
|
+
)
|
72
73
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
]
|
74
|
+
msh.install_standard_factories(
|
75
|
+
RequiresMarkerListMarshalerFactory(),
|
76
|
+
)
|
77
77
|
|
78
|
-
msh.
|
78
|
+
msh.register_global(
|
79
79
|
RequiresMarkerList,
|
80
80
|
msh.ReflectOverride(MarshalRequiresMarkerList),
|
81
81
|
identity=True,
|