From b48623dbdbf9456357164ad176a57f57c1381594 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Wed, 15 Jun 2016 11:47:47 -0500 Subject: [PATCH] Update mccabe and pyflakes constraints --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 40372e3..ae32b06 100644 --- a/setup.py +++ b/setup.py @@ -49,9 +49,9 @@ setup( url="https://gitlab.com/pycqa/flake8", packages=["flake8", "flake8.tests"], install_requires=[ - "pyflakes >= 0.8.1, < 1.2", + "pyflakes >= 0.8.1, < 1.3, != 1.2.0, != 1.2.1, != 1.2.2", "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2", - "mccabe >= 0.2.1, < 0.5", + "mccabe >= 0.2.1, < 0.6", ], entry_points={ 'distutils.commands': ['flake8 = flake8.main:Flake8Command'],