Release 7.1.0

This commit is contained in:
Anthony Sottile 2024-06-15 17:36:14 -04:00
parent 34c97e046a
commit 65a38c42a7
3 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,13 @@
7.1.0 -- 2024-06-15
-------------------
You can view the `7.1.0 milestone`_ on GitHub for more details.
New Dependency Information
~~~~~~~~~~~~~~~~~~~~~~~~~~
- pycodestyle has been updated to >= 2.12.0, < 2.13.0 (See also :pull:`1939`).
.. all links
.. _7.1.0 milestone:
https://github.com/PyCQA/flake8/milestone/50

View file

@ -10,6 +10,7 @@ with the newest releases first.
.. toctree::
7.0.0
7.1.0
6.x Release Series
==================

View file

@ -17,7 +17,7 @@ import sys
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
__version__ = "7.0.0"
__version__ = "7.1.0"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
_VERBOSITY_TO_LOG_LEVEL = {