Skip to content

Commit 1466e7c

Browse files
committed
Don't upgrade setuptools when vendoring
Signed-off-by: Pradyun Gedam <[email protected]>
1 parent 8b4652e commit 1466e7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

noxfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,9 @@ def pinned_requirements(path):
168168

169169
vendor_txt = Path("src/pip/_vendor/vendor.txt")
170170
for name, old_version in pinned_requirements(vendor_txt):
171+
if name == "setuptools":
172+
continue
173+
171174
# update requirements.txt
172175
session.run("vendoring", "update", ".", name)
173176

0 commit comments

Comments
 (0)