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 49bfd37 commit 5bc987aCopy full SHA for 5bc987a
configure
@@ -35,7 +35,7 @@ DEV_REQUIREMENTS="--editable .[testing] --constraint requirements.txt --constrai
35
VIRTUALENV_DIR=venv
36
37
# Cleanable files and directories to delete with the --clean option
38
-CLEANABLE="build dist venv .cache .eggs"
+CLEANABLE="build dist venv .cache .eggs *.egg-info docs/_build/ pip-selfcheck.json"
39
40
# extra arguments passed to pip
41
PIP_EXTRA_ARGS=" "
@@ -167,6 +167,7 @@ clean() {
167
for cln in $CLEANABLE;
168
do rm -rf "${CFG_ROOT_DIR:?}/${cln:?}";
169
done
170
+ find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
171
set +e
172
exit
173
}
0 commit comments