Bump version to 4.0.4 RC
- Also update package.py to allow version postfixes without causing issues with Windows build.
This commit is contained in:
parent
d819719eca
commit
c661905350
|
@ -1,3 +1,3 @@
|
|||
__version__ = '4.0.3'
|
||||
__version__ = '4.0.4 RC'
|
||||
__appname__ = 'dupeGuru'
|
||||
|
||||
|
|
|
@ -117,7 +117,8 @@ def package_windows():
|
|||
app_version = get_module_version('core')
|
||||
arch = platform.architecture()[0]
|
||||
# Information to pass to pyinstaller and NSIS
|
||||
version_array = app_version.split('.')
|
||||
match = re.search('[0-9]+.[0-9]+.[0-9]+', app_version)
|
||||
version_array = match.group(0).split('.')
|
||||
match = re.search('[0-9]+', arch)
|
||||
bits = match.group(0)
|
||||
# include locale files if they are built otherwise exit as it will break
|
||||
|
|
Loading…
Reference in New Issue