mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-11 07:14:18 +00:00
Release 7.1.2
This commit is contained in:
parent
19001f77f3
commit
fffee8ba9d
3 changed files with 17 additions and 1 deletions
15
docs/source/release-notes/7.1.2.rst
Normal file
15
docs/source/release-notes/7.1.2.rst
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
7.1.2 -- 2025-02-16
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
You can view the `7.1.2 milestone`_ on GitHub for more details.
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- Avoid starting unnecessary processes when "# files" < "jobs".
|
||||||
|
(See also :pull:`1966`).
|
||||||
|
|
||||||
|
|
||||||
|
.. all links
|
||||||
|
.. _7.1.2 milestone:
|
||||||
|
https://github.com/PyCQA/flake8/milestone/52
|
||||||
|
|
@ -12,6 +12,7 @@ with the newest releases first.
|
||||||
7.0.0
|
7.0.0
|
||||||
7.1.0
|
7.1.0
|
||||||
7.1.1
|
7.1.1
|
||||||
|
7.1.2
|
||||||
|
|
||||||
6.x Release Series
|
6.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.1.1"
|
__version__ = "7.1.2"
|
||||||
__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