Skip to content

Commit 9dc186f

Browse files
Update toml dependency to >=0.9.2 (#5067)
* Update toml dependency from >=0.7.1 to >=0.9.2
1 parent 09a0b50 commit 9dc186f

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CONTRIBUTORS.txt

+3
Original file line numberDiff line numberDiff line change
@@ -543,3 +543,6 @@ contributors:
543543
* Hayden Richards (SupImDos): contributor
544544
- Fixed "no-self-use" for async methods
545545
- Fixed "docparams" extension for async functions and methods
546+
547+
* Jeroen Seegers (jeroenseegers): contributor
548+
- Fixed `toml` dependency issue

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ Release date: TBA
4343

4444
Closes #2366
4545

46+
* Fixed ``toml`` dependency issue
47+
48+
Closes #5066
49+
4650

4751
What's New in Pylint 2.11.1?
4852
============================

pylint/config/find_default_config_files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import os
66

77
import toml
8-
from toml.decoder import TomlDecodeError
8+
from toml import TomlDecodeError
99

1010

1111
def _toml_has_config(path):

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ install_requires =
4747
astroid>=2.8.0,<2.9 # (You should also upgrade requirements_test_min.txt)
4848
isort>=4.2.5,<6
4949
mccabe>=0.6,<0.7
50-
toml>=0.7.1
50+
toml>=0.9.2
5151
colorama;sys_platform=="win32"
5252
typing-extensions>=3.10.0;python_version<"3.10"
5353
python_requires = ~=3.6

0 commit comments

Comments
 (0)