We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d5c7d5 commit dbc6471Copy full SHA for dbc6471
tools/vendored.py
@@ -105,7 +105,8 @@ def clean(vendor):
105
Remove all files out of the vendor directory except the meta
106
data (as pip uninstall doesn't support -t).
107
"""
108
- remove_all(path for path in vendor.glob('*') if path.basename() != 'vendored.txt')
+ ignored = ['vendored.txt', 'ruff.toml']
109
+ remove_all(path for path in vendor.glob('*') if path.basename() not in ignored)
110
111
112
def install(vendor):
0 commit comments