mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Release 7.1.0
This commit is contained in:
parent
34c97e046a
commit
65a38c42a7
3 changed files with 15 additions and 1 deletions
13
docs/source/release-notes/7.1.0.rst
Normal file
13
docs/source/release-notes/7.1.0.rst
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
7.1.0 -- 2024-06-15
|
||||
-------------------
|
||||
|
||||
You can view the `7.1.0 milestone`_ on GitHub for more details.
|
||||
|
||||
New Dependency Information
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
- pycodestyle has been updated to >= 2.12.0, < 2.13.0 (See also :pull:`1939`).
|
||||
|
||||
.. all links
|
||||
.. _7.1.0 milestone:
|
||||
https://github.com/PyCQA/flake8/milestone/50
|
||||
|
|
@ -10,6 +10,7 @@ with the newest releases first.
|
|||
|
||||
.. toctree::
|
||||
7.0.0
|
||||
7.1.0
|
||||
|
||||
6.x Release Series
|
||||
==================
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ import sys
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "7.0.0"
|
||||
__version__ = "7.1.0"
|
||||
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
|
||||
|
||||
_VERBOSITY_TO_LOG_LEVEL = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue