From 2b4c7c011eef28401828f979f1005ad80bbf8709 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Fri, 10 Oct 2025 11:55:45 +0100 Subject: [PATCH] Typing import suggestion Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b9f5cfe06..3a72a0742 100644 --- a/setup.py +++ b/setup.py @@ -16,12 +16,12 @@ import subprocess import sys import warnings from collections.abc import Iterator -from typing import TYPE_CHECKING from pybind11.setup_helpers import ParallelCompile from setuptools import Extension, setup from setuptools.command.build_ext import build_ext +TYPE_CHECKING = False if TYPE_CHECKING: from setuptools import _BuildInfo