summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-08-06 14:16:12 -0500
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2017-08-06 14:16:12 -0500
commitb714bdff0bba39f653ded12b70f41b0f04cc003f (patch)
treeeea1db9828c711c7aef531049b40cdb230a21e79 /setup.py
parent6e656c64c79146e79775a89a70fdf8249014e2bb (diff)
downloadflake8-b714bdff0bba39f653ded12b70f41b0f04cc003f.tar.gz
Update pyflakes range and include doc links
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4d40862..aa45e43 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,11 @@ 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",
+ # We document the reasoning for using ranges here:
+ # http://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
+ # And in which releases we will update those ranges here:
+ # http://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
+ "pyflakes >= 1.5.0, < 1.7.0",
"pycodestyle >= 2.0.0, < 2.4.0",
"mccabe >= 0.6.0, < 0.7.0",
"setuptools >= 30",