Add local pycache to clean target

This commit is contained in:
Ethan Paul 2021-11-24 22:58:02 -05:00
parent 1203806973
commit 566785f44f
No known key found for this signature in database
GPG Key ID: D0E2CBF1245E92BF
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ clean-py:
rm --recursive --force ./dist
rm --recursive --force ./build
rm --recursive --force ./*.egg-info
find ./ -type d -name __pycache__ -prune -exec rm --recursive --force {} \;
clean: clean-tox clean-py; ## Clean temp build/cache files and directories