omdev 0.0.0.dev33__py3-none-any.whl → 0.0.0.dev35__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 omdev might be problematic. Click here for more details.
- omdev/.manifests.json +4 -4
- omdev/cache/data/actions.py +1 -4
- omdev/cache/data/specs.py +1 -4
- omdev/precheck/__main__.py +7 -0
- omdev/precheck/precheck.py +0 -5
- {omdev-0.0.0.dev33.dist-info → omdev-0.0.0.dev35.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev33.dist-info → omdev-0.0.0.dev35.dist-info}/RECORD +11 -11
- {omdev-0.0.0.dev33.dist-info → omdev-0.0.0.dev35.dist-info}/LICENSE +0 -0
- {omdev-0.0.0.dev33.dist-info → omdev-0.0.0.dev35.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev33.dist-info → omdev-0.0.0.dev35.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev33.dist-info → omdev-0.0.0.dev35.dist-info}/top_level.txt +0 -0
omdev/.manifests.json
CHANGED
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
|
-
"module": ".precheck.
|
|
51
|
+
"module": ".precheck.__main__",
|
|
52
52
|
"attr": "_CLI_MODULE",
|
|
53
|
-
"file": "omdev/precheck/
|
|
54
|
-
"line":
|
|
53
|
+
"file": "omdev/precheck/__main__.py",
|
|
54
|
+
"line": 4,
|
|
55
55
|
"value": {
|
|
56
56
|
"$.cli.types.CliModule": {
|
|
57
57
|
"cmd_name": "precheck",
|
|
58
|
-
"mod_name": "omdev.precheck.
|
|
58
|
+
"mod_name": "omdev.precheck.__main__"
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
},
|
omdev/cache/data/actions.py
CHANGED
|
@@ -38,11 +38,8 @@ class ExtractAction(Action, lang.Final):
|
|
|
38
38
|
##
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
@lang.
|
|
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
44
|
msh.STANDARD_MARSHALER_FACTORIES[0:0] = [msh.PolymorphismMarshalerFactory(actions_poly)]
|
|
45
45
|
msh.STANDARD_UNMARSHALER_FACTORIES[0:0] = [msh.PolymorphismUnmarshalerFactory(actions_poly)]
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
_install_standard_marshalling()
|
omdev/cache/data/specs.py
CHANGED
|
@@ -86,11 +86,8 @@ class GithubContentSpec(Spec):
|
|
|
86
86
|
##
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
@lang.
|
|
89
|
+
@lang.static_init
|
|
90
90
|
def _install_standard_marshalling() -> None:
|
|
91
91
|
specs_poly = msh.polymorphism_from_subclasses(Spec, naming=msh.Naming.SNAKE, strip_suffix=True)
|
|
92
92
|
msh.STANDARD_MARSHALER_FACTORIES[0:0] = [msh.PolymorphismMarshalerFactory(specs_poly)]
|
|
93
93
|
msh.STANDARD_UNMARSHALER_FACTORIES[0:0] = [msh.PolymorphismUnmarshalerFactory(specs_poly)]
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
_install_standard_marshalling()
|
omdev/precheck/__main__.py
CHANGED
omdev/precheck/precheck.py
CHANGED
|
@@ -27,7 +27,6 @@ import typing as ta
|
|
|
27
27
|
|
|
28
28
|
from omlish import logs
|
|
29
29
|
|
|
30
|
-
from ..cli import CliModule
|
|
31
30
|
from .base import Precheck
|
|
32
31
|
from .base import PrecheckContext
|
|
33
32
|
from .git import GitBlacklistPrecheck
|
|
@@ -87,10 +86,6 @@ def _build_parser() -> argparse.ArgumentParser:
|
|
|
87
86
|
return parser
|
|
88
87
|
|
|
89
88
|
|
|
90
|
-
# @omlish-manifest
|
|
91
|
-
_CLI_MODULE = CliModule('precheck', __name__)
|
|
92
|
-
|
|
93
|
-
|
|
94
89
|
def _main(argv: ta.Sequence[str] | None = None) -> None:
|
|
95
90
|
logs.configure_standard_logging('INFO')
|
|
96
91
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: omdev
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev35
|
|
4
4
|
Summary: omdev
|
|
5
5
|
Author: wrmsr
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -12,7 +12,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Classifier: Operating System :: POSIX
|
|
13
13
|
Requires-Python: ~=3.12
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: omlish ==0.0.0.
|
|
15
|
+
Requires-Dist: omlish ==0.0.0.dev35
|
|
16
16
|
Provides-Extra: all
|
|
17
17
|
Requires-Dist: pycparser ~=2.22 ; extra == 'all'
|
|
18
18
|
Requires-Dist: cffi ~=1.17 ; extra == 'all'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
omdev/.manifests.json,sha256=
|
|
1
|
+
omdev/.manifests.json,sha256=g5YMyKNbgWIAzHr55ATgsRd1kfzRIh3KDrYXfI1e69Q,2595
|
|
2
2
|
omdev/__about__.py,sha256=LqSNNFFcT84xW3W8fIOJ78kPYJKFLIXZyDX-AJREvN0,1005
|
|
3
3
|
omdev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
omdev/bracepy.py,sha256=HwBK5XmlOsF_juTel25fRLJK9vHSJCWXuCc-OZlevRQ,2619
|
|
@@ -24,12 +24,12 @@ omdev/cache/compute/resolvers.py,sha256=9dq0mt__emp8CdNDWPVUr_dCkTOn7ar6nw0F2QH6
|
|
|
24
24
|
omdev/cache/compute/storage.py,sha256=woCUqHg8ZrwLEejRG3zu1L5ZXxGNNXveh3E8FnlEkjc,941
|
|
25
25
|
omdev/cache/compute/types.py,sha256=NpCTTJHDmpERjrbO6dh9TEzHuP6-vOuoX3ym9sA0ukc,2639
|
|
26
26
|
omdev/cache/data/__init__.py,sha256=SQXtugLceRif463rcoklpQ33pxYLgEIm0xiI6NvOI6M,301
|
|
27
|
-
omdev/cache/data/actions.py,sha256=
|
|
27
|
+
omdev/cache/data/actions.py,sha256=KVYb3tBYP5c0g-wK1bXih_K7L0ER9UINKChhfc7mwKQ,1071
|
|
28
28
|
omdev/cache/data/cache.py,sha256=WSsbFyFRT_IQFYQCrmUpaTvs9DRglLmCnhguOzdJ6p4,5753
|
|
29
29
|
omdev/cache/data/consts.py,sha256=d6W_aeMqgah6PmPYi9RA8Be54oQ4BcNCy8kDQ7FlB_Q,26
|
|
30
30
|
omdev/cache/data/defaults.py,sha256=HrapVUIf9Ozu3qSfRPyQj-vx-dz6Yyedjb-k3yV4CW8,277
|
|
31
31
|
omdev/cache/data/manifests.py,sha256=CupK71fL3_PnDzUqjrWLNt64KfGKF-K4ycMkT5p0gPA,979
|
|
32
|
-
omdev/cache/data/specs.py,sha256=
|
|
32
|
+
omdev/cache/data/specs.py,sha256=h2yGkDAZ5tGpqJ280QyglFodTNf_WP1GHJo6koQ-sTk,2313
|
|
33
33
|
omdev/cexts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
omdev/cexts/_boilerplate.cc,sha256=sbpXEgdFrkdzZXgaNWFFNN27fL9TZu6VrwvMY4-nnFM,1726
|
|
35
35
|
omdev/cexts/build.py,sha256=F3z1-CjDlEM-Gzi5IunKUBO52qdH_pMsFylobTdGJnI,2654
|
|
@@ -74,11 +74,11 @@ omdev/manifests/types.py,sha256=Jv6PAdVLPb9Hh4y6vDhPlWuMNBBViin1bC_u83jfsH4,234
|
|
|
74
74
|
omdev/mypy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
75
|
omdev/mypy/debug.py,sha256=WcZw-3Z1njg_KFGqi3DB6RuqbBa3dLArJnjVCuY1Mn0,3003
|
|
76
76
|
omdev/precheck/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
omdev/precheck/__main__.py,sha256=
|
|
77
|
+
omdev/precheck/__main__.py,sha256=p8jRkwErGndtO4PO4L5nAC8sqmJ0sW3u-rq8p1GN3ec,169
|
|
78
78
|
omdev/precheck/base.py,sha256=a_lGoFM-QhL8u8XDUYFhb-feEyfPbP4j8lcmNO51sHY,732
|
|
79
79
|
omdev/precheck/git.py,sha256=APC5Ln7x0zDrQiGPRWPsBcVJK3vWhbU-brqR5M63JQA,849
|
|
80
80
|
omdev/precheck/lite.py,sha256=MLeDZP2UexNZzYTcSx4-LrhA97kCKn8tXrGkhsJb6I0,3649
|
|
81
|
-
omdev/precheck/precheck.py,sha256=
|
|
81
|
+
omdev/precheck/precheck.py,sha256=Boe3zbK0RXCGzw9H_OsyqJ4yMETuyrwy8P4UFAZQcTY,2477
|
|
82
82
|
omdev/precheck/scripts.py,sha256=qq6MXkxgrYngPg5pWnXH4uRSuRkP3mFqbeml1UmvGBc,1265
|
|
83
83
|
omdev/pyproject/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
|
84
84
|
omdev/pyproject/__main__.py,sha256=gn3Rl1aYPYdiTtEqa9ifi0t-e4ZwPY0vhJ4UXvYdJDY,165
|
|
@@ -106,9 +106,9 @@ omdev/tools/sqlrepl.py,sha256=tmFZh80-xsGM62dyQ7_UGLebChrj7IHbIPYBWDJMgVk,5741
|
|
|
106
106
|
omdev/versioning/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
|
107
107
|
omdev/versioning/specifiers.py,sha256=6Odf9e6farwlPRsD_YqwTfYKG-BXn_dIcKtqfkhfodI,17432
|
|
108
108
|
omdev/versioning/versions.py,sha256=ei2eopEsJq3zSMJmezK1nzZgikgCdxFtnF3f69nCRZQ,12246
|
|
109
|
-
omdev-0.0.0.
|
|
110
|
-
omdev-0.0.0.
|
|
111
|
-
omdev-0.0.0.
|
|
112
|
-
omdev-0.0.0.
|
|
113
|
-
omdev-0.0.0.
|
|
114
|
-
omdev-0.0.0.
|
|
109
|
+
omdev-0.0.0.dev35.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
|
110
|
+
omdev-0.0.0.dev35.dist-info/METADATA,sha256=zipZ1FC8kOzhQo92ziMgGvv0fwRLsZEdkYh4ZaSa3Zk,1252
|
|
111
|
+
omdev-0.0.0.dev35.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
112
|
+
omdev-0.0.0.dev35.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
|
|
113
|
+
omdev-0.0.0.dev35.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
|
|
114
|
+
omdev-0.0.0.dev35.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|