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

Fix Python version for extra requirement YARL

This was excluded when Python 3.4 support was dropped in #435
This commit is contained in:
Bruno Alla
2019-07-08 13:29:04 +01:00
committed by GitHub
parent a17624a464
commit 41e174ccb6

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*"]