envoy.code.check 0.6.2__tar.gz → 0.6.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.
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/PKG-INFO +2 -3
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/PKG-INFO +2 -3
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/requires.txt +1 -2
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/setup.py +2 -3
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/MANIFEST.in +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/backend_shim.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/__init__.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/__init__.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/base.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/changelog.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/checker.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/extensions.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/flake8.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/glint.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/gofmt.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/rst.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/runtime_guards.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/shellcheck.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/yamllint.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/yapf.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/checker.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/cmd.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/exceptions.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/interface.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/py.typed +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/typing.py +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/SOURCES.txt +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/dependency_links.txt +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/entry_points.txt +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/namespace_packages.txt +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/top_level.txt +0 -0
- {envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: envoy.code.check
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.3
|
|
4
4
|
Summary: Code checker used in Envoy proxy CI
|
|
5
5
|
Home-page: https://github.com/envoyproxy/toolshed/tree/main/py/envoy.code.check
|
|
6
6
|
Author: Ryan Northey
|
|
@@ -24,12 +24,10 @@ Requires-Python: >=3.12
|
|
|
24
24
|
Requires-Dist: abstracts>=0.2.0
|
|
25
25
|
Requires-Dist: aio.core>=0.11.1
|
|
26
26
|
Requires-Dist: aio.run.checker>=0.6.1
|
|
27
|
-
Requires-Dist: envoy.base.utils==0.6.4-dev
|
|
28
27
|
Requires-Dist: envoy.base.utils>=0.6.3
|
|
29
28
|
Requires-Dist: flake8>=6.1.0
|
|
30
29
|
Requires-Dist: packaging>=23.0
|
|
31
30
|
Requires-Dist: pep8-naming>=0.13.3
|
|
32
|
-
Requires-Dist: types-pyyaml==6.0.12.20260508
|
|
33
31
|
Requires-Dist: yamllint>=1.32.0
|
|
34
32
|
Requires-Dist: yapf>=0.40.2
|
|
35
33
|
Provides-Extra: test
|
|
@@ -43,6 +41,7 @@ Requires-Dist: flake8>=6.1.0; extra == "lint"
|
|
|
43
41
|
Provides-Extra: types
|
|
44
42
|
Requires-Dist: mypy>=1.6.0; extra == "types"
|
|
45
43
|
Requires-Dist: mypy-abstracts>=0.1.1; extra == "types"
|
|
44
|
+
Requires-Dist: types-pyyaml; extra == "types"
|
|
46
45
|
Provides-Extra: publish
|
|
47
46
|
Requires-Dist: wheel>=0.41.0; extra == "publish"
|
|
48
47
|
Dynamic: author
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: envoy.code.check
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.3
|
|
4
4
|
Summary: Code checker used in Envoy proxy CI
|
|
5
5
|
Home-page: https://github.com/envoyproxy/toolshed/tree/main/py/envoy.code.check
|
|
6
6
|
Author: Ryan Northey
|
|
@@ -24,12 +24,10 @@ Requires-Python: >=3.12
|
|
|
24
24
|
Requires-Dist: abstracts>=0.2.0
|
|
25
25
|
Requires-Dist: aio.core>=0.11.1
|
|
26
26
|
Requires-Dist: aio.run.checker>=0.6.1
|
|
27
|
-
Requires-Dist: envoy.base.utils==0.6.4-dev
|
|
28
27
|
Requires-Dist: envoy.base.utils>=0.6.3
|
|
29
28
|
Requires-Dist: flake8>=6.1.0
|
|
30
29
|
Requires-Dist: packaging>=23.0
|
|
31
30
|
Requires-Dist: pep8-naming>=0.13.3
|
|
32
|
-
Requires-Dist: types-pyyaml==6.0.12.20260508
|
|
33
31
|
Requires-Dist: yamllint>=1.32.0
|
|
34
32
|
Requires-Dist: yapf>=0.40.2
|
|
35
33
|
Provides-Extra: test
|
|
@@ -43,6 +41,7 @@ Requires-Dist: flake8>=6.1.0; extra == "lint"
|
|
|
43
41
|
Provides-Extra: types
|
|
44
42
|
Requires-Dist: mypy>=1.6.0; extra == "types"
|
|
45
43
|
Requires-Dist: mypy-abstracts>=0.1.1; extra == "types"
|
|
44
|
+
Requires-Dist: types-pyyaml; extra == "types"
|
|
46
45
|
Provides-Extra: publish
|
|
47
46
|
Requires-Dist: wheel>=0.41.0; extra == "publish"
|
|
48
47
|
Dynamic: author
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
abstracts>=0.2.0
|
|
2
2
|
aio.core>=0.11.1
|
|
3
3
|
aio.run.checker>=0.6.1
|
|
4
|
-
envoy.base.utils==0.6.4-dev
|
|
5
4
|
envoy.base.utils>=0.6.3
|
|
6
5
|
flake8>=6.1.0
|
|
7
6
|
packaging>=23.0
|
|
8
7
|
pep8-naming>=0.13.3
|
|
9
|
-
types-pyyaml==6.0.12.20260508
|
|
10
8
|
yamllint>=1.32.0
|
|
11
9
|
yapf>=0.40.2
|
|
12
10
|
|
|
@@ -26,3 +24,4 @@ pytest-patches>=0.1.0
|
|
|
26
24
|
[types]
|
|
27
25
|
mypy>=1.6.0
|
|
28
26
|
mypy-abstracts>=0.1.1
|
|
27
|
+
types-pyyaml
|
|
@@ -41,6 +41,7 @@ setup(**{
|
|
|
41
41
|
'types': [
|
|
42
42
|
'mypy>=1.6.0',
|
|
43
43
|
'mypy-abstracts>=0.1.1',
|
|
44
|
+
'types-pyyaml',
|
|
44
45
|
],
|
|
45
46
|
'publish': [
|
|
46
47
|
'wheel>=0.41.0',
|
|
@@ -50,12 +51,10 @@ setup(**{
|
|
|
50
51
|
'abstracts>=0.2.0',
|
|
51
52
|
'aio.core>=0.11.1',
|
|
52
53
|
'aio.run.checker>=0.6.1',
|
|
53
|
-
'envoy.base.utils==0.6.4-dev',
|
|
54
54
|
'envoy.base.utils>=0.6.3',
|
|
55
55
|
'flake8>=6.1.0',
|
|
56
56
|
'packaging>=23.0',
|
|
57
57
|
'pep8-naming>=0.13.3',
|
|
58
|
-
'types-pyyaml==6.0.12.20260508',
|
|
59
58
|
'yamllint>=1.32.0',
|
|
60
59
|
'yapf>=0.40.2',
|
|
61
60
|
),
|
|
@@ -123,5 +122,5 @@ Links
|
|
|
123
122
|
),
|
|
124
123
|
'python_requires': '>=3.12',
|
|
125
124
|
'url': 'https://github.com/envoyproxy/toolshed/tree/main/py/envoy.code.check',
|
|
126
|
-
'version': '0.6.
|
|
125
|
+
'version': '0.6.3',
|
|
127
126
|
})
|
|
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
|
{envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy/code/check/abstract/runtime_guards.py
RENAMED
|
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
|
{envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{envoy_code_check-0.6.2 → envoy_code_check-0.6.3}/envoy.code.check.egg-info/namespace_packages.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|