From c4e28a87367a7a678df66837e44f6173524f1188 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 18 Jun 2023 22:56:34 +0200 Subject: [PATCH] Setup: pin cx-Freeze to latest working version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 13b12251e276..bc3ed7e3bdac 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ # 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.9' import pkg_resources try: pkg_resources.require(requirement)