diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2023-04-28 18:54:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 18:54:10 +0200 |
commit | a59f3d588a72ec4e5702f988064dd62bb408ccb8 (patch) | |
tree | f8ca765d6d0d009f4ed146fa82226380080732f8 | |
parent | 5d82d7bb6b94a3a6a4d7a4861262519e62916881 (diff) | |
download | pylint-git-a59f3d588a72ec4e5702f988064dd62bb408ccb8.tar.gz |
[tomlkit] Limit the maximum version of tomlkit (#8633)
-rw-r--r-- | doc/whatsnew/fragments/8632.bugfix | 4 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/whatsnew/fragments/8632.bugfix b/doc/whatsnew/fragments/8632.bugfix new file mode 100644 index 000000000..25619d412 --- /dev/null +++ b/doc/whatsnew/fragments/8632.bugfix @@ -0,0 +1,4 @@ +tomlkit max version was set to 0.11.7 following a +regression in tomlkit 0.11.8. + +Closes #8632 diff --git a/pyproject.toml b/pyproject.toml index 59e4ccb1c..fb3cfd0d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ dependencies = [ "isort>=4.2.5,<6", "mccabe>=0.6,<0.8", "tomli>=1.1.0;python_version<'3.11'", - "tomlkit>=0.10.1", + "tomlkit>=0.10.1,<=0.11.7", "colorama>=0.4.5;sys_platform=='win32'", "typing-extensions>=3.10.0;python_version<'3.10'", ] |