File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -543,3 +543,6 @@ contributors:
543
543
* Hayden Richards (SupImDos): contributor
544
544
- Fixed "no-self-use" for async methods
545
545
- Fixed "docparams" extension for async functions and methods
546
+
547
+ * Jeroen Seegers (jeroenseegers): contributor
548
+ - Fixed `toml` dependency issue
Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ Release date: TBA
43
43
44
44
Closes #2366
45
45
46
+ * Fixed ``toml`` dependency issue
47
+
48
+ Closes #5066
49
+
46
50
47
51
What's New in Pylint 2.11.1?
48
52
============================
Original file line number Diff line number Diff line change 5
5
import os
6
6
7
7
import toml
8
- from toml . decoder import TomlDecodeError
8
+ from toml import TomlDecodeError
9
9
10
10
11
11
def _toml_has_config (path ):
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ install_requires =
47
47
astroid>=2.8.0,<2.9 # (You should also upgrade requirements_test_min.txt)
48
48
isort>=4.2.5,<6
49
49
mccabe>=0.6,<0.7
50
- toml>=0.7.1
50
+ toml>=0.9.2
51
51
colorama;sys_platform=="win32"
52
52
typing-extensions>=3.10.0;python_version<"3.10"
53
53
python_requires = ~=3.6
You can’t perform that action at this time.
0 commit comments