summaryrefslogtreecommitdiff
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
parentc1f9dc724197a30a4c3d78883138f2b5b82a874e (diff)
downloadflake8-499bc72c350d48740f9f879813722717cc9ea027.tar.gz
Update dependencies for Python 3.6
-rw-r--r--setup.cfg4
-rw-r--r--setup.py4
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):