Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 4d1904b

Browse files
committed
Update noxfile.py
1 parent a315acc commit 4d1904b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def lint(session):
150150
Returns a failure if the linters find linting errors or sufficiently
151151
serious code quality issues.
152152
"""
153-
session.install(FLAKE8_VERSION, BLACK_VERSION, "setuptools")
153+
session.install(FLAKE8_VERSION, BLACK_VERSION)
154154
session.run(
155155
"black",
156156
"--check",
@@ -192,7 +192,7 @@ def format(session):
192192
@nox.session(python=DEFAULT_PYTHON_VERSION)
193193
def lint_setup_py(session):
194194
"""Verify that setup.py is valid (including RST check)."""
195-
session.install("docutils", "pygments")
195+
session.install("docutils", "pygments", "setuptools")
196196
session.run("python", "setup.py", "check", "--restructuredtext", "--strict")
197197

198198

0 commit comments

Comments
 (0)