From aa761b841c7561ee014865d78ee1b3ab0a0aca7e Mon Sep 17 00:00:00 2001 From: ebanyas Date: Sun, 1 Sep 2024 09:48:01 -0700 Subject: [PATCH] Exclude build subpackages to prevent build/lib recursion (see https://github.com/pypa/setuptools/issues/4076) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 64e8a18..6b468b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,6 +78,7 @@ exclude = [ "_build", "buck-out", "build", + "build*", "dist", "node_modules", "site-packages",