ae-shell 0.3.12__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,4 +1,4 @@
1
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.72 -->
1
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.77 -->
2
2
  ### GNU GENERAL PUBLIC LICENSE
3
3
 
4
4
  Version 3, 29 June 2007
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ae_shell
3
- Version: 0.3.12
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,31 +23,28 @@ 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
29
30
  Requires-Dist: aedev_project_tpls; extra == "dev"
30
31
  Requires-Dist: ae_ae; extra == "dev"
31
32
  Requires-Dist: anybadge; extra == "dev"
32
- Requires-Dist: coverage-badge; extra == "dev"
33
33
  Requires-Dist: flake8; extra == "dev"
34
34
  Requires-Dist: mypy; extra == "dev"
35
35
  Requires-Dist: pylint; extra == "dev"
36
36
  Requires-Dist: pytest; extra == "dev"
37
37
  Requires-Dist: pytest-cov; extra == "dev"
38
- Requires-Dist: pytest-django; extra == "dev"
39
38
  Requires-Dist: typing; extra == "dev"
40
39
  Requires-Dist: types-setuptools; extra == "dev"
41
40
  Provides-Extra: docs
42
41
  Provides-Extra: tests
43
42
  Requires-Dist: anybadge; extra == "tests"
44
- Requires-Dist: coverage-badge; extra == "tests"
45
43
  Requires-Dist: flake8; extra == "tests"
46
44
  Requires-Dist: mypy; extra == "tests"
47
45
  Requires-Dist: pylint; extra == "tests"
48
46
  Requires-Dist: pytest; extra == "tests"
49
47
  Requires-Dist: pytest-cov; extra == "tests"
50
- Requires-Dist: pytest-django; extra == "tests"
51
48
  Requires-Dist: typing; extra == "tests"
52
49
  Requires-Dist: types-setuptools; extra == "tests"
53
50
  Dynamic: author
@@ -65,15 +62,15 @@ Dynamic: requires-dist
65
62
  Dynamic: requires-python
66
63
  Dynamic: summary
67
64
 
68
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
65
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.103 -->
69
66
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
70
- # shell 0.3.12
67
+ # shell 0.3.14
71
68
 
72
69
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
73
70
  https://gitlab.com/ae-group/ae_shell)
74
71
  [![LatestPyPIrelease](
75
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.12?logo=python)](
76
- https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.12)
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)
77
74
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
78
75
  https://pypi.org/project/ae-shell/#history)
79
76
 
@@ -121,7 +118,7 @@ following command in the root folder of this repository
121
118
  (ae_shell):
122
119
 
123
120
  ```shell script
124
- pip install -e .[dev]
121
+ pip install --editable .[dev]
125
122
  ```
126
123
 
127
124
  the last command will install this module portion, along with the tools you need
@@ -1,12 +1,12 @@
1
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
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.12
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.12?logo=python)](
9
- https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.12)
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
 
@@ -54,7 +54,7 @@ following command in the root folder of this repository
54
54
  (ae_shell):
55
55
 
56
56
  ```shell script
57
- pip install -e .[dev]
57
+ pip install --editable .[dev]
58
58
  ```
59
59
 
60
60
  the last command will install this module portion, along with the tools you need
@@ -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.12'
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
@@ -199,10 +200,10 @@ def sh_exec(command_line: str, extra_args: Iterable[str] = (), console_input: st
199
200
  if ret_out:
200
201
  assert isinstance(lines_output, list), "silly mypy doesn't recognize ret_out"
201
202
  if result.stdout:
202
- lines_output.extend([line for line in result.stdout.decode().split(os.linesep) if line])
203
+ lines_output.extend([line for line in result.stdout.decode().splitlines() if line.strip()])
203
204
  if not merge_err and result.stderr:
204
205
  lines_output.append(STDERR_BEG_MARKER)
205
- lines_output.extend([line for line in result.stderr.decode().split(os.linesep) if line])
206
+ lines_output.extend([line for line in result.stderr.decode().splitlines() if line.strip()])
206
207
  lines_output.append(STDERR_END_MARKER)
207
208
 
208
209
  return result.returncode
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ae_shell
3
- Version: 0.3.12
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,31 +23,28 @@ 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
29
30
  Requires-Dist: aedev_project_tpls; extra == "dev"
30
31
  Requires-Dist: ae_ae; extra == "dev"
31
32
  Requires-Dist: anybadge; extra == "dev"
32
- Requires-Dist: coverage-badge; extra == "dev"
33
33
  Requires-Dist: flake8; extra == "dev"
34
34
  Requires-Dist: mypy; extra == "dev"
35
35
  Requires-Dist: pylint; extra == "dev"
36
36
  Requires-Dist: pytest; extra == "dev"
37
37
  Requires-Dist: pytest-cov; extra == "dev"
38
- Requires-Dist: pytest-django; extra == "dev"
39
38
  Requires-Dist: typing; extra == "dev"
40
39
  Requires-Dist: types-setuptools; extra == "dev"
41
40
  Provides-Extra: docs
42
41
  Provides-Extra: tests
43
42
  Requires-Dist: anybadge; extra == "tests"
44
- Requires-Dist: coverage-badge; extra == "tests"
45
43
  Requires-Dist: flake8; extra == "tests"
46
44
  Requires-Dist: mypy; extra == "tests"
47
45
  Requires-Dist: pylint; extra == "tests"
48
46
  Requires-Dist: pytest; extra == "tests"
49
47
  Requires-Dist: pytest-cov; extra == "tests"
50
- Requires-Dist: pytest-django; extra == "tests"
51
48
  Requires-Dist: typing; extra == "tests"
52
49
  Requires-Dist: types-setuptools; extra == "tests"
53
50
  Dynamic: author
@@ -65,15 +62,15 @@ Dynamic: requires-dist
65
62
  Dynamic: requires-python
66
63
  Dynamic: summary
67
64
 
68
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
65
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.103 -->
69
66
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
70
- # shell 0.3.12
67
+ # shell 0.3.14
71
68
 
72
69
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
73
70
  https://gitlab.com/ae-group/ae_shell)
74
71
  [![LatestPyPIrelease](
75
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.12?logo=python)](
76
- https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.12)
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)
77
74
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
78
75
  https://pypi.org/project/ae-shell/#history)
79
76
 
@@ -121,7 +118,7 @@ following command in the root folder of this repository
121
118
  (ae_shell):
122
119
 
123
120
  ```shell script
124
- pip install -e .[dev]
121
+ pip install --editable .[dev]
125
122
  ```
126
123
 
127
124
  the last command will install this module portion, along with the tools you need
@@ -1,4 +1,5 @@
1
1
  ae_base
2
+ ae_system
2
3
  ae_core
3
4
  ae_console
4
5
 
@@ -6,13 +7,11 @@ ae_console
6
7
  aedev_project_tpls
7
8
  ae_ae
8
9
  anybadge
9
- coverage-badge
10
10
  flake8
11
11
  mypy
12
12
  pylint
13
13
  pytest
14
14
  pytest-cov
15
- pytest-django
16
15
  typing
17
16
  types-setuptools
18
17
 
@@ -20,12 +19,10 @@ types-setuptools
20
19
 
21
20
  [tests]
22
21
  anybadge
23
- coverage-badge
24
22
  flake8
25
23
  mypy
26
24
  pylint
27
25
  pytest
28
26
  pytest-cov
29
- pytest-django
30
27
  typing
31
28
  types-setuptools
@@ -1,4 +1,4 @@
1
- # THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.72
1
+ # THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.77
2
2
  [build-system]
3
3
  requires = ["setuptools>=42", "wheel"]
4
4
  build-backend = "setuptools.build_meta"
@@ -1,4 +1,4 @@
1
- # THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.72
1
+ # THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.project_tpls v0.3.77
2
2
  """ setup of ae namespace module portion shell: shell execution and environment helpers. """
3
3
  import sys
4
4
  # noinspection PyUnresolvedReferences
@@ -28,32 +28,29 @@ setup_kwargs = {
28
28
  'aedev_project_tpls',
29
29
  'ae_ae',
30
30
  'anybadge',
31
- 'coverage-badge',
32
31
  'flake8',
33
32
  'mypy',
34
33
  'pylint',
35
34
  'pytest',
36
35
  'pytest-cov',
37
- 'pytest-django',
38
36
  'typing',
39
37
  'types-setuptools',
40
38
  ],
41
39
  'docs': [],
42
40
  'tests': [
43
41
  'anybadge',
44
- 'coverage-badge',
45
42
  'flake8',
46
43
  'mypy',
47
44
  'pylint',
48
45
  'pytest',
49
46
  'pytest-cov',
50
- 'pytest-django',
51
47
  'typing',
52
48
  'types-setuptools',
53
49
  ],
54
50
  },
55
51
  'install_requires': [
56
52
  'ae_base',
53
+ 'ae_system',
57
54
  'ae_core',
58
55
  'ae_console',
59
56
  ],
@@ -81,7 +78,7 @@ setup_kwargs = {
81
78
  },
82
79
  'python_requires': '>=3.12',
83
80
  'url': 'https://gitlab.com/ae-group/ae_shell',
84
- 'version': '0.3.12',
81
+ 'version': '0.3.14',
85
82
  'zip_safe': True,
86
83
  }
87
84
 
File without changes
File without changes