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:
parent
e1d5d34b56
commit
b5444e4304
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user