mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-13 16:14:18 +00:00
Release 3.9.2
-----BEGIN PGP SIGNATURE----- iQJHBAABCgAxFiEEzx3RsDHdsD/grSXv6HufUSpyIFEFAmCW67YTHGFzb3R0aWxl QHVtaWNoLmVkdQAKCRDoe59RKnIgUcXlD/0aBO7kjI2EuEuKty4GljtylySJIxQN uXMMND9OQO0sIE2Zs0a2zfNUgfIRz6InmbfmPw9lDvD2cDk53nqyA8fECl/IBWIZ iVIpdNRXgL3HoBfV/Zi32TU6WLsWSetvWtkG66XxgI7kZGNPS3eCRdJgHlkG4xVv YOtIYhm6faOQrUJeVP21ESknw5H/zHOrWhwuRyN6MqqLjKD8ZJCon/Hh5IJ0cHQW XxAMgTbjjWNmD1IPI28KSRU0xzb8y8Vu6aM68Cj8E0uD7WGdBDN4chq9xVwAg3T1 Wwy+paxueKtqoQmvD4jOHGjweRElEUsLJbHNZbVrz3gY1SreZP780Dzu1cAltmx7 smDahl31ADNO/kHu9LPLBKQD5jFAWFV00SwhHxLQ2SjQtDHdKj+P+q8FsPtEWR5u XyKC36IsJBtqpXhxFUQvvrWQ3/8khgxpTGEsffhrR9K5zx1sO+PF97Oz+EYJuaiM oDBYYOZsSxmMzftBrT6JyLBj/IjcCkstxfJ5558/TeygvECR88Y7lNggQBjVJ3s5 kK4BDS5WrgbHaAPsi/rElqy/vhsYaZiSbTsSrv4AQc8jVHI37YFMRlDTWpDlOkmJ qPbX2noV/5zXxab89MSYI1VzXdhqEY66je8UmiznADfJS0nv7jHKAWIwmwItxtPi m4guaVVy5Y19jw== =yXIO -----END PGP SIGNATURE----- Merge tag '3.9.2' Release 3.9.2
This commit is contained in:
commit
28aa67314e
3 changed files with 23 additions and 1 deletions
21
docs/source/release-notes/3.9.2.rst
Normal file
21
docs/source/release-notes/3.9.2.rst
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
3.9.2 -- 2021-05-08
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
You can view the `3.9.2 milestone`_ on GitHub for more details.
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- Fix error message for ``E111`` in ``pycodestyle`` (See also :pull:`1328`,
|
||||||
|
:issue:`1327`).
|
||||||
|
|
||||||
|
Deprecations
|
||||||
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- ``indent_size_str`` is deprecated, use ``str(indent_size)`` instead (See
|
||||||
|
also :pull:`1328`, :issue:`1327`).
|
||||||
|
|
||||||
|
|
||||||
|
.. all links
|
||||||
|
.. _3.9.2 milestone:
|
||||||
|
https://github.com/PyCQA/flake8/milestone/40
|
||||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
||||||
==================
|
==================
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
3.9.2
|
||||||
3.9.1
|
3.9.1
|
||||||
3.9.0
|
3.9.0
|
||||||
3.8.4
|
3.8.4
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ from typing import Type
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
LOG.addHandler(logging.NullHandler())
|
||||||
|
|
||||||
__version__ = "3.9.1"
|
__version__ = "3.9.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())
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue