ominfra 0.0.0.dev19__py3-none-any.whl → 0.0.0.dev21__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.
- ominfra/deploy/_executor.py +6 -4
- ominfra/deploy/poly/_main.py +2 -2
- ominfra/pyremote/_runcommands.py +6 -4
- {ominfra-0.0.0.dev19.dist-info → ominfra-0.0.0.dev21.dist-info}/METADATA +2 -2
- {ominfra-0.0.0.dev19.dist-info → ominfra-0.0.0.dev21.dist-info}/RECORD +10 -10
- /ominfra/{bootstrap → manage}/__init__.py +0 -0
- /ominfra/{bootstrap/bootstrap.py → manage/manage.py} +0 -0
- {ominfra-0.0.0.dev19.dist-info → ominfra-0.0.0.dev21.dist-info}/LICENSE +0 -0
- {ominfra-0.0.0.dev19.dist-info → ominfra-0.0.0.dev21.dist-info}/WHEEL +0 -0
- {ominfra-0.0.0.dev19.dist-info → ominfra-0.0.0.dev21.dist-info}/top_level.txt +0 -0
ominfra/deploy/_executor.py
CHANGED
@@ -292,8 +292,8 @@ class JsonLogFormatter(logging.Formatter):
|
|
292
292
|
STANDARD_LOG_FORMAT_PARTS = [
|
293
293
|
('asctime', '%(asctime)-15s'),
|
294
294
|
('process', 'pid=%(process)-6s'),
|
295
|
-
('thread', 'tid=%(thread)
|
296
|
-
('levelname', '%(levelname)
|
295
|
+
('thread', 'tid=%(thread)x'),
|
296
|
+
('levelname', '%(levelname)s'),
|
297
297
|
('name', '%(name)s'),
|
298
298
|
('separator', '::'),
|
299
299
|
('message', '%(message)s'),
|
@@ -559,8 +559,10 @@ _OBJ_MARSHALER_GENERIC_MAPPING_TYPES: ta.Dict[ta.Any, type] = {
|
|
559
559
|
|
560
560
|
_OBJ_MARSHALER_GENERIC_ITERABLE_TYPES: ta.Dict[ta.Any, type] = {
|
561
561
|
**{t: t for t in (list, tuple, set, frozenset)},
|
562
|
-
|
563
|
-
|
562
|
+
collections.abc.Set: frozenset,
|
563
|
+
collections.abc.MutableSet: set,
|
564
|
+
collections.abc.Sequence: tuple,
|
565
|
+
collections.abc.MutableSequence: list,
|
564
566
|
}
|
565
567
|
|
566
568
|
|
ominfra/deploy/poly/_main.py
CHANGED
@@ -355,8 +355,8 @@ class JsonLogFormatter(logging.Formatter):
|
|
355
355
|
STANDARD_LOG_FORMAT_PARTS = [
|
356
356
|
('asctime', '%(asctime)-15s'),
|
357
357
|
('process', 'pid=%(process)-6s'),
|
358
|
-
('thread', 'tid=%(thread)
|
359
|
-
('levelname', '%(levelname)
|
358
|
+
('thread', 'tid=%(thread)x'),
|
359
|
+
('levelname', '%(levelname)s'),
|
360
360
|
('name', '%(name)s'),
|
361
361
|
('separator', '::'),
|
362
362
|
('message', '%(message)s'),
|
ominfra/pyremote/_runcommands.py
CHANGED
@@ -375,8 +375,8 @@ class JsonLogFormatter(logging.Formatter):
|
|
375
375
|
STANDARD_LOG_FORMAT_PARTS = [
|
376
376
|
('asctime', '%(asctime)-15s'),
|
377
377
|
('process', 'pid=%(process)-6s'),
|
378
|
-
('thread', 'tid=%(thread)
|
379
|
-
('levelname', '%(levelname)
|
378
|
+
('thread', 'tid=%(thread)x'),
|
379
|
+
('levelname', '%(levelname)s'),
|
380
380
|
('name', '%(name)s'),
|
381
381
|
('separator', '::'),
|
382
382
|
('message', '%(message)s'),
|
@@ -642,8 +642,10 @@ _OBJ_MARSHALER_GENERIC_MAPPING_TYPES: ta.Dict[ta.Any, type] = {
|
|
642
642
|
|
643
643
|
_OBJ_MARSHALER_GENERIC_ITERABLE_TYPES: ta.Dict[ta.Any, type] = {
|
644
644
|
**{t: t for t in (list, tuple, set, frozenset)},
|
645
|
-
|
646
|
-
|
645
|
+
collections.abc.Set: frozenset,
|
646
|
+
collections.abc.MutableSet: set,
|
647
|
+
collections.abc.Sequence: tuple,
|
648
|
+
collections.abc.MutableSequence: list,
|
647
649
|
}
|
648
650
|
|
649
651
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ominfra
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev21
|
4
4
|
Summary: ominfra
|
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.dev21
|
16
16
|
Provides-Extra: all
|
17
17
|
Requires-Dist: paramiko ~=3.4 ; extra == 'all'
|
18
18
|
Requires-Dist: asyncssh ~=2.17 ; (python_version < "3.13") and extra == 'all'
|
@@ -2,13 +2,11 @@ ominfra/__about__.py,sha256=5DfZfpjDGdRPquXrfFEFaeTLkc69qr1i-ELbJ0R-HKI,625
|
|
2
2
|
ominfra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
ominfra/cmds.py,sha256=E0AfnvEmnKntXWvmLW5L05_NeDpBET1VBXn7vV6EwBQ,2083
|
4
4
|
ominfra/ssh.py,sha256=U-JCvx41KI0B0riHy7cpFCKCx_LAHeSn-Irz5aAao2w,5393
|
5
|
-
ominfra/bootstrap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
ominfra/bootstrap/bootstrap.py,sha256=gS2FvvdZTmNqD2dEXWTCFgCXNCepFSHVojBZ5WG6mqk,65
|
7
5
|
ominfra/clouds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
6
|
ominfra/clouds/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
7
|
ominfra/clouds/aws/auth.py,sha256=eV6ayidQDKrhsgoRSg4_1tSvTMa1TzFvzxS7D_gjlCc,5499
|
10
8
|
ominfra/deploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
ominfra/deploy/_executor.py,sha256=
|
9
|
+
ominfra/deploy/_executor.py,sha256=Gh6yNy9SeiXzF3IvDES3GlDWwUTY1ElyCvPMuMySPPQ,28830
|
12
10
|
ominfra/deploy/configs.py,sha256=qi0kwT7G2NH7dXLOQic-u6R3yeadup_QtvrjwWIggbM,435
|
13
11
|
ominfra/deploy/remote.py,sha256=LJSe3AJlpvNgb_5QtUiK2JIkKC2OgMvjSD1701_y2uI,2147
|
14
12
|
ominfra/deploy/executor/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
@@ -23,7 +21,7 @@ ominfra/deploy/executor/concerns/systemd.py,sha256=MtsSEToEa1HNouern_JukcYTnypw_
|
|
23
21
|
ominfra/deploy/executor/concerns/user.py,sha256=j5LDfQXquIp-eEM7t6aShsrYoQrM_ILXZycTmTcRVxA,686
|
24
22
|
ominfra/deploy/executor/concerns/venv.py,sha256=jbRriqJHO4r9Zyo5Hfl_qVmcU6Qm6UgrouBroKcPn2g,775
|
25
23
|
ominfra/deploy/poly/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
26
|
-
ominfra/deploy/poly/_main.py,sha256=
|
24
|
+
ominfra/deploy/poly/_main.py,sha256=oqGwNPxcvLIaYR7vr75tmEzYXY0JPfufbz9dSFUn3J8,20062
|
27
25
|
ominfra/deploy/poly/base.py,sha256=Bd-CzUTaDvTRbdXKiTxMxs77WCEXItwNoBYCRnTk1u4,4167
|
28
26
|
ominfra/deploy/poly/configs.py,sha256=9bzWdbxhOk_Q4KokDjmRz254KHnUU71Vl1frLlhQyU4,584
|
29
27
|
ominfra/deploy/poly/deploy.py,sha256=tMYKslXLjstcv86siRt5j37USsS0Wd6lsfeGRE26zio,544
|
@@ -34,14 +32,16 @@ ominfra/deploy/poly/runtime.py,sha256=G66AI-a27Wi6QYpG3M0ryqI7c5MnJkXt-_j9Qi8UiU
|
|
34
32
|
ominfra/deploy/poly/site.py,sha256=QJwDDJoVm2-kxi4bxIrp-mn4y2qDLuW3CAUax3W8gv8,239
|
35
33
|
ominfra/deploy/poly/supervisor.py,sha256=zkl6VQBcAZaMAhyR9DbbbqULcgFCDZoe9S_vP-mMFQ8,2289
|
36
34
|
ominfra/deploy/poly/venv.py,sha256=BoipDEa4NTeodjf3L57KJfq9eGKLagFNKwD8pS4yrzA,1552
|
35
|
+
ominfra/manage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
+
ominfra/manage/manage.py,sha256=gS2FvvdZTmNqD2dEXWTCFgCXNCepFSHVojBZ5WG6mqk,65
|
37
37
|
ominfra/pyremote/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
|
-
ominfra/pyremote/_runcommands.py,sha256=
|
38
|
+
ominfra/pyremote/_runcommands.py,sha256=w1Rgx-2Vqh5_Fs24cCBTR0iuHn9abXX35vZs5K52fK0,22650
|
39
39
|
ominfra/pyremote/bootstrap.py,sha256=ybXxNitrNKuPAIl0SrU55Ktn-4R-bDveAm_ZURrmfF0,3368
|
40
40
|
ominfra/pyremote/runcommands.py,sha256=hXXP41rvgL46Oe_HOcLSp2Y84ZMQfEZqqV_jNd1x7Ak,1570
|
41
41
|
ominfra/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
42
|
ominfra/tools/listresources.py,sha256=vgLgohPwRog8e5pEljI2hOGg-Li5fcwjj-nXj2j8IQo,5918
|
43
|
-
ominfra-0.0.0.
|
44
|
-
ominfra-0.0.0.
|
45
|
-
ominfra-0.0.0.
|
46
|
-
ominfra-0.0.0.
|
47
|
-
ominfra-0.0.0.
|
43
|
+
ominfra-0.0.0.dev21.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
44
|
+
ominfra-0.0.0.dev21.dist-info/METADATA,sha256=KNIo_glGhaguyuxfkAPk_ztfUXPlFlYhP5Z15zkNAS8,764
|
45
|
+
ominfra-0.0.0.dev21.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
46
|
+
ominfra-0.0.0.dev21.dist-info/top_level.txt,sha256=E-b2OHkk_AOBLXHYZQ2EOFKl-_6uOGd8EjeG-Zy6h_w,8
|
47
|
+
ominfra-0.0.0.dev21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|