From 4ba7190ffd2a0dbc8b0953af034b28e4c135ec86 Mon Sep 17 00:00:00 2001 From: "Antoine Vandevenne (anv)" Date: Thu, 9 Jun 2022 08:56:01 +0000 Subject: [PATCH] [FIX] requirements: pin docutils to 0.16.0 Since sphinx-tabs 3.2.0 has the requirement docutils==0.16.0 and sphinx 3.5.4 has the requirement docutils>=0.12,<0.17, this commit pins docutils to version 0.16.0. While we're at it, the dependency to sphinx-tabs is also explicitly listed, although it was already imported in the extensions. It causes no trouble to install it from pip alongside the imported extension. closes odoo/documentation#2178 X-original-commit: 9d36e4e2a4aa7390eeab234eedab6d0a8dfbb4f6 Signed-off-by: Antoine Vandevenne (anv) --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9bb440b3a..df89a1983 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -docutils>=0.14,<0.19 +docutils==0.16.0 # Compatibility with sphinx-tabs 3.2.0. jinja2<3.1 # Compatibility with Sphinx 3.5.4. libsass==0.18.0 pygments~=2.6.1 pygments-csv-lexer~=0.1 sphinx~=3.0 -sphinx-tabs~=3.2.0 +sphinx-tabs==3.2.0 werkzeug==0.14.1