python3Packages.dask: 2021.01.0 -> 2021.03.0

This commit is contained in:
Frederik Rietdijk 2021-03-06 16:44:03 +01:00
parent d80850806d
commit f43ae887d1
1 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,7 @@
, fetchFromGitHub , fetchFromGitHub
, fsspec , fsspec
, pytestCheckHook , pytestCheckHook
, pytest-rerunfailures
, pythonOlder , pythonOlder
, cloudpickle , cloudpickle
, numpy , numpy
@ -15,7 +16,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dask"; pname = "dask";
version = "2021.01.0"; version = "2021.03.0";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
@ -23,11 +24,12 @@ buildPythonPackage rec {
owner = "dask"; owner = "dask";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "V2cEOzV/L1zjyQ76zlGyN9CIkq6W8y8Yab4NQi3/Ju4="; sha256 = "LACv7lWpQULQknNGX/9vH9ckLsypbqKDGnsNBgKT1eI=";
}; };
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
pytest-rerunfailures
]; ];
dontUseSetuptoolsCheck = true; dontUseSetuptoolsCheck = true;