summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSeth R. Johnson <johnsonsr@ornl.gov>2022-08-01 10:58:54 -0400
committerGitHub <noreply@github.com>2022-08-01 10:58:54 -0400
commit2ec17288f3c8e53ae9ddb2ba474ab1a89bac7c31 (patch)
tree92429e8aef5da35d0f6103cc15ea3f90688a62be /var
parentc98d367a91d6cf6aac2b9e4ce10d288db3eb2ee4 (diff)
downloadspack-2ec17288f3c8e53ae9ddb2ba474ab1a89bac7c31.tar.gz
spack-2ec17288f3c8e53ae9ddb2ba474ab1a89bac7c31.tar.bz2
spack-2ec17288f3c8e53ae9ddb2ba474ab1a89bac7c31.tar.xz
spack-2ec17288f3c8e53ae9ddb2ba474ab1a89bac7c31.zip
py-breathe: fix version constraints to avoid concretizing old breathe (#31828)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-breathe/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-breathe/package.py b/var/spack/repos/builtin/packages/py-breathe/package.py
index c45e82db43..9053b7d4d5 100644
--- a/var/spack/repos/builtin/packages/py-breathe/package.py
+++ b/var/spack/repos/builtin/packages/py-breathe/package.py
@@ -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")