From a6c095de2f5fc5d357e2e2d326d4fc6de5b6faae Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Thu, 24 Aug 2023 03:43:14 -0500 Subject: [PATCH] limit sphinx to `< 7.2.0` in requirements-relaxed (#329) 7.2.0 breaks sphinx-notfound-page. This commit sets a general constraint that applies to the testing requirements (requirements-relaxed). (cherry picked from commit c07047fd65d38a95605e1592606168937bc43c69) Relates: https://github.com/ansible/ansible-documentation/issues/327 --- tests/constraints-base.in | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/constraints-base.in b/tests/constraints-base.in index 77cb17091f0..7a92b3815df 100644 --- a/tests/constraints-base.in +++ b/tests/constraints-base.in @@ -1,3 +1,4 @@ # Known limitations for indirect/transitive dependencies. rstcheck < 6 # rstcheck 6.x has problem with rstcheck.core triggered by include files w/ sphinx directives https://github.com/rstcheck/rstcheck-core/issues/3 +sphinx < 7.2.0 # https://github.com/readthedocs/sphinx-notfound-page/issues/219