mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
Fixed version of six dependency.
`from six.moves.http_client import HTTPConnection` fails before version 1.5.0 of six. (on Python 2.7, at least.)
This commit is contained in:
2
setup.py
2
setup.py
@@ -29,7 +29,7 @@ setup(
|
|||||||
author_email='me@kevinmccarthy.org',
|
author_email='me@kevinmccarthy.org',
|
||||||
url='https://github.com/kevin1024/vcrpy',
|
url='https://github.com/kevin1024/vcrpy',
|
||||||
packages=find_packages(exclude=("tests*",)),
|
packages=find_packages(exclude=("tests*",)),
|
||||||
install_requires=['PyYAML', 'mock', 'six', 'contextlib2',
|
install_requires=['PyYAML', 'mock', 'six>=1.5', 'contextlib2',
|
||||||
'wrapt', 'backport_collections'],
|
'wrapt', 'backport_collections'],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
tests_require=['pytest', 'mock', 'pytest-localserver'],
|
tests_require=['pytest', 'mock', 'pytest-localserver'],
|
||||||
|
|||||||
Reference in New Issue
Block a user