From d0aa5fddb710585c2849b175d62565d587d998ef Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 12 Aug 2015 12:20:28 -0700 Subject: [PATCH] 1.7.1 --- README.rst | 2 ++ setup.py | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index dd3337e..be3b349 100644 --- a/README.rst +++ b/README.rst @@ -608,6 +608,8 @@ new API in version 1.0.x Changelog --------- +- 1.7.1 [#183] Patch ``fetch_impl`` instead of the entire HTTPClient + class for Tornado (thanks @abhinav). - 1.7.0 [#177] Properly support coroutine/generator decoration. [#178] Support distribute (thanks @graingert). [#163] Make compatibility between python2 and python3 recorded cassettes more robust (thanks diff --git a/setup.py b/setup.py index 6f23a83..30e70fc 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ import pkg_resources long_description = open('README.rst', 'r').read() + class PyTest(TestCommand): def finalize_options(self): @@ -23,7 +24,7 @@ class PyTest(TestCommand): sys.exit(errno) -install_requires=['PyYAML', 'wrapt', 'six>=1.5'] +install_requires = ['PyYAML', 'wrapt', 'six>=1.5'] extras_require = { @@ -47,9 +48,10 @@ except Exception: if key.startswith(':'): install_requires.extend(value) + setup( name='vcrpy', - version='1.7.0', + version='1.7.1', description=( "Automatically mock your HTTP interactions to simplify and " "speed up testing"