From 07dc37e66f980dd30093f36a67caac7613ac3a8d Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sat, 20 Apr 2024 12:38:24 +0200 Subject: [PATCH] chore: limit docutils to <0.21.0 sphinx-rtd-theme currently does not support docutils 0.21.x. This restriction can be lifted once the upstream issue has been resolved: https://github.com/readthedocs/sphinx_rtd_theme/issues/1557 --- .github/renovate.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 0dd504bb5..c8fbc197d 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -12,6 +12,10 @@ { "matchBaseBranches": [ "/^v[0-9]+/" ], "groupName": "all dependencies" + }, + { + "matchPackageNames": ["docutils"], + "allowedVersions": "<0.21.0" } ] }