From 588ed30f267a77d16233256e5f832d32533b795d Mon Sep 17 00:00:00 2001 From: Konrad Weihmann <46938494+priv-kweihmann@users.noreply.github.com> Date: Fri, 11 Mar 2022 12:54:22 +0100 Subject: Allow mccabe 0.7.x (#5896) python version < 3.7 will still remain on mccabe 0.6.x, while newer version will pick mccabe 0.7.x release Closes #5878 Signed-off-by: Konrad Weihmann --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 8c148180f..1c235c535 100644 --- a/setup.cfg +++ b/setup.cfg @@ -50,7 +50,7 @@ install_requires = # see https://github.com/PyCQA/astroid/issues/1341 astroid>=2.9.2,<=2.10.0-dev0 isort>=4.2.5,<6 - mccabe>=0.6,<0.7 + mccabe>=0.6,<0.8 tomli>=1.1.0;python_version<"3.11" colorama;sys_platform=="win32" typing-extensions>=3.10.0;python_version<"3.10" -- cgit v1.2.1