mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 09:13: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:
2
setup.py
2
setup.py
@@ -28,7 +28,7 @@ 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.5"',
|
||||||
]
|
]
|
||||||
|
|
||||||
excluded_packages = ["tests*"]
|
excluded_packages = ["tests*"]
|
||||||
|
|||||||
Reference in New Issue
Block a user