ae-shell 0.3.13__tar.gz → 0.3.14__tar.gz
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.
- {ae_shell-0.3.13/ae_shell.egg-info → ae_shell-0.3.14}/PKG-INFO +5 -4
- {ae_shell-0.3.13 → ae_shell-0.3.14}/README.md +3 -3
- {ae_shell-0.3.13 → ae_shell-0.3.14}/ae/shell.py +3 -2
- {ae_shell-0.3.13 → ae_shell-0.3.14/ae_shell.egg-info}/PKG-INFO +5 -4
- {ae_shell-0.3.13 → ae_shell-0.3.14}/ae_shell.egg-info/requires.txt +1 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/setup.py +2 -1
- {ae_shell-0.3.13 → ae_shell-0.3.14}/LICENSE.md +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/ae_shell.egg-info/SOURCES.txt +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/ae_shell.egg-info/dependency_links.txt +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/ae_shell.egg-info/top_level.txt +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/ae_shell.egg-info/zip-safe +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/pyproject.toml +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/setup.cfg +0 -0
- {ae_shell-0.3.13 → ae_shell-0.3.14}/tests/test_shell.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_shell
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.14
|
|
4
4
|
Summary: ae namespace module portion shell: shell execution and environment helpers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_shell
|
|
6
6
|
Author: AndiEcker
|
|
@@ -23,6 +23,7 @@ Requires-Python: >=3.12
|
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE.md
|
|
25
25
|
Requires-Dist: ae_base
|
|
26
|
+
Requires-Dist: ae_system
|
|
26
27
|
Requires-Dist: ae_core
|
|
27
28
|
Requires-Dist: ae_console
|
|
28
29
|
Provides-Extra: dev
|
|
@@ -63,13 +64,13 @@ Dynamic: summary
|
|
|
63
64
|
|
|
64
65
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.103 -->
|
|
65
66
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
|
|
66
|
-
# shell 0.3.
|
|
67
|
+
# shell 0.3.14
|
|
67
68
|
|
|
68
69
|
[](
|
|
69
70
|
https://gitlab.com/ae-group/ae_shell)
|
|
70
71
|
[](
|
|
73
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.14)
|
|
73
74
|
[](
|
|
74
75
|
https://pypi.org/project/ae-shell/#history)
|
|
75
76
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.103 -->
|
|
2
2
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
|
|
3
|
-
# shell 0.3.
|
|
3
|
+
# shell 0.3.14
|
|
4
4
|
|
|
5
5
|
[](
|
|
6
6
|
https://gitlab.com/ae-group/ae_shell)
|
|
7
7
|
[](
|
|
9
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.14)
|
|
10
10
|
[](
|
|
11
11
|
https://pypi.org/project/ae-shell/#history)
|
|
12
12
|
|
|
@@ -26,12 +26,13 @@ import subprocess
|
|
|
26
26
|
from contextlib import contextmanager
|
|
27
27
|
from typing import Any, Callable, Iterable, Iterator, MutableMapping, Optional, Union, cast, overload
|
|
28
28
|
|
|
29
|
-
from ae.base import UNSET, dummy_function, env_str,
|
|
29
|
+
from ae.base import UNSET, dummy_function, env_str, norm_name # type: ignore
|
|
30
|
+
from ae.system import load_env_var_defaults # type: ignore
|
|
30
31
|
from ae.core import main_app_instance, AppBase # type: ignore
|
|
31
32
|
from ae.console import MAIN_SECTION_NAME, ConsoleApp # type: ignore
|
|
32
33
|
|
|
33
34
|
|
|
34
|
-
__version__ = '0.3.
|
|
35
|
+
__version__ = '0.3.14'
|
|
35
36
|
|
|
36
37
|
|
|
37
38
|
STDERR_BEG_MARKER = "vvv STDERR vvv" #: :paramref:`ae.shell.sh_exec.lines_output` begin stderr lines
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_shell
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.14
|
|
4
4
|
Summary: ae namespace module portion shell: shell execution and environment helpers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_shell
|
|
6
6
|
Author: AndiEcker
|
|
@@ -23,6 +23,7 @@ Requires-Python: >=3.12
|
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE.md
|
|
25
25
|
Requires-Dist: ae_base
|
|
26
|
+
Requires-Dist: ae_system
|
|
26
27
|
Requires-Dist: ae_core
|
|
27
28
|
Requires-Dist: ae_console
|
|
28
29
|
Provides-Extra: dev
|
|
@@ -63,13 +64,13 @@ Dynamic: summary
|
|
|
63
64
|
|
|
64
65
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.103 -->
|
|
65
66
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
|
|
66
|
-
# shell 0.3.
|
|
67
|
+
# shell 0.3.14
|
|
67
68
|
|
|
68
69
|
[](
|
|
69
70
|
https://gitlab.com/ae-group/ae_shell)
|
|
70
71
|
[](
|
|
73
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.14)
|
|
73
74
|
[](
|
|
74
75
|
https://pypi.org/project/ae-shell/#history)
|
|
75
76
|
|
|
@@ -50,6 +50,7 @@ setup_kwargs = {
|
|
|
50
50
|
},
|
|
51
51
|
'install_requires': [
|
|
52
52
|
'ae_base',
|
|
53
|
+
'ae_system',
|
|
53
54
|
'ae_core',
|
|
54
55
|
'ae_console',
|
|
55
56
|
],
|
|
@@ -77,7 +78,7 @@ setup_kwargs = {
|
|
|
77
78
|
},
|
|
78
79
|
'python_requires': '>=3.12',
|
|
79
80
|
'url': 'https://gitlab.com/ae-group/ae_shell',
|
|
80
|
-
'version': '0.3.
|
|
81
|
+
'version': '0.3.14',
|
|
81
82
|
'zip_safe': True,
|
|
82
83
|
}
|
|
83
84
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|