Release 1.1.1

* Correct packaging errors that included pyc and pyo files.
This commit is contained in:
Chris Dent 2016-01-26 18:55:50 +00:00
parent 16e18ad7db
commit 2f82521042
2 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ default:
@echo "Pick a target (e.g., clean, test)"
clean:
find wsgi_intercept -name "*.pyc" |xargs rm || true
find test -name "*.pyc" |xargs rm || true
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

View File

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