From 9eb2d3ea3ec394ae670eaade8d2a373516f59f6a Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Sun, 28 May 2023 12:32:02 +0200 Subject: [PATCH] Setup: pin cx-Freeze version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 13b12251e2..5415d08cd7 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from pathlib import Path # This is a bit jank. We need cx-Freeze to be able to run anything from this script, so install it try: - requirement = 'cx-Freeze>=6.14.7' + requirement = 'cx-Freeze==6.14.7' import pkg_resources try: pkg_resources.require(requirement)