1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00
This commit is contained in:
Ivan Malison
2015-08-12 12:20:28 -07:00
parent e54aeadc68
commit d0aa5fddb7
2 changed files with 6 additions and 2 deletions

View File

@@ -608,6 +608,8 @@ new API in version 1.0.x
Changelog 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] - 1.7.0 [#177] Properly support coroutine/generator decoration. [#178]
Support distribute (thanks @graingert). [#163] Make compatibility Support distribute (thanks @graingert). [#163] Make compatibility
between python2 and python3 recorded cassettes more robust (thanks between python2 and python3 recorded cassettes more robust (thanks

View File

@@ -9,6 +9,7 @@ import pkg_resources
long_description = open('README.rst', 'r').read() long_description = open('README.rst', 'r').read()
class PyTest(TestCommand): class PyTest(TestCommand):
def finalize_options(self): def finalize_options(self):
@@ -23,7 +24,7 @@ class PyTest(TestCommand):
sys.exit(errno) sys.exit(errno)
install_requires=['PyYAML', 'wrapt', 'six>=1.5'] install_requires = ['PyYAML', 'wrapt', 'six>=1.5']
extras_require = { extras_require = {
@@ -47,9 +48,10 @@ except Exception:
if key.startswith(':'): if key.startswith(':'):
install_requires.extend(value) install_requires.extend(value)
setup( setup(
name='vcrpy', name='vcrpy',
version='1.7.0', version='1.7.1',
description=( description=(
"Automatically mock your HTTP interactions to simplify and " "Automatically mock your HTTP interactions to simplify and "
"speed up testing" "speed up testing"