File tree Expand file tree Collapse file tree 3 files changed +22
-6
lines changed
docs/source/release-notes Expand file tree Collapse file tree 3 files changed +22
-6
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -9,18 +9,19 @@ with the newest releases first.
9
9
==================
10
10
11
11
.. toctree ::
12
- 7.0.0
13
- 7.1.0
14
- 7.1.1
15
- 7.1.2
12
+ 7.3.0
16
13
7.2.0
14
+ 7.1.2
15
+ 7.1.1
16
+ 7.1.0
17
+ 7.0.0
17
18
18
19
6.x Release Series
19
20
==================
20
21
21
22
.. toctree ::
22
- 6.0.0
23
23
6.1.0
24
+ 6.0.0
24
25
25
26
5.x Release Series
26
27
==================
Original file line number Diff line number Diff line change 17
17
LOG = logging .getLogger (__name__ )
18
18
LOG .addHandler (logging .NullHandler ())
19
19
20
- __version__ = "7.2 .0"
20
+ __version__ = "7.3 .0"
21
21
__version_info__ = tuple (int (i ) for i in __version__ .split ("." ) if i .isdigit ())
22
22
23
23
_VERBOSITY_TO_LOG_LEVEL = {
You can’t perform that action at this time.
0 commit comments