From 183ed3034e7566a3447195466d3f43ce20a21f4d Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Thu, 11 Feb 2021 22:33:08 +0100 Subject: [PATCH] downgrade cx_freeze to 6.2 --- pyproject.toml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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(