From 2f825210420668de08066f6db574a148184c85b0 Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Tue, 26 Jan 2016 18:55:50 +0000 Subject: [PATCH] Release 1.1.1 * Correct packaging errors that included pyc and pyo files. --- Makefile | 4 ++-- wsgi_intercept/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4a4249b..6297461 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/wsgi_intercept/__init__.py b/wsgi_intercept/__init__.py index d5fc50c..1bb6d52 100644 --- a/wsgi_intercept/__init__.py +++ b/wsgi_intercept/__init__.py @@ -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