summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-05-30 12:44:58 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-05-30 12:51:31 -0500
commit33f982b446aa1698dcc53d3cd6277f387c79b7a3 (patch)
tree11b6b204bfe57a107738f6ab1c456c93dc77ad10 /setup.py
parente9ddf7533b7bbe142a5450c41f667fb1115b9262 (diff)
downloadflake8-33f982b446aa1698dcc53d3cd6277f387c79b7a3.tar.gz
Rely on Python 3.4 backport of configparser
Python 2.7's ConfigParser module does not allow for the behaviour we have documented for config files in Flake8 3.0. To compensate for that, we add a dependency on the configparser backport on PyPI for Python 2.7
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c090263..8e789d0 100644
--- a/setup.py
+++ b/setup.py
@@ -31,7 +31,7 @@ if mock is None:
requires = [
"pyflakes >= 0.8.1, < 1.1",
"pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2",
- # "mccabe >= 0.2.1, < 0.4",
+ "mccabe >= 0.2.1, < 0.4",
]
if sys.version_info < (3, 4):