Skip to content

Commit ff38b50

Browse files
committed
make changing the version easier
1 parent 12eca2c commit ff38b50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
long_description = open('README.md').read()
1414

1515

16-
16+
version = '0.2.0'
1717
setup(
1818

1919
name = 'gitconsensus',
2020

21-
version = '0.2.0',
21+
version = version,
2222
packages=find_packages(),
2323

2424
description = 'Automate Github Pull Requests using Reactions',
@@ -28,7 +28,7 @@
2828
author = 'Robert Hafner',
2929
author_email = '[email protected]',
3030
url = 'https://github.com/tedivm/gitconsensus',
31-
download_url = 'https://github.com/tedivm/gitconsensus/archive/v0.1.0.tar.gz',
31+
download_url = "https://github.com/tedivm/gitconsensus/archive/v%s.tar.gz" % (version),
3232
keywords = 'automation github consensus git',
3333

3434
classifiers = [

0 commit comments

Comments
 (0)