summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2017-01-15 11:06:51 -0600
committerIan Cordasco <graffatcolmingov@gmail.com>2017-01-15 11:26:07 -0600
commitbc840e24037ebd8c33f5d9ac223a83d229b7375f (patch)
treef1da64eac9445b8ebd5c76fdede8e8fe563e3e19 /setup.py
parentf32e151b47a5621692796933cd7adcc930a91701 (diff)
downloadflake8-bc840e24037ebd8c33f5d9ac223a83d229b7375f.tar.gz
Add AST support for Python 3.6
Upgrade version constraints on PyFlakes to only the versions that handle Python 3.6 Closes #290
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3e71c30..033a536 100644
--- a/setup.py
+++ b/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",
],