From 344c4714f2b2e871ddf688706e21969b3605f3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Swe=C3=B1a=20=28Swast=29?= Date: Thu, 23 Oct 2025 12:49:07 -0500 Subject: [PATCH] chore: Add setuptools to lint_setup_py session installation --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index f9c20c999c..8334fcb0e1 100644 --- a/noxfile.py +++ b/noxfile.py @@ -193,7 +193,7 @@ def format(session): @nox.session(python=DEFAULT_PYTHON_VERSION) def lint_setup_py(session): """Verify that setup.py is valid (including RST check).""" - session.install("docutils", "pygments") + session.install("docutils", "pygments", "setuptools") session.run("python", "setup.py", "check", "--restructuredtext", "--strict") session.install("twine", "wheel")