dsw-config 4.20.1__tar.gz → 4.21.1__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.
- {dsw_config-4.20.1/dsw_config.egg-info → dsw_config-4.21.1}/PKG-INFO +3 -3
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/build_info.py +4 -4
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/keys.py +2 -2
- {dsw_config-4.20.1 → dsw_config-4.21.1/dsw_config.egg-info}/PKG-INFO +3 -3
- {dsw_config-4.20.1 → dsw_config-4.21.1}/pyproject.toml +3 -3
- {dsw_config-4.20.1 → dsw_config-4.21.1}/LICENSE +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/README.md +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/__init__.py +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/logging.py +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/model.py +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/parser.py +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw/config/sentry.py +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw_config.egg-info/SOURCES.txt +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw_config.egg-info/dependency_links.txt +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw_config.egg-info/not-zip-safe +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw_config.egg-info/requires.txt +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/dsw_config.egg-info/top_level.txt +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/setup.cfg +0 -0
- {dsw_config-4.20.1 → dsw_config-4.21.1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsw-config
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.21.1
|
|
4
4
|
Summary: Library for DSW config manipulation
|
|
5
5
|
Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -11,11 +11,11 @@ Keywords: dsw,config,yaml,parser
|
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Topic :: Text Processing
|
|
17
17
|
Classifier: Topic :: Utilities
|
|
18
|
-
Requires-Python: <4,>=3.
|
|
18
|
+
Requires-Python: <4,>=3.12
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: PyYAML
|
|
@@ -9,9 +9,9 @@ BuildInfo = namedtuple(
|
|
|
9
9
|
)
|
|
10
10
|
|
|
11
11
|
BUILD_INFO = BuildInfo(
|
|
12
|
-
version='v4.
|
|
13
|
-
built_at='2025-
|
|
14
|
-
sha='
|
|
12
|
+
version='v4.21.1~4620e19',
|
|
13
|
+
built_at='2025-09-05 10:22:24Z',
|
|
14
|
+
sha='4620e195be99d0e5de9df8570098d61896478328',
|
|
15
15
|
branch='HEAD',
|
|
16
|
-
tag='v4.
|
|
16
|
+
tag='v4.21.1',
|
|
17
17
|
)
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import collections
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
T = typing.TypeVar('T')
|
|
7
6
|
|
|
8
7
|
|
|
@@ -71,7 +70,8 @@ class ConfigKeysMeta(type):
|
|
|
71
70
|
|
|
72
71
|
@classmethod
|
|
73
72
|
# pylint: disable-next=unused-argument
|
|
74
|
-
def __prepare__(mcs, name, bases,
|
|
73
|
+
def __prepare__(mcs, name: str, bases: tuple,
|
|
74
|
+
/, **kwargs) -> collections.abc.MutableMapping[str, object]:
|
|
75
75
|
return collections.OrderedDict()
|
|
76
76
|
|
|
77
77
|
def __init__(cls, name, bases, namespace):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dsw-config
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.21.1
|
|
4
4
|
Summary: Library for DSW config manipulation
|
|
5
5
|
Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -11,11 +11,11 @@ Keywords: dsw,config,yaml,parser
|
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Topic :: Text Processing
|
|
17
17
|
Classifier: Topic :: Utilities
|
|
18
|
-
Requires-Python: <4,>=3.
|
|
18
|
+
Requires-Python: <4,>=3.12
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: PyYAML
|
|
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = 'dsw-config'
|
|
7
|
-
version = "4.
|
|
7
|
+
version = "4.21.1"
|
|
8
8
|
description = 'Library for DSW config manipulation'
|
|
9
9
|
readme = 'README.md'
|
|
10
10
|
keywords = ['dsw', 'config', 'yaml', 'parser']
|
|
@@ -16,12 +16,12 @@ classifiers = [
|
|
|
16
16
|
'Development Status :: 5 - Production/Stable',
|
|
17
17
|
'License :: OSI Approved :: Apache Software License',
|
|
18
18
|
'Programming Language :: Python',
|
|
19
|
-
'Programming Language :: Python :: 3.11',
|
|
20
19
|
'Programming Language :: Python :: 3.12',
|
|
20
|
+
'Programming Language :: Python :: 3.13',
|
|
21
21
|
'Topic :: Text Processing',
|
|
22
22
|
'Topic :: Utilities',
|
|
23
23
|
]
|
|
24
|
-
requires-python = '>=3.
|
|
24
|
+
requires-python = '>=3.12, <4'
|
|
25
25
|
dependencies = [
|
|
26
26
|
'PyYAML',
|
|
27
27
|
'sentry-sdk',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|