Skip to content

Commit 75b5377

Browse files
committed
libs: Add envoy.code.check[changelog]
Signed-off-by: Ryan Northey <ryan@synca.io>
1 parent f02b309 commit 75b5377

File tree

12 files changed

+780
-10
lines changed

12 files changed

+780
-10
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,10 @@ pypi: https://pypi.org/project/envoy.code.check
145145

146146
- [abstracts](https://pypi.org/project/abstracts) >=0.0.12
147147
- [aio.core](https://pypi.org/project/aio.core) >=0.8.2
148-
- [aio.run.checker](https://pypi.org/project/aio.run.checker) >=0.5.2
149-
- [envoy.base.utils](https://pypi.org/project/envoy.base.utils) >=0.1.0
148+
- [aio.run.checker](https://pypi.org/project/aio.run.checker) >=0.5.3
149+
- [envoy.base.utils](https://pypi.org/project/envoy.base.utils) >=0.2.4
150150
- [flake8](https://pypi.org/project/flake8)
151+
- [packaging](https://pypi.org/project/packaging)
151152
- [pep8-naming](https://pypi.org/project/pep8-naming)
152153
- [yapf](https://pypi.org/project/yapf)
153154

deps/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ aiohttp
1010
colorama
1111
coloredlogs
1212
docutils~=0.16.0
13-
envoy.base.utils>=0.1.1
13+
envoy.base.utils>=0.2.4
1414
envoy.distribution.distrotest>=0.0.7
1515
envoy.distribution.release>=0.0.7
1616
envoy.distribution.repo>=0.0.5

envoy.code.check/envoy/code/check/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ pytooling_library(
77
"//deps:aio.run.checker",
88
"//deps:envoy.base.utils",
99
"//deps:flake8",
10+
"//deps:packaging",
1011
"//deps:yapf",
1112
],
1213
sources=[
1314
"__init__.py",
1415
"abstract/__init__.py",
1516
"abstract/base.py",
17+
"abstract/changelog.py",
1618
"abstract/checker.py",
1719
"abstract/extensions.py",
1820
"abstract/flake8.py",

envoy.code.check/envoy/code/check/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
from . import abstract, exceptions, typing
33
from .abstract import (
4+
AChangelogChangesChecker,
5+
AChangelogCheck,
6+
AChangelogStatus,
47
ACodeCheck,
58
ACodeChecker,
69
AExtensionsCheck,
@@ -10,6 +13,9 @@
1013
AShellcheckCheck,
1114
AYapfCheck)
1215
from .checker import (
16+
ChangelogChangesChecker,
17+
ChangelogCheck,
18+
ChangelogStatus,
1319
CodeChecker,
1420
ExtensionsCheck,
1521
Flake8Check,
@@ -22,6 +28,9 @@
2228

2329
__all__ = (
2430
"abstract",
31+
"AChangelogChangesChecker",
32+
"AChangelogCheck",
33+
"AChangelogStatus",
2534
"ACodeCheck",
2635
"ACodeChecker",
2736
"AExtensionsCheck",
@@ -30,6 +39,9 @@
3039
"AGlintCheck",
3140
"AShellcheckCheck",
3241
"AYapfCheck",
42+
"ChangelogChangesChecker",
43+
"ChangelogCheck",
44+
"ChangelogStatus",
3345
"checker",
3446
"CodeChecker",
3547
"exceptions",

envoy.code.check/envoy/code/check/abstract/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11

22
from .base import ACodeCheck, AFileCodeCheck
3+
from .changelog import (
4+
AChangelogCheck,
5+
AChangelogChangesChecker,
6+
AChangelogStatus)
37
from .checker import ACodeChecker
48
from .extensions import AExtensionsCheck
59
from .flake8 import AFlake8Check
@@ -13,10 +17,14 @@
1317
flake8,
1418
glint,
1519
shellcheck,
20+
changelog,
1621
yapf)
1722

1823

1924
__all__ = (
25+
"AChangelogChangesChecker",
26+
"AChangelogCheck",
27+
"AChangelogStatus",
2028
"ACodeCheck",
2129
"ACodeChecker",
2230
"AExtensionsCheck",
@@ -31,4 +39,5 @@
3139
"glint",
3240
"extensions",
3341
"shellcheck",
42+
"changelog",
3443
"yapf")

0 commit comments

Comments
 (0)