Skip to content

Commit 6218fd6

Browse files
committed
Stop skipping setuptools in vendoring upgrades
This ensures that we don't miss out on improvements and fixes in newer versions of setuptools.
1 parent b009697 commit 6218fd6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

noxfile.py

-3
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,6 @@ def pinned_requirements(path: Path) -> Iterator[Tuple[str, str]]:
199199

200200
vendor_txt = Path("src/pip/_vendor/vendor.txt")
201201
for name, old_version in pinned_requirements(vendor_txt):
202-
if name == "setuptools":
203-
continue
204-
205202
# update requirements.txt
206203
session.run("vendoring", "update", ".", name)
207204

0 commit comments

Comments
 (0)