Skip to content

Commit 477b2de

Browse files
author
_
committed
bump version
1 parent 1bb61bf commit 477b2de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
from distutils.core import setup, Extension
33
from distutils.command.build import build
44

5+
VERSION='0.3'
6+
57
class build_and_make_exec(build):
68
def run(self):
79
from distutils.ccompiler import new_compiler
@@ -12,7 +14,7 @@ def run(self):
1214
comp.link_executable(['pfa/pfa.o'], 'pfa/pfai')
1315
build.run(self)
1416

15-
setup(name='pfa', packages=['pfa',], version='0.2',
17+
setup(name='pfa', packages=['pfa',], version=VERSION,
1618

1719
author = "M Stoeckl",
1820
author_email = "[email protected]",
@@ -21,7 +23,7 @@ def run(self):
2123

2224
description = "Very fast and consistent (if ugly) autoformatting for Python",
2325
url = "https://github.com/mstoeckl/python-fast-autoformat",
24-
download_url = "https://github.com/mstoeckl/python-fast-autoformat/archive/0.2.tar.gz",
26+
download_url = "https://github.com/mstoeckl/python-fast-autoformat/archive/"+VERSION+".tar.gz",
2527

2628
long_description = open("README.md").read(),
2729

0 commit comments

Comments
 (0)