Skip to content

Commit a6d6cb6

Browse files
committed
fix: Ensure setuptools is installed for lint_setup_py
1 parent 5f2a7d1 commit a6d6cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def format(session):
136136
@nox.session(python=DEFAULT_PYTHON_VERSION)
137137
def lint_setup_py(session):
138138
"""Verify that setup.py is valid (including RST check)."""
139-
session.install("docutils", "pygments")
139+
session.install("docutils", "pygments". "setuptools")
140140
session.run("python", "setup.py", "check", "--restructuredtext", "--strict")
141141

142142

0 commit comments

Comments
 (0)