From efd9a50095307c4ad169ccad04bdcb33529517db Mon Sep 17 00:00:00 2001 From: PhoenixBound Date: Sun, 12 Oct 2025 20:24:29 -0500 Subject: [PATCH] Remove extension module build step in pyinstaller spec @Vittorioux reported issues building with the newest version of setuptools, since v80.0 removed setuptools.sandbox and its run_setup function. Reportedly, the build worked even after removing that part of the code. This commit makes that change. --- CoilSnake.spec | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CoilSnake.spec b/CoilSnake.spec index a5a679b..d4112f8 100644 --- a/CoilSnake.spec +++ b/CoilSnake.spec @@ -7,10 +7,6 @@ import shutil import sys import sysconfig -from setuptools.sandbox import run_setup - -run_setup('setup.py', ['build_ext']) - debug = False # This logic is specific to setuptools. It may change in future versions, as it did in 62.1.0.