summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-11 22:28:07 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-11 22:28:07 -0400
commit4d5f2e9065ce2d9aa955cee0a0e93cf6826f3208 (patch)
tree7e8d62ae4e6d251ba79ecec99c70dad6872b6ca4
parentca0a7ab53011f0a05f5331184e8930d2f0b2b29e (diff)
downloadpython-coveragepy-git-4d5f2e9065ce2d9aa955cee0a0e93cf6826f3208.tar.gz
When making local kits, clean the cache to avoid confusion
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 233be419..8f244d01 100644
--- a/Makefile
+++ b/Makefile
@@ -65,6 +65,9 @@ winkit:
kit_local:
cp -v dist/* `awk -F "=" '/find-links/ {print $$2}' ~/.pip/pip.conf`
+ # pip caches wheels of things it has installed. Clean them out so we
+ # don't go crazy trying to figure out why our new code isn't installing.
+ find ~/Library/Caches/pip/wheels -name 'coverage-*' -delete
pypi:
python setup.py register