Skip to content

Commit

Permalink
Prevent 'bin' folders to be taken as extern packages
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed May 20, 2024
1 parent 7208628 commit 2a53cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vendored.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def yield_top_level(name):
['backports', 'jaraco', 'zipp']
"""
vendor = Path(f"{name}/_vendor")
ignore = {"__pycache__", "__init__.py", ".ruff_cache"}
ignore = {"__pycache__", "__init__.py", ".ruff_cache", "bin"}

for item in sorted(vendor.iterdir()):
if item.name in ignore:
Expand Down

0 comments on commit 2a53cc1

Please sign in to comment.