ae-base 0.3.77__py3-none-any.whl → 0.3.78__py3-none-any.whl

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/base.py CHANGED
@@ -248,7 +248,7 @@ from types import ModuleType
248
248
  from typing import Any, Callable, Container, Generator, Iterable, MutableMapping, Optional, Union, cast
249
249
 
250
250
 
251
- __version__ = '0.3.77'
251
+ __version__ = '0.3.78'
252
252
 
253
253
 
254
254
  os_path_abspath = os.path.abspath
@@ -325,7 +325,7 @@ NAME_PARTS_SEP = '_' #: name parts separator char
325
325
  NOW_STR_FORMAT = "{sep}%Y%m%d{sep}%H%M%S{sep}%f" #: timestamp format of :func:`now_str`
326
326
 
327
327
  SKIPPED_MODULES = ('ae.base', 'ae.files', 'ae.paths', 'ae.dynamicod',
328
- 'ae.core', 'ae.console', 'ae.snell', 'ae.template',
328
+ 'ae.core', 'ae.console', 'ae.snell', 'ae.managed_files',
329
329
  'ae.gui', 'ae.gui.app', 'ae.gui.tours', 'ae.gui.utils',
330
330
  'ae.kivy', 'ae.kivy.apps', 'ae.kivy.behaviors', 'ae.kivy.i18n', 'ae.kivy.tours', 'ae.kivy.widgets',
331
331
  'ae.enaml_app', 'ae.toga_app', 'ae.pyglet_app', 'ae.pygobject_app', 'ae.dabo_app',
@@ -735,7 +735,7 @@ def late_env_var_resolver(env_vars: EnvVarsType, loaded_vars: EnvVarsType, late_
735
735
  :param env_vars: all cached environment variables (preferred to os.environ), will get substituted.
736
736
  also used to search&resolve env var values (if not found then searched in os.environ).
737
737
  :param loaded_vars: recently loaded environment variables, will get substituted.
738
- :param late_resolved: matches of loaded env vars to be resolve late (after all env vars got detected and
738
+ :param late_resolved: matches of loaded env vars to be resolved late (after all env vars got detected and
739
739
  loaded). the key of this dict is the name of the env variable which has other env vars
740
740
  in its values to be resolved/substituted. the item value of this dict is a list of
741
741
  matcher group tuples for each found env variable. the group/tuple items are
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ae_base
3
- Version: 0.3.77
3
+ Version: 0.3.78
4
4
  Summary: ae namespace module portion base: basic constants, helper functions and context managers
5
5
  Home-page: https://gitlab.com/ae-group/ae_base
6
6
  Author: AndiEcker
@@ -61,15 +61,15 @@ Dynamic: provides-extra
61
61
  Dynamic: requires-python
62
62
  Dynamic: summary
63
63
 
64
- <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
64
+ <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.103 -->
65
65
  <!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
66
- # base 0.3.77
66
+ # base 0.3.78
67
67
 
68
68
  [![GitLab develop](https://img.shields.io/gitlab/pipeline/ae-group/ae_base/develop?logo=python)](
69
69
  https://gitlab.com/ae-group/ae_base)
70
70
  [![LatestPyPIrelease](
71
- https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.77?logo=python)](
72
- https://gitlab.com/ae-group/ae_base/-/tree/release0.3.77)
71
+ https://img.shields.io/gitlab/pipeline/ae-group/ae_base/release0.3.78?logo=python)](
72
+ https://gitlab.com/ae-group/ae_base/-/tree/release0.3.78)
73
73
  [![PyPIVersions](https://img.shields.io/pypi/v/ae_base)](
74
74
  https://pypi.org/project/ae-base/#history)
75
75
 
@@ -117,7 +117,7 @@ following command in the root folder of this repository
117
117
  (ae_base):
118
118
 
119
119
  ```shell script
120
- pip install -e .[dev]
120
+ pip install --editable .[dev]
121
121
  ```
122
122
 
123
123
  the last command will install this module portion, along with the tools you need
@@ -0,0 +1,7 @@
1
+ ae/base.py,sha256=bSciSID7tf5zevcZJIS7sYmy2r83VE9Isy2n-eLq3AA,85252
2
+ ae_base-0.3.78.dist-info/licenses/LICENSE.md,sha256=ZFtyLe_GCk_BkY2wkEe5IayKMzl--c_2eOZxvEB7KmE,35003
3
+ ae_base-0.3.78.dist-info/METADATA,sha256=m2F7Ztg4LgxF7C933jj9jjPvlXe9AaC1J6DS7mzAWt4,5371
4
+ ae_base-0.3.78.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
+ ae_base-0.3.78.dist-info/top_level.txt,sha256=vUdgAslSmhZLXWU48fm8AG2BjVnkOWLco8rzuW-5zY0,3
6
+ ae_base-0.3.78.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
7
+ ae_base-0.3.78.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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.75 -->
2
2
  ### GNU GENERAL PUBLIC LICENSE
3
3
 
4
4
  Version 3, 29 June 2007
@@ -1,7 +0,0 @@
1
- ae/base.py,sha256=j-BwDNNg6pHLKNtD-9udK38cRzKpHKWJPK5IKsrhyFk,85246
2
- ae_base-0.3.77.dist-info/licenses/LICENSE.md,sha256=kUD_uLIvdgXtq4DzA176m6QB0-4WVJ8TBVxAByS3Wsw,35003
3
- ae_base-0.3.77.dist-info/METADATA,sha256=wsfPEpldrSfKuT6oO5AzhnMveZsdf5V9R1lq5xwK_kc,5363
4
- ae_base-0.3.77.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
- ae_base-0.3.77.dist-info/top_level.txt,sha256=vUdgAslSmhZLXWU48fm8AG2BjVnkOWLco8rzuW-5zY0,3
6
- ae_base-0.3.77.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
7
- ae_base-0.3.77.dist-info/RECORD,,