summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2017-01-23 06:44:20 -0600
committerIan Cordasco <graffatcolmingov@gmail.com>2017-01-23 06:44:20 -0600
commit499bc72c350d48740f9f879813722717cc9ea027 (patch)
treeb5cbc86db1c55f593bc7321b3e6afc12ec12ea15 /setup.py
parentc1f9dc724197a30a4c3d78883138f2b5b82a874e (diff)
downloadflake8-499bc72c350d48740f9f879813722717cc9ea027.tar.gz
Update dependencies for Python 3.6
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
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):