From 8ac163e1e7043a615eeb38c63aa765abd2345692 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Thu, 18 Jun 2015 15:58:29 +0100 Subject: [PATCH] make automates all tests by default, version changed to 2.0 in anticipation of pypi --- Makefile | 5 +++-- setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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',