ae-base 0.3.37__tar.gz → 0.3.38__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.1
2
2
  Name: ae_base
3
- Version: 0.3.37
3
+ Version: 0.3.38
4
4
  Summary: ae namespace module portion base: basic constants, helper functions and context manager
5
5
  Home-page: https://gitlab.com/ae-group/ae_base
6
6
  Author: AndiEcker
@@ -53,17 +53,17 @@ Requires-Dist: twine; extra == "tests"
53
53
 
54
54
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae V0.3.94 -->
55
55
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
56
- # base 0.3.37
56
+ # base 0.3.38
57
57
 
58
58
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_base/develop?logo=python)](
59
59
  https://gitlab.com/ae-group/ae_base)
60
60
  [![LatestPyPIrelease](
61
- https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.36?logo=python)](
62
- https://gitlab.com/ae-group/ae_base/-/tree/release0.3.36)
61
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.37?logo=python)](
62
+ https://gitlab.com/ae-group/ae_base/-/tree/release0.3.37)
63
63
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_base)](
64
64
  https://pypi.org/project/ae-base/#history)
65
65
 
66
- >ae_base module 0.3.37.
66
+ >ae_base module 0.3.38.
67
67
 
68
68
  [![Coverage](https://ae-group.gitlab.io/ae_base/coverage.svg)](
69
69
  https://ae-group.gitlab.io/ae_base/coverage/index.html)
@@ -1,16 +1,16 @@
1
1
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae V0.3.94 -->
2
2
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
3
- # base 0.3.37
3
+ # base 0.3.38
4
4
 
5
5
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_base/develop?logo=python)](
6
6
  https://gitlab.com/ae-group/ae_base)
7
7
  [![LatestPyPIrelease](
8
- https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.36?logo=python)](
9
- https://gitlab.com/ae-group/ae_base/-/tree/release0.3.36)
8
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.37?logo=python)](
9
+ https://gitlab.com/ae-group/ae_base/-/tree/release0.3.37)
10
10
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_base)](
11
11
  https://pypi.org/project/ae-base/#history)
12
12
 
13
- >ae_base module 0.3.37.
13
+ >ae_base module 0.3.38.
14
14
 
15
15
  [![Coverage](https://ae-group.gitlab.io/ae_base/coverage.svg)](
16
16
  https://ae-group.gitlab.io/ae_base/coverage/index.html)
@@ -146,7 +146,7 @@ from inspect import getinnerframes, getouterframes, getsourcefile
146
146
  from types import ModuleType
147
147
  from typing import Any, Callable, Dict, Generator, Iterable, List, Optional, Tuple, Union, cast
148
148
 
149
- __version__ = '0.3.37'
149
+ __version__ = '0.3.38'
150
150
 
151
151
 
152
152
  DOCS_FOLDER = 'docs' #: project documentation root folder name
@@ -435,7 +435,8 @@ def load_dotenvs():
435
435
  .. hint:: call from main module of project/app in order to also load ``.env`` files in/above the project folder.
436
436
  """
437
437
  load_env_var_defaults(os.getcwd())
438
- load_env_var_defaults(os.path.dirname(stack_var('__file__', depth=2)))
438
+ if file_name := stack_var('__file__'):
439
+ load_env_var_defaults(os.path.dirname(os.path.abspath(file_name)))
439
440
 
440
441
 
441
442
  def load_env_var_defaults(start_dir: str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ae_base
3
- Version: 0.3.37
3
+ Version: 0.3.38
4
4
  Summary: ae namespace module portion base: basic constants, helper functions and context manager
5
5
  Home-page: https://gitlab.com/ae-group/ae_base
6
6
  Author: AndiEcker
@@ -53,17 +53,17 @@ Requires-Dist: twine; extra == "tests"
53
53
 
54
54
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae V0.3.94 -->
55
55
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.tpl_namespace_root V0.3.14 -->
56
- # base 0.3.37
56
+ # base 0.3.38
57
57
 
58
58
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_base/develop?logo=python)](
59
59
  https://gitlab.com/ae-group/ae_base)
60
60
  [![LatestPyPIrelease](
61
- https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.36?logo=python)](
62
- https://gitlab.com/ae-group/ae_base/-/tree/release0.3.36)
61
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.37?logo=python)](
62
+ https://gitlab.com/ae-group/ae_base/-/tree/release0.3.37)
63
63
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_base)](
64
64
  https://pypi.org/project/ae-base/#history)
65
65
 
66
- >ae_base module 0.3.37.
66
+ >ae_base module 0.3.38.
67
67
 
68
68
  [![Coverage](https://ae-group.gitlab.io/ae_base/coverage.svg)](
69
69
  https://ae-group.gitlab.io/ae_base/coverage/index.html)
File without changes
File without changes
File without changes
File without changes