File tree Expand file tree Collapse file tree 5 files changed +26
-9
lines changed Expand file tree Collapse file tree 5 files changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,30 @@ Summary -- Release highlights
14
14
15
15
.. towncrier release notes start
16
16
17
+ What's new in Pylint 3.3.2?
18
+ ---------------------------
19
+ Release date: 2024-12-01
20
+
21
+
22
+ False Positives Fixed
23
+ ---------------------
24
+
25
+ - Fix a false positive for `potential-index-error ` when an indexed iterable
26
+ contains a starred element that evaluates to more than one item.
27
+
28
+ Closes #10076 (`#10076 <https://github.com/pylint-dev/pylint/issues/10076 >`_)
29
+
30
+
31
+
32
+ Other Bug Fixes
33
+ ---------------
34
+
35
+ - Fixes the issue with --source-root option not working when the source files are in a subdirectory of the source root (e.g. when using a /src layout).
36
+
37
+ Closes #10026 (`#10026 <https://github.com/pylint-dev/pylint/issues/10026 >`_)
38
+
39
+
40
+
17
41
What's new in Pylint 3.3.1?
18
42
---------------------------
19
43
Release date: 2024-09-24
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ prefer-stubs=no
93
93
94
94
# Minimum Python version to use for version dependent checks. Will default to
95
95
# the version used to run pylint.
96
- py-version =3.10
96
+ py-version =3.12
97
97
98
98
# Discover python modules and packages in the file system subtree.
99
99
recursive =no
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ persistent = true
83
83
84
84
# Minimum Python version to use for version dependent checks. Will default to the
85
85
# version used to run pylint.
86
- py-version = " 3.10 "
86
+ py-version = " 3.12 "
87
87
88
88
# Discover python modules and packages in the file system subtree.
89
89
# recursive =
You can’t perform that action at this time.
0 commit comments