Release 1.1.2

* clean pyc etc more correct by using the reclean hack
This commit is contained in:
Chris Dent 2016-01-27 09:11:34 +00:00
parent 2f82521042
commit da5f55b29c
2 changed files with 13 additions and 4 deletions

View File

@ -1,4 +1,4 @@
.PHONY: test clean tagv pypi release docs
.PHONY: test clean reclean tagv pypi release docs
default:
@echo "Pick a target (e.g., clean, test)"
@ -13,6 +13,16 @@ clean:
rm -r *-bundle* || true
cd docs && make clean
reclean:
find wsgi_intercept test -name "*.py[co]" |xargs rm || true
find wsgi_intercept test -type d -name "__pycache__" |xargs rmdir || true
rm -r dist || true
rm -r build || true
rm -r wsgi_intercept.egg-info || true
rm *.bundle || true
rm -r *-bundle* || true
cd docs && make clean
test:
py.test --tb=short -x test
@ -31,5 +41,4 @@ pypi:
docs:
cd docs && $(MAKE) html
release: clean test tagv clean pypi
release: clean test tagv reclean pypi

View File

@ -120,7 +120,7 @@ Additional documentation is available on `Read The Docs`_.
"""
from __future__ import print_function
__version__ = '1.1.1'
__version__ = '1.1.2'
import sys