File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -81,9 +81,9 @@ for users.
81
81
82
82
Before releasing, the following tox test environments must pass:
83
83
84
- - Python 3.6 (a.k.a., ``tox -e py36 ``)
84
+ - Python 3.8 (a.k.a., ``tox -e py38 ``)
85
85
86
- - Python 3.7 (a.k.a., ``tox -e py37 ``)
86
+ - Python 3.12 (a.k.a., ``tox -e py312 ``)
87
87
88
88
- PyPy 3 (a.k.a., ``tox -e pypy3 ``)
89
89
Original file line number Diff line number Diff line change
1
+ 6.1.0 -- 2023-07-29
2
+ -------------------
3
+
4
+ You can view the `6.1.0 milestone `_ on GitHub for more details.
5
+
6
+ New Dependency Information
7
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
8
+
9
+ - Pyflakes has been updated to >= 3.1.0, < 3.2.0 (See also :pull: `1847 `).
10
+ - pycodestyle has been updated to >= 2.11.0, < 2.12.0 (See also :pull: `1848 `).
11
+
12
+ Features
13
+ ~~~~~~~~
14
+
15
+ - Deprecate ``--include-in-doctest ``, ``--exclude-from-doctest `` (See also
16
+ :issue: `1747 `, :pull: `1768 `).
17
+ - Add support for python 3.12 (See also :pull: `1832 `, :pull: `1849 `,
18
+ :pull: `1850 `).
19
+
20
+ .. all links
21
+ .. _6.1.0 milestone :
22
+ https://github.com/PyCQA/flake8/milestone/48
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ with the newest releases first.
10
10
11
11
.. toctree ::
12
12
6.0.0
13
+ 6.1.0
13
14
14
15
5.x Release Series
15
16
==================
Original file line number Diff line number Diff line change 17
17
LOG = logging .getLogger (__name__ )
18
18
LOG .addHandler (logging .NullHandler ())
19
19
20
- __version__ = "6.0 .0"
20
+ __version__ = "6.1 .0"
21
21
__version_info__ = tuple (int (i ) for i in __version__ .split ("." ) if i .isdigit ())
22
22
23
23
_VERBOSITY_TO_LOG_LEVEL = {
You can’t perform that action at this time.
0 commit comments