diff --git a/pyproject.toml b/pyproject.toml index 1c2f4b9044..210d67a987 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ jinxed = [ flake8 = "^3.7" autopep8 = "^1.4" coverage = "*" -cx_freeze = "^6.1" +cx_freeze = "=6.2" jedi = "^0.13" Jinja2 = "^2.11" pycodestyle = "^2.5.0" diff --git a/setup.py b/setup.py index 7199f82d1e..d4e865ae84 100644 --- a/setup.py +++ b/setup.py @@ -72,9 +72,9 @@ icon_path = pype_root / "igniter" / "pype.ico" executables = [ Executable("start.py", base=None, - target_name="pype_console", icon=icon_path.as_posix()), + targetName="pype_console", icon=icon_path.as_posix()), Executable("start.py", base=base, - target_name="pype_gui", icon=icon_path.as_posix()) + targetName="pype_gui", icon=icon_path.as_posix()) ] setup(