From dca720955dd8324c714eb474745df37884dae065 Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Wed, 31 Jul 2024 16:56:18 -0400 Subject: [PATCH] fix: remove setup.py from noxfile OMG mypy has a really awful error message for this!!! --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 56b514a4..b94ec4df 100644 --- a/noxfile.py +++ b/noxfile.py @@ -3,7 +3,7 @@ import nox PYTHON_ALL_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"] -PYTHON_MODULES = ["fuzzing", "pdfminer", "tools", "tests", "noxfile.py", "setup.py"] +PYTHON_MODULES = ["fuzzing", "pdfminer", "tools", "tests", "noxfile.py"] @nox.session