summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-04-28 17:27:59 +0000
committerGitHub <noreply@github.com>2023-04-28 17:27:59 +0000
commit0b5defa5cfa4662d76cb01c90893c38428e3513c (patch)
tree7166ea45a5cd9f3543621d9502dcf6a5d1ee015a
parent4350c6fd7a955892712e2bf7a78adf4531e483b4 (diff)
downloadpylint-git-0b5defa5cfa4662d76cb01c90893c38428e3513c.tar.gz
[tomlkit] Limit the maximum version of tomlkit (#8633) (#8635)
(cherry picked from commit a59f3d588a72ec4e5702f988064dd62bb408ccb8) Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
-rw-r--r--doc/whatsnew/fragments/8632.bugfix4
-rw-r--r--pyproject.toml2
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 bd542646b..17b7a68a4 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'",
]