From 00b29e83541c2f4b16b1c0bd4d1abfb0c2a31834 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Tue, 17 Jan 2023 17:43:55 +0000 Subject: [PATCH] Adjust constraint setup.py So that we accept Sphinx 6. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb7f73b0..0e3d58ce 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ render `Doxygen `__ xml output. """ -requires = ["Sphinx>=4.0,<6,!=5.0.0", "docutils>=0.12"] +requires = ["Sphinx>=4.0,<7,!=5.0.0", "docutils>=0.12"] if sys.version_info < (3, 7): print("ERROR: Sphinx requires at least Python 3.7 to run.")