Skip to content

Commit c48217e

Browse files
committed
Release 7.3.0
1 parent f9e0f33 commit c48217e

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

docs/source/release-notes/7.3.0.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
7.3.0 -- 2025-06-20
2+
-------------------
3+
4+
You can view the `7.3.0 milestone`_ on GitHub for more details.
5+
6+
New Dependency Information
7+
~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
9+
- Added support for python 3.14 (See also :pull:`1983`).
10+
- pycodestyle has been updated to >= 2.14.0, < 2.15.0 (See also :pull:`1985`).
11+
- Pyflakes has been updated to >= 3.4.0, < 3.5.0 (See also :pull:`1985`).
12+
13+
.. all links
14+
.. _7.3.0 milestone:
15+
https://github.com/PyCQA/flake8/milestone/54

docs/source/release-notes/index.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@ with the newest releases first.
99
==================
1010

1111
.. toctree::
12-
7.0.0
13-
7.1.0
14-
7.1.1
15-
7.1.2
12+
7.3.0
1613
7.2.0
14+
7.1.2
15+
7.1.1
16+
7.1.0
17+
7.0.0
1718

1819
6.x Release Series
1920
==================
2021

2122
.. toctree::
22-
6.0.0
2323
6.1.0
24+
6.0.0
2425

2526
5.x Release Series
2627
==================

src/flake8/__init__.py

Lines changed: 1 addition & 1 deletion
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.2.0"
20+
__version__ = "7.3.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)