We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf9844 commit 09b3833Copy full SHA for 09b3833
setup.py
@@ -43,7 +43,7 @@ def finalize_options(self):
43
def run(self):
44
try:
45
self.status('Removing previous builds…')
46
- rmtree(os.path.join(here, 'dist'))
+ rmtree(os.path.join(HERE, 'dist'))
47
except OSError:
48
pass
49
@@ -55,7 +55,7 @@ def run(self):
55
os.system('twine upload dist/*')
56
57
self.status('Pushing git tags…')
58
- os.system('git tag v{0}'.format(about['__version__']))
+ os.system('git tag v{0}'.format(version()))
59
os.system('git push --tags')
60
61
sys.exit()
0 commit comments