mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Add AST support for Python 3.6
Upgrade version constraints on PyFlakes to only the versions that handle Python 3.6 Closes #290
This commit is contained in:
parent
f32e151b47
commit
bc840e2403
2 changed files with 6 additions and 1 deletions
3
setup.py
3
setup.py
|
|
@ -15,7 +15,7 @@ import flake8
|
|||
tests_require = ['mock >= 2.0.0', 'pytest']
|
||||
|
||||
requires = [
|
||||
"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",
|
||||
]
|
||||
|
|
@ -123,6 +123,7 @@ setuptools.setup(
|
|||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: Software Development :: Quality Assurance",
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue