Skip to content

Commit 2a53cc1

Browse files
committed
Prevent 'bin' folders to be taken as extern packages
1 parent 7208628 commit 2a53cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/vendored.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def yield_top_level(name):
173173
['backports', 'jaraco', 'zipp']
174174
"""
175175
vendor = Path(f"{name}/_vendor")
176-
ignore = {"__pycache__", "__init__.py", ".ruff_cache"}
176+
ignore = {"__pycache__", "__init__.py", ".ruff_cache", "bin"}
177177

178178
for item in sorted(vendor.iterdir()):
179179
if item.name in ignore:

0 commit comments

Comments
 (0)