Release 7.3.0

This commit is contained in:
anthony sottile 2025-06-20 15:30:19 -04:00
parent f9e0f33281
commit d93590f5be
3 changed files with 22 additions and 6 deletions

View file

@ -0,0 +1,15 @@
7.3.0 -- 2025-06-20
-------------------
You can view the `7.3.0 milestone`_ on GitHub for more details.
New Dependency Information
~~~~~~~~~~~~~~~~~~~~~~~~~~
- Added support for python 3.14 (See also :pull:`1983`).
- pycodestyle has been updated to >= 2.14.0, < 2.15.0 (See also :pull:`1985`).
- Pyflakes has been updated to >= 3.4.0, < 3.5.0 (See also :pull:`1985`).
.. all links
.. _7.3.0 milestone:
https://github.com/PyCQA/flake8/milestone/54

View file

@ -9,18 +9,19 @@ with the newest releases first.
================== ==================
.. toctree:: .. toctree::
7.0.0 7.3.0
7.1.0
7.1.1
7.1.2
7.2.0 7.2.0
7.1.2
7.1.1
7.1.0
7.0.0
6.x Release Series 6.x Release Series
================== ==================
.. toctree:: .. toctree::
6.0.0
6.1.0 6.1.0
6.0.0
5.x Release Series 5.x Release Series
================== ==================

View file

@ -17,7 +17,7 @@ import sys
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler()) LOG.addHandler(logging.NullHandler())
__version__ = "7.2.0" __version__ = "7.3.0"
__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 = {