From d8fb853fa7e156e08c84673372a1b5c9820d856c Mon Sep 17 00:00:00 2001 From: Carlos Eduardo Moreira dos Santos Date: Fri, 17 Nov 2017 18:06:41 -0200 Subject: [PATCH] Version 1.3.2 --- requirements/dev.txt | 2 +- setup.py | 2 +- yala/main.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements/dev.txt b/requirements/dev.txt index c008588..3a278ac 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -19,7 +19,7 @@ mando==0.6.4 # via radon mccabe==0.6.1 # via flake8, pylint pip-tools==1.10.1 pluggy==0.5.2 # via tox -py==1.4.34 # via tox +py==1.5.2 # via tox pycodestyle==2.3.1 # via flake8 pydocstyle==2.1.1 pyflakes==1.6.0 # via flake8 diff --git a/setup.py b/setup.py index 13f9f08..777b1f7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='yala', - version='1.3.1', + version='1.3.2', description='Yet Another Linter Aggregator', long_description=LONG_DESC, url='https://github.com/cemsbr/yala', diff --git a/yala/main.py b/yala/main.py index 78f7fbd..497a6ab 100644 --- a/yala/main.py +++ b/yala/main.py @@ -93,5 +93,5 @@ def _parse_linter(self, linter): def main(): """Entry point for the console script.""" - args = docopt(__doc__, version='1.3.1') + args = docopt(__doc__, version='1.3.2') Main().run(args)