Skip to content

Commit

Permalink
Stop skipping setuptools in vendoring upgrades
Browse files Browse the repository at this point in the history
This ensures that we don't miss out on improvements and fixes in
newer versions of setuptools.
  • Loading branch information
pradyunsg committed Oct 10, 2022
1 parent b009697 commit 6218fd6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,6 @@ def pinned_requirements(path: Path) -> Iterator[Tuple[str, str]]:

vendor_txt = Path("src/pip/_vendor/vendor.txt")
for name, old_version in pinned_requirements(vendor_txt):
if name == "setuptools":
continue

# update requirements.txt
session.run("vendoring", "update", ".", name)

Expand Down

0 comments on commit 6218fd6

Please sign in to comment.