File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,20 @@ VCR.py will detect the absence of a cassette file and once again record
41
41
all HTTP interactions, which will update them to correspond to the new
42
42
API.
43
43
44
+ Support
45
+ -------
46
+
47
+ VCR.py works great with the following HTTP clients:
48
+
49
+ - requests
50
+ - aiohttp
51
+ - urllib3
52
+ - tornado
53
+ - urllib2
54
+ - boto
55
+ - boto3
56
+
57
+
44
58
License
45
59
=======
46
60
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
---------
3
+ - 1.10.0 Add support for aiohttp (thanks @lamenezes)
3
4
- 1.9.0 Add support for boto3 (thanks @desdm, @foorbarna). Fix deepcopy issue
4
5
for response headers when `decode_compressed_response ` is enabled (thanks
5
6
@nickdirienzo)
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def run_tests(self):
51
51
52
52
setup (
53
53
name = 'vcrpy' ,
54
- version = '1.9 .0' ,
54
+ version = '1.10 .0' ,
55
55
description = (
56
56
"Automatically mock your HTTP interactions to simplify and "
57
57
"speed up testing"
You can’t perform that action at this time.
0 commit comments