Skip to content

Commit

Permalink
distributed: disable build for Python older than 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
teh authored and Jon committed Sep 23, 2020
1 parent df84dcf commit e283133
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/distributed/default.nix
Expand Up @@ -23,6 +23,7 @@
, singledispatch
, mpi4py
, bokeh
, pythonOlder
}:

buildPythonPackage rec {
Expand All @@ -35,11 +36,13 @@ buildPythonPackage rec {
sha256 = "469e505fd7ce75f600188bdb69a95641899d5b372f74246c8f308376b6929e9c";
};

disabled = pythonOlder "3.6";

checkInputs = [ pytest pytest-repeat pytest-timeout mock joblib ];
propagatedBuildInputs = [
click cloudpickle dask msgpack psutil six
sortedcontainers tblib toolz tornado zict pyyaml mpi4py bokeh
] ++ lib.optionals (!isPy3k) [ futures singledispatch ];
];

# tests take about 10-15 minutes
# ignore 5 cli tests out of 1000 total tests that fail due to subprocesses
Expand Down

0 comments on commit e283133

Please sign in to comment.