We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dcd685 commit 3843075Copy full SHA for 3843075
.github/workflows/lint.yml
@@ -18,7 +18,7 @@ jobs:
18
run: |
19
python -m pip install --upgrade pip
20
pip install --editable .
21
- pip install '.[dev]'
+ pip install '.[lint]'
22
- name: Analysing the code with pylint
23
24
pylint $(git ls-files '*.py')
pyproject.toml
@@ -17,7 +17,8 @@ dependencies = [
17
"PyYAML>=6.0"
]
[project.optional-dependencies]
-lint = ['pre-commit', 'pylint', 'mypy']
+lint = ['pylint', 'mypy']
+dev = ['pre-commit']
[project.scripts]
beku = "beku:main"
0 commit comments