downgrade cx_freeze to 6.2

This commit is contained in:
Milan Kolar 2021-02-11 22:33:08 +01:00
parent 3d91594527
commit 183ed3034e
2 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -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(