mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-15 16:49:52 +00:00
Merge branch 'bug/290' into 'master'
Add AST support for Python 3.6 Closes #290 See merge request !165
This commit is contained in:
commit
e3674c40bc
4 changed files with 21 additions and 3 deletions
|
|
@ -19,9 +19,20 @@ python2:
|
||||||
stage: test
|
stage: test
|
||||||
script: tox -e py27
|
script: tox -e py27
|
||||||
|
|
||||||
python3:
|
python34:
|
||||||
|
image: python:3.4
|
||||||
stage: test
|
stage: test
|
||||||
script: tox --skip-missing-interpreters -e py34,py35
|
script: tox -e py34
|
||||||
|
|
||||||
|
python35:
|
||||||
|
image: python:3.5
|
||||||
|
stage: test
|
||||||
|
script: tox -e py35
|
||||||
|
|
||||||
|
python36:
|
||||||
|
image: python:3.6
|
||||||
|
stage: test
|
||||||
|
script: tox -e py36
|
||||||
|
|
||||||
linters:
|
linters:
|
||||||
image: python:3.5
|
image: python:3.5
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,8 @@ matrix:
|
||||||
env: TOXENV=py34
|
env: TOXENV=py34
|
||||||
- python: 3.5
|
- python: 3.5
|
||||||
env: TOXENV=py35
|
env: TOXENV=py35
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py36
|
||||||
- python: pypy
|
- python: pypy
|
||||||
env: TOXENV=pypy
|
env: TOXENV=pypy
|
||||||
- python: 2.7
|
- python: 2.7
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
You can view the `3.3.0 milestone`_ on GitLab for more details.
|
You can view the `3.3.0 milestone`_ on GitLab for more details.
|
||||||
|
|
||||||
|
- Update upper bound on PyFlakes to allow for PyFlakes 1.5.0 (`GitLab#290`_)
|
||||||
|
|
||||||
- Add methods to Report class that will be called when Flake8 starts and
|
- Add methods to Report class that will be called when Flake8 starts and
|
||||||
finishes processing a file. (`GitLab#251`_)
|
finishes processing a file. (`GitLab#251`_)
|
||||||
|
|
||||||
|
|
@ -26,5 +28,7 @@ You can view the `3.3.0 milestone`_ on GitLab for more details.
|
||||||
https://gitlab.com/pycqa/flake8/issues/251
|
https://gitlab.com/pycqa/flake8/issues/251
|
||||||
.. _GitLab#268:
|
.. _GitLab#268:
|
||||||
https://gitlab.com/pycqa/flake8/issues/268
|
https://gitlab.com/pycqa/flake8/issues/268
|
||||||
|
.. _GitLab#290:
|
||||||
|
https://gitlab.com/pycqa/flake8/issues/290
|
||||||
.. _GitLab!156:
|
.. _GitLab!156:
|
||||||
https://gitlab.com/pycqa/flake8/merge_requests/156
|
https://gitlab.com/pycqa/flake8/merge_requests/156
|
||||||
|
|
|
||||||
3
setup.py
3
setup.py
|
|
@ -15,7 +15,7 @@ import flake8
|
||||||
tests_require = ['mock >= 2.0.0', 'pytest']
|
tests_require = ['mock >= 2.0.0', 'pytest']
|
||||||
|
|
||||||
requires = [
|
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",
|
"pycodestyle >= 2.0.0, < 2.3.0",
|
||||||
"mccabe >= 0.5.0, < 0.6.0",
|
"mccabe >= 0.5.0, < 0.6.0",
|
||||||
]
|
]
|
||||||
|
|
@ -123,6 +123,7 @@ setuptools.setup(
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.4",
|
"Programming Language :: Python :: 3.4",
|
||||||
"Programming Language :: Python :: 3.5",
|
"Programming Language :: Python :: 3.5",
|
||||||
|
"Programming Language :: Python :: 3.6",
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
"Topic :: Software Development :: Quality Assurance",
|
"Topic :: Software Development :: Quality Assurance",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue