mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-11 07:14:18 +00:00
Release 5.0.4
This commit is contained in:
parent
213e006ce6
commit
f8e1b31774
3 changed files with 17 additions and 1 deletions
15
docs/source/release-notes/5.0.4.rst
Normal file
15
docs/source/release-notes/5.0.4.rst
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
5.0.4 -- 2022-08-03
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
You can view the `5.0.4 milestone`_ on GitHub for more details.
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- Set a lower bound on ``importlib-metadata`` to prevent ``RecursionError``
|
||||||
|
(See also :issue:`1650`, :pull:`1653`).
|
||||||
|
|
||||||
|
|
||||||
|
.. all links
|
||||||
|
.. _5.0.4 milestone:
|
||||||
|
https://github.com/PyCQA/flake8/milestone/46
|
||||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
||||||
==================
|
==================
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
5.0.4
|
||||||
5.0.3
|
5.0.3
|
||||||
5.0.2
|
5.0.2
|
||||||
5.0.1
|
5.0.1
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ from typing import Type
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
LOG.addHandler(logging.NullHandler())
|
||||||
|
|
||||||
__version__ = "5.0.3"
|
__version__ = "5.0.4"
|
||||||
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
|
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
|
||||||
|
|
||||||
_VERBOSITY_TO_LOG_LEVEL = {
|
_VERBOSITY_TO_LOG_LEVEL = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue