Merge pull request #55212 from r-ryantm/auto-update/python3.7-distributed
python37Packages.distributed: 1.25.2 -> 1.25.3
This commit is contained in:
commit
964914571d
@ -19,27 +19,28 @@
|
|||||||
, tornado
|
, tornado
|
||||||
, zict
|
, zict
|
||||||
, pyyaml
|
, pyyaml
|
||||||
, pythonOlder
|
, isPy3k
|
||||||
, futures
|
, futures
|
||||||
, singledispatch
|
, singledispatch
|
||||||
|
, mpi4py
|
||||||
|
, bokeh
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "distributed";
|
pname = "distributed";
|
||||||
version = "1.25.2";
|
version = "1.25.3";
|
||||||
|
|
||||||
# get full repository need conftest.py to run tests
|
# get full repository need conftest.py to run tests
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0rv5831xv5byx0f8ly3mlji207nb3bzq6qmdf7ishrgy9kpphc68";
|
sha256 = "0bvjlw74n0l4rgzhm876f66f7y6j09744i5h3iwlng2jwzyw97gs";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest pytest-repeat pytest-faulthandler pytest-timeout mock joblib ];
|
checkInputs = [ pytest pytest-repeat pytest-faulthandler pytest-timeout mock joblib ];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
click cloudpickle dask msgpack psutil six
|
click cloudpickle dask msgpack psutil six
|
||||||
sortedcontainers tblib toolz tornado zict pyyaml
|
sortedcontainers tblib toolz tornado zict pyyaml mpi4py bokeh
|
||||||
] ++ lib.optional (pythonOlder "3.2") [ futures ]
|
] ++ lib.optionals (!isPy3k) [ futures singledispatch ];
|
||||||
++ lib.optional (pythonOlder "3.4") [ singledispatch ];
|
|
||||||
|
|
||||||
# tests take about 10-15 minutes
|
# tests take about 10-15 minutes
|
||||||
# ignore 5 cli tests out of 1000 total tests that fail due to subprocesses
|
# ignore 5 cli tests out of 1000 total tests that fail due to subprocesses
|
||||||
|
Loading…
x
Reference in New Issue
Block a user