Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Prevent 'bin' folders to be taken as extern packages
  • Loading branch information
abravalheri committed May 20, 2024
commit 2a53cc1200ec4b14e08e84be3c042f8983dfb7d7
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