From 8ff30e26760713c52a1fbc3739e59ed8e5b84e4d Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 2 Feb 2017 12:20:34 -0800 Subject: [PATCH] Allow newer pycodestyle --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 3f566d2..aca586c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,5 +9,5 @@ requires-dist = enum34; python_version<"3.4" configparser; python_version<"3.2" pyflakes >= 1.5.0, < 1.6.0 - pycodestyle >= 2.0.0, < 2.3.0 + pycodestyle >= 2.0.0, < 2.4.0 mccabe >= 0.6.0, < 0.7.0 diff --git a/setup.py b/setup.py index a300477..5a40d9b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ tests_require = ['mock >= 2.0.0', 'pytest'] # setup.cfg as well. requires = [ "pyflakes >= 1.5.0, < 1.6.0", - "pycodestyle >= 2.0.0, < 2.3.0", + "pycodestyle >= 2.0.0, < 2.4.0", "mccabe >= 0.6.0, < 0.7.0", ]