Skip to content

Commit c86f087

Browse files
chore: remove pylama since it's redundant and unmaintained
1 parent 2072640 commit c86f087

4 files changed

Lines changed: 1 addition & 9 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
token: ${{ secrets.CODECOV_TOKEN }}
3636
- name: Run lint
3737
run: |
38-
pip install black pycodestyle pylama pylint flake8 mypy pydocstyle vulture pytest ruff setuptools
38+
pip install black pycodestyle pylint flake8 mypy pydocstyle vulture pytest ruff
3939
sudo npm install -g pyright
4040
make lint

Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,6 @@ code-count: ## Count the code
8383
else echo "SKIPPED. Run 'brew install cloc' first." >&2 ; fi
8484

8585
code-lint: code-style ## Lint the code
86-
@echo Pylama...
87-
@if type pylama >/dev/null 2>&1 ; then pylama *.py $(SRC_CORE)/*.py $(SRC_TEST)/*.py ; \
88-
else echo "SKIPPED. Run '$(PIP) install pylama' first." >&2 ; fi
8986
@echo Pylint...
9087
@if type $(PIPENV) >/dev/null 2>&1 ; then $(PIPENV) run pylint -sn *.py $(SRC_CORE) $(SRC_TEST) ; \
9188
else echo "SKIPPED. Run '$(PIP) install pylint' first." >&2 ; fi

Pipfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ flake8 = "*"
1313
mypy = "*"
1414
pycodestyle = "*"
1515
pydocstyle = "*"
16-
pylama = "*"
1716
pylint = "*"
1817
pyright = "*"
1918
pytest = "*"
2019
pytest-cov = "*"
2120
ruff = "*"
22-
setuptools = "*"
2321
vulture = "*"
2422

2523
[requires]

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ max-line-length = 88
1313
max-complexity = 10
1414
ignore = E501,E203,W503,E231,E241,E202
1515

16-
[pylama]
17-
ignore = E501,E203,W503,E231,E241,E202
18-
1916
[pylint]
2017
disable=C0412
2118

0 commit comments

Comments
 (0)