py-breathe: fix version constraints to avoid concretizing old breathe (#31828)

This commit is contained in:
Seth R. Johnson 2022-08-01 10:58:54 -04:00 committed by GitHub
parent c98d367a91
commit 2ec17288f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,8 @@ class PyBreathe(PythonPackage):
depends_on("py-six@1.4:", type=("build", "run"), when="@:4.20")
depends_on("py-six@1.9:", type=("build", "run"), when="@4.21:4.32")
depends_on("py-sphinx", type=("build", "run"))
depends_on("py-sphinx@:3", type=("build", "run"), when="@:4.20")
depends_on("py-sphinx@3:3.2", type=("build", "run"), when="@4.21:4.32")
depends_on("py-sphinx@3:4", type=("build", "run"), when="@4.33:")
depends_on("py-sphinx@3:", type=("build", "run"), when="@4.33:")
depends_on("doxygen@1.8.4:", type="run")