mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-09 22:34:17 +00:00
Release 7.3.0
This commit is contained in:
parent
f9e0f33281
commit
c48217e1fc
3 changed files with 22 additions and 6 deletions
15
docs/source/release-notes/7.3.0.rst
Normal file
15
docs/source/release-notes/7.3.0.rst
Normal 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
|
||||||
|
|
@ -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
|
||||||
==================
|
==================
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue