From: Daniele Varrazzo Date: Sat, 30 Oct 2021 14:36:57 +0000 (+0200) Subject: Fix Sphinx setup version specification X-Git-Tag: 3.0.2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a68114a4a32cacfbaa55f6b43e5be39b8321679;p=thirdparty%2Fpsycopg.git Fix Sphinx setup version specification Also specify other dependencies using the ~= operator. --- diff --git a/psycopg/setup.py b/psycopg/setup.py index 5f14bcb1d..7000374e6 100644 --- a/psycopg/setup.py +++ b/psycopg/setup.py @@ -55,14 +55,14 @@ extras_require = { ], # Requirements needed to build the documentation "docs": [ - "Sphinx ~= 4.2, < 4.3", - "docutils >= 0.17, < 0.18", + "Sphinx ~= 4.2.0", + "docutils ~= 0.17.0", "furo >= 2021.9.8", "sphinx-autobuild >= 2021.3.14", - "sphinx-autodoc-typehints >= 1.12, < 1.13", + "sphinx-autodoc-typehints ~= 1.12.0", # to document optional modules - "dnspython >= 2.1.0", - "shapely >= 1.7", + "dnspython ~= 2.1.0", + "shapely ~= 1.7.0", ], }