Update makefile now clean __pycache__

This commit is contained in:
Dmitriy Sokolov 2019-06-21 14:10:17 +03:00
parent 24babafa85
commit ec7d839793
No known key found for this signature in database
GPG Key ID: DE2C98901898AB74
1 changed files with 1 additions and 2 deletions

View File

@ -16,8 +16,7 @@ pre-release: sdist wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . | grep -E '(__pycache__|\.pyc|\.pyo$)' | xargs rm -rf
rm -rf build
rm -rf dist
rm -rf *.egg-info