From 499bc72c350d48740f9f879813722717cc9ea027 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Mon, 23 Jan 2017 06:44:20 -0600 Subject: [PATCH] Update dependencies for Python 3.6 --- setup.cfg | 4 ++-- setup.py | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 965d642..3f566d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,6 +8,6 @@ universal=1 requires-dist = enum34; python_version<"3.4" configparser; python_version<"3.2" - pyflakes >= 0.8.1, != 1.2.0, != 1.2.1, != 1.2.2, < 1.4.0 + pyflakes >= 1.5.0, < 1.6.0 pycodestyle >= 2.0.0, < 2.3.0 - mccabe >= 0.5.0, < 0.6.0 + mccabe >= 0.6.0, < 0.7.0 diff --git a/setup.py b/setup.py index 033a536..82aaea4 100644 --- a/setup.py +++ b/setup.py @@ -14,10 +14,12 @@ import flake8 tests_require = ['mock >= 2.0.0', 'pytest'] +# NOTE(sigmavirus24): When updating these requirements, update them in +# setup.cfg as well. requires = [ "pyflakes >= 1.5.0, < 1.6.0", "pycodestyle >= 2.0.0, < 2.3.0", - "mccabe >= 0.5.0, < 0.6.0", + "mccabe >= 0.6.0, < 0.7.0", ] if sys.version_info < (3, 4):