diff --git a/Makefile b/Makefile index 20cbeb4e..bc6ee199 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ -.PHONY: flake8 test coverage +.PHONY: all flake8 test coverage +all: flake8 coverage flake8: - flake8 --exclude "test_*" --max-line-length=80 --count --statistics --exit-zero tqdm/ + flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/ test: nosetests tqdm -v diff --git a/setup.py b/setup.py index 2ec8bc99..612f934a 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name='tqdm', - version='1.0', + version='2.0', description='A Simple Python Progress Meter', license='MIT License', author='Noam Yorav-Raphael',