distributed: disable build for Python older than 3.6
This commit is contained in:
parent
df84dcf53c
commit
e283133520
@ -23,6 +23,7 @@
|
|||||||
, singledispatch
|
, singledispatch
|
||||||
, mpi4py
|
, mpi4py
|
||||||
, bokeh
|
, bokeh
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -35,11 +36,13 @@ buildPythonPackage rec {
|
|||||||
sha256 = "469e505fd7ce75f600188bdb69a95641899d5b372f74246c8f308376b6929e9c";
|
sha256 = "469e505fd7ce75f600188bdb69a95641899d5b372f74246c8f308376b6929e9c";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
checkInputs = [ pytest pytest-repeat pytest-timeout mock joblib ];
|
checkInputs = [ pytest pytest-repeat pytest-timeout mock joblib ];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
click cloudpickle dask msgpack psutil six
|
click cloudpickle dask msgpack psutil six
|
||||||
sortedcontainers tblib toolz tornado zict pyyaml mpi4py bokeh
|
sortedcontainers tblib toolz tornado zict pyyaml mpi4py bokeh
|
||||||
] ++ lib.optionals (!isPy3k) [ futures 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