mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 02:26:54 +00:00
Release 6.1.0
This commit is contained in:
parent
354f873f8a
commit
7ef0350a43
4 changed files with 26 additions and 3 deletions
|
|
@ -81,9 +81,9 @@ for users.
|
|||
|
||||
Before releasing, the following tox test environments must pass:
|
||||
|
||||
- Python 3.6 (a.k.a., ``tox -e py36``)
|
||||
- Python 3.8 (a.k.a., ``tox -e py38``)
|
||||
|
||||
- Python 3.7 (a.k.a., ``tox -e py37``)
|
||||
- Python 3.12 (a.k.a., ``tox -e py312``)
|
||||
|
||||
- PyPy 3 (a.k.a., ``tox -e pypy3``)
|
||||
|
||||
|
|
|
|||
22
docs/source/release-notes/6.1.0.rst
Normal file
22
docs/source/release-notes/6.1.0.rst
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
6.1.0 -- 2023-07-29
|
||||
-------------------
|
||||
|
||||
You can view the `6.1.0 milestone`_ on GitHub for more details.
|
||||
|
||||
New Dependency Information
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
- Pyflakes has been updated to >= 3.1.0, < 3.2.0 (See also :pull:`1847`).
|
||||
- pycodestyle has been updated to >= 2.11.0, < 2.12.0 (See also :pull:`1848`).
|
||||
|
||||
Features
|
||||
~~~~~~~~
|
||||
|
||||
- Deprecate ``--include-in-doctest``, ``--exclude-from-doctest`` (See also
|
||||
:issue:`1747`, :pull:`1768`).
|
||||
- Add support for python 3.12 (See also :pull:`1832`, :pull:`1849`,
|
||||
:pull:`1850`).
|
||||
|
||||
.. all links
|
||||
.. _6.1.0 milestone:
|
||||
https://github.com/PyCQA/flake8/milestone/48
|
||||
|
|
@ -10,6 +10,7 @@ with the newest releases first.
|
|||
|
||||
.. toctree::
|
||||
6.0.0
|
||||
6.1.0
|
||||
|
||||
5.x Release Series
|
||||
==================
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ import sys
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "6.0.0"
|
||||
__version__ = "6.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