Release 7.2.0

This commit is contained in:
Anthony Sottile 2025-03-29 16:17:35 -04:00
parent ebad305769
commit 16f5f28a38
3 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,19 @@
7.2.0 -- 2025-03-29
-------------------
You can view the `7.2.0 milestone`_ on GitHub for more details.
New Dependency Information
~~~~~~~~~~~~~~~~~~~~~~~~~~
- pycodestyle has been updated to >= 2.13.0, < 2.14.0 (See also :pull:`1974`).
- pyflakes has been updated to >= 3.3.0, < 3.4.0 (See also :pull:`1974`).
Features
~~~~~~~~
- Require python >= 3.9 (See also :pull:`1973`).
.. all links
.. _7.2.0 milestone:
https://github.com/PyCQA/flake8/milestone/53

View file

@ -13,6 +13,7 @@ with the newest releases first.
7.1.0
7.1.1
7.1.2
7.2.0
6.x Release Series
==================

View file

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