From 986773c814fcc1b15cf73e0f487af419b0dfb7e0 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Wed, 11 Nov 2015 13:39:56 +0800 Subject: [PATCH] bump version to 0.4 --- nvchecker/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nvchecker/__init__.py b/nvchecker/__init__.py index 03a33a6..58d168b 100644 --- a/nvchecker/__init__.py +++ b/nvchecker/__init__.py @@ -1 +1 @@ -__version__ = '0.4dev' +__version__ = '0.4' diff --git a/setup.py b/setup.py index aacf290..17cde57 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( version = nvchecker.__version__, packages = find_packages(exclude=["tests"]), install_requires = ['tornado>=4.1', 'setuptools'], - tests_require=[ + tests_require = [ 'pytest', 'flaky', ], @@ -20,7 +20,7 @@ setup( 'nvcmp = nvchecker.tools:cmp', ], }, - package_data={'nvchecker': ['source/vcs.sh']}, + package_data = {'nvchecker': ['source/vcs.sh']}, author = 'lilydjwg', author_email = 'lilydjwg@gmail.com',