From 0de1a65644ba5c4d3a1ac7d522bc0ae5666f0a49 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 24 Nov 2017 14:42:25 -0200 Subject: [PATCH] Update pluggy pin to pluggy>=0.5,<0.7 after pluggy-0.6 release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f586101ea..3eb38efe6 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def main(): # if _PYTEST_SETUP_SKIP_PLUGGY_DEP is set, skip installing pluggy; # used by tox.ini to test with pluggy master if '_PYTEST_SETUP_SKIP_PLUGGY_DEP' not in os.environ: - install_requires.append('pluggy>=0.5,<0.6') + install_requires.append('pluggy>=0.5,<0.7') if has_environment_marker_support(): extras_require[':python_version<"3.0"'] = ['funcsigs'] extras_require[':sys_platform=="win32"'] = ['colorama']