ae-shell 0.3.2__tar.gz → 0.3.3__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.2
3
+ Version: 0.3.3
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
@@ -63,15 +63,15 @@ Dynamic: provides-extra
63
63
  Dynamic: requires-python
64
64
  Dynamic: summary
65
65
 
66
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->
67
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
68
- # shell 0.3.2
66
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->
67
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->
68
+ # shell 0.3.3
69
69
 
70
70
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
71
71
  https://gitlab.com/ae-group/ae_shell)
72
72
  [![LatestPyPIrelease](
73
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release?logo=python)](
74
- https://gitlab.com/ae-group/ae_shell/-/tree/release)
73
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.3?logo=python)](
74
+ https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)
75
75
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
76
76
  https://pypi.org/project/ae-shell/#history)
77
77
 
@@ -1,12 +1,12 @@
1
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->
2
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
3
- # shell 0.3.2
1
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->
2
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->
3
+ # shell 0.3.3
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/release?logo=python)](
9
- https://gitlab.com/ae-group/ae_shell/-/tree/release)
8
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.3?logo=python)](
9
+ https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)
10
10
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
11
11
  https://pypi.org/project/ae-shell/#history)
12
12
 
@@ -182,6 +182,7 @@ this section includes various other utility functions and classes.
182
182
  - :data:`STDERR_BEG_MARKER`: marker used in the console output for the beginning of stderr output.
183
183
  - :data:`STDERR_END_MARKER`: marker used in the console output for the end of stderr output.
184
184
  """
185
+ # pylint: disable=too-many-lines
185
186
  import os
186
187
  import pprint
187
188
  import shlex
@@ -203,7 +204,7 @@ from ae.core import main_app_instance
203
204
  from ae.console import MAIN_SECTION_NAME, ConsoleApp # type: ignore
204
205
 
205
206
 
206
- __version__ = '0.3.2'
207
+ __version__ = '0.3.3'
207
208
 
208
209
 
209
210
  COMMIT_MSG_FILE_NAME = '.commit_msg.txt' #: name of the file containing the commit message
@@ -1203,7 +1204,7 @@ def sh_exit_if_git_err(err_code: int, command_line: str,
1203
1204
  main_app = get_main_app()
1204
1205
  git_debug = main_app.verbose
1205
1206
  git_trace_vars = ('GIT_TRACE', 'GIT_TRACE_PACK_ACCESS', 'GIT_TRACE_PACKET', 'GIT_TRACE_SETUP')
1206
- env_vars = {}
1207
+ env_vars = {'GIT_TERMINAL_PROMPT': "0"}
1207
1208
  if git_debug:
1208
1209
  env_vars['GIT_CURL_VERBOSE'] = "1"
1209
1210
  env_vars['GIT_MERGE_VERBOSITY'] = "5"
@@ -1212,7 +1213,7 @@ def sh_exit_if_git_err(err_code: int, command_line: str,
1212
1213
 
1213
1214
  cl_err = sh_exit_if_exec_err(err_code, command_line,
1214
1215
  extra_args=extra_args, lines_output=lines_output, exit_on_err=exit_on_err,
1215
- env_vars={**os.environ.copy(), **env_vars} if env_vars else None)
1216
+ env_vars={**os.environ, **env_vars})
1216
1217
 
1217
1218
  if log_files := sh_logs(log_enable_dir=log_enable_dir, log_name_prefix='git'):
1218
1219
  sh_log(command_line, extra_args=extra_args, cl_err=cl_err, lines_output=lines_output, log_file_paths=log_files)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ae_shell
3
- Version: 0.3.2
3
+ Version: 0.3.3
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
@@ -63,15 +63,15 @@ Dynamic: provides-extra
63
63
  Dynamic: requires-python
64
64
  Dynamic: summary
65
65
 
66
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->
67
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
68
- # shell 0.3.2
66
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->
67
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->
68
+ # shell 0.3.3
69
69
 
70
70
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](
71
71
  https://gitlab.com/ae-group/ae_shell)
72
72
  [![LatestPyPIrelease](
73
- https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release?logo=python)](
74
- https://gitlab.com/ae-group/ae_shell/-/tree/release)
73
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.3?logo=python)](
74
+ https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)
75
75
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](
76
76
  https://pypi.org/project/ae-shell/#history)
77
77
 
@@ -23,15 +23,15 @@ setup_kwargs = {
23
23
  'install_requires': [],
24
24
  'keywords': ['configuration', 'development', 'environment', 'productivity'],
25
25
  'license': 'GPL-3.0-or-later',
26
- 'long_description': ('<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.96 -->\n'
27
- '<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->\n'
28
- '# shell 0.3.2\n'
26
+ 'long_description': ('<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.97 -->\n'
27
+ '<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.19 -->\n'
28
+ '# shell 0.3.3\n'
29
29
  '\n'
30
30
  '[![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/develop?logo=python)](\n'
31
31
  ' https://gitlab.com/ae-group/ae_shell)\n'
32
32
  '[![LatestPyPIrelease](\n'
33
- ' https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release?logo=python)](\n'
34
- ' https://gitlab.com/ae-group/ae_shell/-/tree/release)\n'
33
+ ' https://img.shields.io/gitlab/pipeline/ae-group/ae_shell/release0.3.3?logo=python)](\n'
34
+ ' https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.3)\n'
35
35
  '[![PyPIVersions](https://img.shields.io/pypi/v/ae_shell)](\n'
36
36
  ' https://pypi.org/project/ae-shell/#history)\n'
37
37
  '\n'
@@ -108,7 +108,7 @@ setup_kwargs = {
108
108
  'Source': 'https://ae.readthedocs.io/en/latest/_modules/ae/shell.html'},
109
109
  'python_requires': '>=3.9',
110
110
  'url': 'https://gitlab.com/ae-group/ae_shell',
111
- 'version': '0.3.2',
111
+ 'version': '0.3.3',
112
112
  'zip_safe': True,
113
113
  }
114
114
 
File without changes
File without changes
File without changes
File without changes