1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Fix yarl version requirements (#489)

This commit is contained in:
Josh Peak
2019-11-03 18:15:08 +11:00
committed by GitHub
parent 0d623aead5
commit d843d2a6c1
2 changed files with 3 additions and 1 deletions

View File

@@ -28,7 +28,8 @@ install_requires = [
"six>=1.5",
'contextlib2; 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*"]