Skip to content

Commit 21abd9b

Browse files
committed
Release 2.11.0
1 parent d6ce7dc commit 21abd9b

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGES.txt

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
11
Changelog
22
=========
33

4+
2.11.0 (2023-07-29)
5+
-------------------
6+
7+
Changes:
8+
9+
* Drop EOL python 3.6 / 3.7. PR #1129, #1160.
10+
* Add support for python 3.12. PR #1147, #1148, #1152, #1153, #1154, #1163,
11+
#1164, #1165, #1166, #1176, #1177, #1182.
12+
* E721: adjust handling of type comparison. Allowed forms are now
13+
``isinstance(x, t)`` or ``type(x) is t``. PR #1086, #1167.
14+
* Remove handling of python 2 ``<>`` operator. PR #1161.
15+
* W606: removed. ``async`` / ``await`` are always keywords. PR #1162.
16+
* Internal: move tests to pytest. PR #1168, #1169, #1171, #1173, #1174, #1175.
17+
* Remove handling of python 2 ``ur''`` strings. PR #1181.
18+
19+
420
2.10.0 (2022-11-23)
521
-------------------
622

723
Changes:
824

9-
* E231: allow trailing comma inside 1-tuples in `[]`. PR #1108.
25+
* E231: allow trailing comma inside 1-tuples in ``[]``. PR #1108.
1026
* W601, W602, W603, W604: removed (no longer relevant in python 3). PR #1111.
1127
* E741: also apply to lambdas. PR #1106.
1228
* E741: fix false positive for comparison operators. PR #1118.

pycodestyle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
): # pragma: no cover (<py310)
6969
tokenize._compile = lru_cache(tokenize._compile) # type: ignore
7070

71-
__version__ = '2.10.0'
71+
__version__ = '2.11.0'
7272

7373
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
7474
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504'

0 commit comments

Comments
 (0)