Skip to content

Commit 16f5f28

Browse files
committed
Release 7.2.0
1 parent ebad305 commit 16f5f28

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

docs/source/release-notes/7.2.0.rst

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
7.2.0 -- 2025-03-29
2+
-------------------
3+
4+
You can view the `7.2.0 milestone`_ on GitHub for more details.
5+
6+
New Dependency Information
7+
~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
9+
- pycodestyle has been updated to >= 2.13.0, < 2.14.0 (See also :pull:`1974`).
10+
- pyflakes has been updated to >= 3.3.0, < 3.4.0 (See also :pull:`1974`).
11+
12+
Features
13+
~~~~~~~~
14+
15+
- Require python >= 3.9 (See also :pull:`1973`).
16+
17+
.. all links
18+
.. _7.2.0 milestone:
19+
https://github.com/PyCQA/flake8/milestone/53

docs/source/release-notes/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ with the newest releases first.
1313
7.1.0
1414
7.1.1
1515
7.1.2
16+
7.2.0
1617

1718
6.x Release Series
1819
==================

src/flake8/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
LOG = logging.getLogger(__name__)
1818
LOG.addHandler(logging.NullHandler())
1919

20-
__version__ = "7.1.2"
20+
__version__ = "7.2.0"
2121
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
2222

2323
_VERBOSITY_TO_LOG_LEVEL = {

0 commit comments

Comments
 (0)