Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rkk committed Jun 25, 2016
1 parent aef92f9 commit f559390
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/vintel.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- mode: python -*-
import sys

app_version = 'vintel-1.2.1'

a = Analysis(['vintel.py'],
pathex=['z:\\mark\\code\\vintel\\src' if sys.platform == 'win32' else '/Users/mark/code/vintel/src'],
hiddenimports=[],
Expand Down Expand Up @@ -38,7 +40,7 @@ exe = EXE(pyz,
a.binaries,
a.zipfiles,
a.datas,
name=os.path.join('dist', 'vintel-1.1.3' + ('.exe' if sys.platform == 'win32' else '')),
name=os.path.join('dist', app_version + ('.exe' if sys.platform == 'win32' else '')),
debug=False,
strip=None,
upx=True,
Expand All @@ -48,5 +50,5 @@ exe = EXE(pyz,
# Build a .app if on OS X
if sys.platform == 'darwin':
app = BUNDLE(exe,
name='vintel-1.1.3.app',
name=app_version + '.app',
icon="icon.ico")

0 comments on commit f559390

Please sign in to comment.