summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wolf <matthias.wolf@epfl.ch>2023-07-28 11:42:35 +0200
committerGitHub <noreply@github.com>2023-07-28 05:42:35 -0400
commitb5444e430423a11268b525ee0fe361d21babb743 (patch)
tree64cfc775aba1aa0914f89f35ec9a342451132ac7
parente1d5d34b56c85468a8b442cab88758a0d4530b59 (diff)
downloadspack-b5444e430423a11268b525ee0fe361d21babb743.tar.gz
spack-b5444e430423a11268b525ee0fe361d21babb743.tar.bz2
spack-b5444e430423a11268b525ee0fe361d21babb743.tar.xz
spack-b5444e430423a11268b525ee0fe361d21babb743.zip
py-distributed: add missing tblib dependency. (#39123)
I noticed this as we run a `pip check` on all modules we generate. This dependeny seems to have been around for a long time: https://github.com/dask/distributed/blob/2020.12.0/requirements.txt#L8 https://github.com/dask/distributed/blob/2023.4.1/pyproject.toml#L39 While it does not seem essential, it would be nice to have consistent installations by including the missing dependency.
-rw-r--r--var/spack/repos/builtin/packages/py-distributed/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-distributed/package.py b/var/spack/repos/builtin/packages/py-distributed/package.py
index 2fbeda844d..07b08f4037 100644
--- a/var/spack/repos/builtin/packages/py-distributed/package.py
+++ b/var/spack/repos/builtin/packages/py-distributed/package.py
@@ -57,6 +57,7 @@ class PyDistributed(PythonPackage):
depends_on("py-psutil@5.7.0:", type=("build", "run"), when="@2023.4.1:")
depends_on("py-sortedcontainers@:1,2.0.2:", type=("build", "run"))
depends_on("py-sortedcontainers@2.0.5:", type=("build", "run"), when="@2023.4.1:")
+ depends_on("py-tblib@1.6:", type=("build", "run"))
depends_on("py-toolz@0.8.2:", type=("build", "run"))
# Note that the setup.py is wrong for py-toolz, when="@2022.10.2".
# See https://github.com/dask/distributed/pull/7309