Skip to content

Commit f219252

Browse files
committed
Updated the Windows installer script and template to conform
with the new versioning and naming conventions for binary distribs (Issue 68).
1 parent 0290ea5 commit f219252

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cefpython/cef1/windows/installer/innosetup.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ UsePreviousGroup = yes
2828

2929
SourceDir = %(BINARIES_DIR)s
3030
OutputDir = %(INSTALLER_DIR)s\Output
31-
OutputBaseFilename = %(PACKAGE_NAME)s_%(APP_VERSION)s_py%(PYTHON_VERSION_NODOT)s_win32_installer
31+
OutputBaseFilename = %(PACKAGE_NAME)s-%(APP_VERSION)s-win32-py%(PYTHON_VERSION_NODOT)s
3232

3333
UninstallFilesDir = {app}\%(PACKAGE_NAME)s
3434
LicenseFile = %(BINARIES_DIR)s\LICENSE.txt

cefpython/cef1/windows/installer/make_installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def main():
1616
parser.add_argument("-v", "--version", help="cefpython version",
1717
required=True)
1818
args = parser.parse_args()
19-
assert re.search(r"^(v\d+)|(\d+\.\d+)$", args.version), (
19+
assert re.search(r"^(\d+\.\d+)$", args.version), (
2020
"Invalid version string")
2121

2222
vars = {}

0 commit comments

Comments
 (0)