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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ae_shell
3
- Version: 0.3.13
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.13
67
+ # shell 0.3.14
67
68
 
68
69
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
69
70
  https://gitlab.com/ae-group/ae_shell)
70
71
  [![LatestPyPIrelease](
71
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.13?logo=python)](
72
- https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.13)
72
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.14?logo=python)](
73
+ https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.14)
73
74
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
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.13
3
+ # shell 0.3.14
4
4
 
5
5
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
6
6
  https://gitlab.com/ae-group/ae_shell)
7
7
  [![LatestPyPIrelease](
8
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.13?logo=python)](
9
- https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.13)
8
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.14?logo=python)](
9
+ https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.14)
10
10
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
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, load_env_var_defaults, norm_name # type: ignore
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.13'
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.13
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.13
67
+ # shell 0.3.14
67
68
 
68
69
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
69
70
  https://gitlab.com/ae-group/ae_shell)
70
71
  [![LatestPyPIrelease](
71
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.13?logo=python)](
72
- https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.13)
72
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.14?logo=python)](
73
+ https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.14)
73
74
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
74
75
  https://pypi.org/project/ae-shell/#history)
75
76
 
@@ -1,4 +1,5 @@
1
1
  ae_base
2
+ ae_system
2
3
  ae_core
3
4
  ae_console
4
5
 
@@ -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.13',
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