From 8e98184d579fc801e0af62a479c512f8c7a0f8bb Mon Sep 17 00:00:00 2001 From: Felddy Date: Thu, 17 Oct 2019 14:59:27 -0400 Subject: [PATCH] Apply workaround for ansible-lint error. See: https://github.com/ansible/ansible-lint/issues/590 --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb246c4e..2100efea 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,15 @@ def package_vars(version_file): py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")], include_package_data=True, install_requires=["docopt", "setuptools"], - extras_require={"test": ["pre-commit", "pytest", "pytest-cov", "coveralls"]}, + extras_require={ + "test": [ + "pre-commit", + "pytest", + "pytest-cov", + "coveralls", + "virtualenv==16.3.0", + ] + }, # Conveniently allows one to run the CLI tool as `example` entry_points={"console_scripts": ["example = example.example:main"]}, )