From: Daniele Varrazzo Date: Tue, 13 Jul 2021 01:04:54 +0000 (+0200) Subject: Add sphinx-autobuild to docs dependencies X-Git-Tag: 3.0.dev1~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56dea40b7d72118848e5d87834aed50818ac896c;p=thirdparty%2Fpsycopg.git Add sphinx-autobuild to docs dependencies It would probably be a dev dependency, but it would pull the whole Sphinx in devs, which is not necessarily needed there. --- diff --git a/psycopg/setup.py b/psycopg/setup.py index 656d9a120..fc990b433 100644 --- a/psycopg/setup.py +++ b/psycopg/setup.py @@ -50,8 +50,9 @@ extras_require = { "docs": [ "Sphinx >= 4.1, < 4.2", "docutils >= 0.17, < 0.18", - "sphinx-autodoc-typehints >= 1.12, < 1.13", "furo >= 2021.7.5b38", + "sphinx-autobuild >= 2021.3.14", + "sphinx-autodoc-typehints >= 1.12, < 1.13", ], }