Skip to content

Commit

Permalink
Add pylint to default linters
Browse files Browse the repository at this point in the history
flake8: Remove direct dependency in yala[all]
  • Loading branch information
cemsbr committed Nov 29, 2019
1 parent 6a3c0cc commit 1432c31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@
'docopt',
'isort',
'pycodestyle',
'pylint',
],
extras_require={
'all': [
'flake8',
'mypy',
'pydocstyle',
'pyflakes',
'pylint',
'radon',
],
'flake8': ['flake8'],
Expand Down
2 changes: 1 addition & 1 deletion yala/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging.config
from pathlib import Path

__version__ = '2.1.0'
__version__ = '2.2.0'

CONFIG_PATH = Path(__file__).parent / 'logging.ini'
logging.config.fileConfig(str(CONFIG_PATH), disable_existing_loggers=False)

0 comments on commit 1432c31

Please sign in to comment.