mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-13 16:14:18 +00:00
parent
96817b40b2
commit
7c132d1c33
3 changed files with 24 additions and 4 deletions
20
CHANGES.rst
20
CHANGES.rst
|
|
@ -1,6 +1,26 @@
|
||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
2.4.0 - 2015-03-07
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- **Bug** Print filenames when using multiprocessing and ``-q`` option.
|
||||||
|
(`GitLab#31`_)
|
||||||
|
|
||||||
|
- **Bug** Put upper cap on dependencies. The caps for 2.4.0 are:
|
||||||
|
|
||||||
|
- ``pep8 < 1.6`` (Related to `GitLab#35`_)
|
||||||
|
|
||||||
|
- ``mccabe < 0.4``
|
||||||
|
|
||||||
|
- ``pyflakes < 0.9``
|
||||||
|
|
||||||
|
See also `GitLab#32`_
|
||||||
|
|
||||||
|
.. _GitLab#31: https://gitlab.com/pycqa/flake8/issues/31
|
||||||
|
.. _GitLab#32: https://gitlab.com/pycqa/flake8/issues/32
|
||||||
|
.. _GitLab#35: https://gitlab.com/pycqa/flake8/issues/35
|
||||||
|
|
||||||
2.3.0 - 2015-01-04
|
2.3.0 - 2015-01-04
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = '2.3.0'
|
__version__ = '2.4.0.dev0'
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -49,9 +49,9 @@ setup(
|
||||||
url="https://gitlab.com/pycqa/flake8",
|
url="https://gitlab.com/pycqa/flake8",
|
||||||
packages=["flake8", "flake8.tests"],
|
packages=["flake8", "flake8.tests"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pyflakes >= 0.8.1",
|
"pyflakes >= 0.8.1, < 0.9",
|
||||||
"pep8 >= 1.5.7",
|
"pep8 >= 1.5.7, < 1.6",
|
||||||
"mccabe >= 0.2.1",
|
"mccabe >= 0.2.1, < 0.4",
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue