Merge pull request #7392 from tk0miya/7225_makefile

Fix #7225: release package contains .mypy_cache directory
This commit is contained in:
Takeshi KOMIYA 2020-03-28 22:25:29 +09:00 committed by GitHub
commit 7585afb620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ clean-backupfiles:
clean-generated:
find . -name '.DS_Store' -exec rm -f {} +
rm -rf Sphinx.egg-info/
rm -rf dists/
rm -rf dist/
rm -rf doc/_build/
rm -f sphinx/pycode/*.pickle
rm -f utils/*3.py*
@ -50,7 +50,7 @@ clean-buildfiles:
.PHONY: clean-mypyfiles
clean-mypyfiles:
rm -rf .mypy_cache/
rm -rf **/.mypy_cache/
.PHONY: style-check
style-check: