diff options
author | LydDeb <62343728+LydDeb@users.noreply.github.com> | 2023-08-29 19:09:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 12:09:48 -0500 |
commit | 8295a4599931395a4fa076495f0b0390480cd515 (patch) | |
tree | 8d662ef77c93a35775b89e383bcf194a0b889c00 | |
parent | 5138c71d3471f55da04fe5b1f7dcb03e2dd48866 (diff) | |
download | spack-8295a4599931395a4fa076495f0b0390480cd515.tar.gz spack-8295a4599931395a4fa076495f0b0390480cd515.tar.bz2 spack-8295a4599931395a4fa076495f0b0390480cd515.tar.xz spack-8295a4599931395a4fa076495f0b0390480cd515.zip |
py-distributed: use py-jinja2 versions from 2.10.3 (#39658)
In depends_on py-jinja2, use versions from 2.10.3, instead of strict equality, according to the pyproject.toml of py-distributed 2023.4.1
-rw-r--r-- | var/spack/repos/builtin/packages/py-distributed/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-distributed/package.py b/var/spack/repos/builtin/packages/py-distributed/package.py index 07b08f4037..ef4dbe7c15 100644 --- a/var/spack/repos/builtin/packages/py-distributed/package.py +++ b/var/spack/repos/builtin/packages/py-distributed/package.py @@ -48,7 +48,7 @@ class PyDistributed(PythonPackage): depends_on("py-click@8.0:", type=("build", "run"), when="@2023.4.1:") depends_on("py-cloudpickle@1.5.0:", type=("build", "run")) depends_on("py-jinja2", type=("build", "run"), when="@2022.2.1:") - depends_on("py-jinja2@2.10.3", type=("build", "run"), when="@2023.4.1:") + depends_on("py-jinja2@2.10.3:", type=("build", "run"), when="@2023.4.1:") depends_on("py-locket@1:", type=("build", "run"), when="@2022.2.1:") depends_on("py-msgpack@0.6.0:", type=("build", "run")) depends_on("py-msgpack@1.0.0:", type=("build", "run"), when="@2023.4.1:") |