From 477b2de76bd6418c15dd0c0f55732ba7594c7231 Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Fri, 13 Apr 2018 16:21:12 -0400 Subject: [PATCH] bump version --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 32a944c..68a2282 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,8 @@ from distutils.core import setup, Extension from distutils.command.build import build +VERSION='0.3' + class build_and_make_exec(build): def run(self): from distutils.ccompiler import new_compiler @@ -12,7 +14,7 @@ def run(self): comp.link_executable(['pfa/pfa.o'], 'pfa/pfai') build.run(self) -setup(name='pfa', packages=['pfa',], version='0.2', +setup(name='pfa', packages=['pfa',], version=VERSION, author = "M Stoeckl", author_email = "mstoeckl@u.rochester.edu", @@ -21,7 +23,7 @@ def run(self): description = "Very fast and consistent (if ugly) autoformatting for Python", url = "https://github.com/mstoeckl/python-fast-autoformat", - download_url = "https://github.com/mstoeckl/python-fast-autoformat/archive/0.2.tar.gz", + download_url = "https://github.com/mstoeckl/python-fast-autoformat/archive/"+VERSION+".tar.gz", long_description = open("README.md").read(),