From de1e6245eece2b51df15d42a49bf5a406cc71f78 Mon Sep 17 00:00:00 2001 From: Sam Gross Date: Fri, 1 Nov 2024 16:18:27 +0000 Subject: [PATCH] Link to setuptools issue --- distutils/command/build_ext.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distutils/command/build_ext.py b/distutils/command/build_ext.py index 8d3dd768..271378e5 100644 --- a/distutils/command/build_ext.py +++ b/distutils/command/build_ext.py @@ -335,7 +335,8 @@ def run(self): # noqa: C901 # The official Windows free threaded Python installer doesn't set # Py_GIL_DISABLED because its pyconfig.h is shared with the - # default build, so we need to define it here. + # default build, so we need to define it here + # (see pypa/setuptools#4662). if os.name == 'nt' and is_freethreaded(): self.compiler.define_macro('Py_GIL_DISABLED', '1')