Skip to content

Commit 6cd34e9

Browse files
committed
setup rmtree fix
1 parent 71697e8 commit 6cd34e9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

django_petra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'Django Petra'
2-
__version__ = '0.0.01'
2+
__version__ = '0.0.3'
33
__author__ = 'Mostafa'
44

55
# Version synonym

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ def get_version(package):
2121
print("Try using `pip install -U twine wheel`.\nExiting.")
2222
sys.exit()
2323
os.system("twine upload dist/*")
24-
# print("You probably want to also tag the version now:")
25-
# print(" git tag -a %s -m 'version %s'" % (version, version))
26-
# print(" git push --tags")
27-
# shutil.rmtree('dist')
28-
# shutil.rmtree('build')
29-
# shutil.rmtree('django-petra.egg-info')
24+
print("You probably want to also tag the version now:")
25+
print(" git tag -a %s -m 'version %s'" % (version, version))
26+
print(" git push --tags")
27+
shutil.rmtree('dist')
28+
shutil.rmtree('build')
29+
shutil.rmtree('django_petra.egg-info')
3030
sys.exit()
3131

3232
def read(f):

0 commit comments

Comments
 (0)