mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Update pyflakes range and include doc links
This commit is contained in:
parent
6e656c64c7
commit
b714bdff0b
2 changed files with 10 additions and 2 deletions
|
|
@ -5,9 +5,13 @@ test=pytest
|
|||
universal=1
|
||||
|
||||
[metadata]
|
||||
# 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
|
||||
requires-dist =
|
||||
enum34; python_version<"3.4"
|
||||
configparser; python_version<"3.2"
|
||||
pyflakes >= 1.5.0, < 1.6.0
|
||||
pyflakes >= 1.5.0, < 1.7.0
|
||||
pycodestyle >= 2.0.0, < 2.4.0
|
||||
mccabe >= 0.6.0, < 0.7.0
|
||||
|
|
|
|||
6
setup.py
6
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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue