mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
Fix yarl version requirements (#489)
This commit is contained in:
@@ -6,6 +6,7 @@ Changelog
|
|||||||
- Improve documentation about custom matchers (@gward)
|
- Improve documentation about custom matchers (@gward)
|
||||||
- Fix exception when body is empty (@keithprickett)
|
- Fix exception when body is empty (@keithprickett)
|
||||||
- Add `pytest-recording` to the documentation as an alternative Pytest plugin (@Stranger6667)
|
- Add `pytest-recording` to the documentation as an alternative Pytest plugin (@Stranger6667)
|
||||||
|
- Fix yarl and python3.5 version issue (@neozenith)
|
||||||
- 2.1.0 - Add a `rewind` method to reset a cassette (thanks @khamidou)
|
- 2.1.0 - Add a `rewind` method to reset a cassette (thanks @khamidou)
|
||||||
New error message with more details on why the cassette failed to play a request (thanks @arthurHamon2, @neozenith)
|
New error message with more details on why the cassette failed to play a request (thanks @arthurHamon2, @neozenith)
|
||||||
Handle connect tunnel URI (thanks @jeking3)
|
Handle connect tunnel URI (thanks @jeking3)
|
||||||
|
|||||||
3
setup.py
3
setup.py
@@ -28,7 +28,8 @@ install_requires = [
|
|||||||
"six>=1.5",
|
"six>=1.5",
|
||||||
'contextlib2; python_version=="2.7"',
|
'contextlib2; python_version=="2.7"',
|
||||||
'mock; python_version=="2.7"',
|
'mock; python_version=="2.7"',
|
||||||
'yarl; python_version>="3.5"',
|
'yarl; python_version>="3.6"',
|
||||||
|
'yarl<1.4; python_version=="3.5"',
|
||||||
]
|
]
|
||||||
|
|
||||||
excluded_packages = ["tests*"]
|
excluded_packages = ["tests*"]
|
||||||
|
|||||||
Reference in New Issue
Block a user