File tree 2 files changed +10
-3
lines changed 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 5
5
New error codes:
6
6
* Y062: Disallow duplicate elements inside ` Literal[] ` slices.
7
7
8
- Other changes:
8
+ Other features:
9
+ * Support flake8>=7.0.0
9
10
* Y061 is no longer emitted in situations where Y062 would also be emitted.
10
11
* Improve error message for Y060.
11
12
13
+ Bugfixes:
14
+ * Y016: Fix false positive if a method had positional-only parameters (using
15
+ [ PEP 570 syntax] ( https://peps.python.org/pep-0570/ ) and the first
16
+ positional-or-keyword parameter following the positional-only parameters used
17
+ a custom TypeVar (see #455 ).
18
+
12
19
## 23.11.0
13
20
14
21
New error codes:
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ classifiers = [
47
47
" Topic :: Software Development :: Quality Assurance" ,
48
48
]
49
49
dependencies = [
50
- " flake8 >= 6.0.0, < 7 .0.0" ,
50
+ " flake8 >= 6.0.0, < 8 .0.0" ,
51
51
" pyflakes >= 2.1.1" ,
52
52
" ast-decompiler >= 0.7.0, < 1.0; python_version < '3.9'" ,
53
53
]
@@ -66,7 +66,7 @@ dev = [
66
66
" isort==5.13.2" , # Must match .pre-commit-config.yaml
67
67
" mypy==1.8.0" ,
68
68
" pre-commit-hooks==4.5.0" , # Must match .pre-commit-config.yaml
69
- " pytest==7.4.3 " ,
69
+ " pytest==7.4.4 " ,
70
70
" pytest-xdist==3.5.0" ,
71
71
" types-pyflakes<4" ,
72
72
]
You can’t perform that action at this time.
0 commit comments