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.
This commit is contained in:
Matthias Wolf 2023-07-28 11:42:35 +02:00 committed by GitHub
parent e1d5d34b56
commit b5444e4304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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