Skip to content

Commit 09c9b65

Browse files
committed
add pycodestyle back
1 parent e46249e commit 09c9b65

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: '3.8'
3636
architecture: 'x64'
3737
- run: python -m pip install --upgrade pip setuptools jsonschema
38-
- run: pip install -e .[pylint,black,pyflakes]
38+
- run: pip install -e .[pylint,black,pycodestyle,pyflakes]
3939
- name: Pylint checks
4040
run: pylint pylsp test
4141
- name: Code style checks

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ all = [
3131
"black>=23.7.0,<24.0",
3232
"flake8>=5.0.0,<7",
3333
"mccabe>=0.7.0,<0.8.0",
34+
"pycodestyle>=2.9.0,<2.11.0",
3435
"pydocstyle>=6.3.0,<6.4.0",
3536
"pyflakes>=2.5.0,<3.1.0",
3637
"pylint>=2.5.0,<3",
@@ -42,6 +43,7 @@ autopep8 = ["autopep8>=1.6.0,<2.1.0"]
4243
black = ["black>=23.7.0,<24.0"]
4344
flake8 = ["flake8>=5.0.0,<7"]
4445
mccabe = ["mccabe>=0.7.0,<0.8.0"]
46+
pycodestyle = ["pycodestyle>=2.9.0,<2.11.0"]
4547
pydocstyle = ["pydocstyle>=6.3.0,<6.4.0"]
4648
pyflakes = ["pyflakes>=2.5.0,<3.1.0"]
4749
pylint = ["pylint>=2.5.0,<3"]

0 commit comments

Comments
 (0)