summary refs log tree commit diff
path: root/pkgs/development/python-modules/distributed
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-05-09 12:01:46 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-05-11 22:12:10 +0200
commitc1a31649de92346fead3f3150dacbd5fdc58f23f (patch)
tree881f5417f0a1e6d4185b530ec4f93eb4db3af304 /pkgs/development/python-modules/distributed
parent99f056e6aaecb7312fd83265b3980f06a8666f83 (diff)
downloadnixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.tar
nixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.tar.gz
nixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.tar.bz2
nixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.tar.lz
nixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.tar.xz
nixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.tar.zst
nixpkgs-c1a31649de92346fead3f3150dacbd5fdc58f23f.zip
python3Packages.distributed: 2.9.1 -> 2.9.3
Diffstat (limited to 'pkgs/development/python-modules/distributed')
-rw-r--r--pkgs/development/python-modules/distributed/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix
index d85b4496e22..1104834d879 100644
--- a/pkgs/development/python-modules/distributed/default.nix
+++ b/pkgs/development/python-modules/distributed/default.nix
@@ -27,12 +27,12 @@
 
 buildPythonPackage rec {
   pname = "distributed";
-  version = "2.9.1";
+  version = "2.9.3";
 
   # get full repository need conftest.py to run tests
   src = fetchPypi {
     inherit pname version;
-    sha256 = "d37a5c5be992f3b16db24b54d2801cbe370990fbc63089c6e7ef40d6f03cf5dd";
+    sha256 = "70e29fed075270df4ca7dda2b26a79523b753fe90fb278b2a7d6b0290ba53d9a";
   };
 
   checkInputs = [ pytest pytest-repeat pytest-timeout mock joblib ];