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

Merge pull request #455 from browniebroke/patch-1

Fix Python version for extra requirement YARL
This commit is contained in:
Arthur Hamon
2019-07-11 13:08:54 +02:00
committed by GitHub

View File

@@ -28,7 +28,7 @@ install_requires = [
'six>=1.5',
'contextlib2; python_version=="2.7"',
'mock; python_version=="2.7"',
'yarl; python_version>"3.5"',
'yarl; python_version>="3.5"',
]
excluded_packages = ["tests*"]