diff options
author | Seth R. Johnson <johnsonsr@ornl.gov> | 2023-08-03 09:31:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 09:31:05 -0400 |
commit | 54514682d4b07987129494bdfe7989805b40a292 (patch) | |
tree | aaf44a681b937f5f7649f9bfc5d38d7f89d1ae10 | |
parent | 92a75717f0a71e62f07bf87f5ec17c4e7f776d68 (diff) | |
download | spack-54514682d4b07987129494bdfe7989805b40a292.tar.gz spack-54514682d4b07987129494bdfe7989805b40a292.tar.bz2 spack-54514682d4b07987129494bdfe7989805b40a292.tar.xz spack-54514682d4b07987129494bdfe7989805b40a292.zip |
py-sphinx-rtd-theme: avoid concretizing 0.5 with Sphinx 7.0 (#39212)
* py-sphinx-rtd-theme: avoid concretizing 0.5 with Sphinx 7.0
* Update var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
---------
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py b/var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py index 7f343f8add..0e3c468b04 100644 --- a/var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py +++ b/var/spack/repos/builtin/packages/py-sphinx-rtd-theme/package.py @@ -23,7 +23,7 @@ class PySphinxRtdTheme(PythonPackage): depends_on("py-setuptools", type="build") depends_on("py-sphinx@1.6:6", when="@1:", type=("build", "run")) - depends_on("py-sphinx", when="@0.4.1:", type=("build", "run")) + depends_on("py-sphinx@:6", when="@0", type=("build", "run")) depends_on("py-docutils@:0.18", when="@1.2:", type=("build", "run")) depends_on("py-docutils@:0.17", when="@1:1.1", type=("build", "run")) depends_on("py-docutils@:0.16", when="@0.5.2:0", type=("build", "run")) |