Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
_ committed Apr 13, 2018
1 parent 1bb61bf commit 477b2de
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 = "[email protected]",
Expand All @@ -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(),

Expand Down

0 comments on commit 477b2de

Please sign in to comment.