8000 Delete all temporary files before release · flask-api/flask-api@6c87203 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c87203

Browse files
committed
Delete all temporary files before release
1 parent 799d8f5 commit 6c87203

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

flask_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from flask_api.app import FlaskAPI
22

3-
__version__ = '0.6.6'
3+
__version__ = '0.6.6.post1'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def get_package_data(package):
5656

5757

5858
if sys.argv[-1] == 'publish':
59+
os.system("git clean -xdf")
5960
os.system("python setup.py sdist upload")
6061
args = {'version': get_version(package)}
6162
print("You probably want to also tag the version now:")

0 commit comments

Comments
 (0)
0