From 8deb947bd8f07ec3292aefe8c54a847f1712de4a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 22 Mar 2026 23:15:45 +0000 Subject: [PATCH 1/2] python3Packages.dask: 2026.1.2 -> 2026.3.0 Diff: https://github.com/dask/dask/compare/2026.1.2...2026.3.0 Changelog: https://docs.dask.org/en/latest/changelog.html --- .../python-modules/dask/default.nix | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/dask/default.nix b/pkgs/development/python-modules/dask/default.nix index 0fc701ab53fb..f10b8b100be4 100644 --- a/pkgs/development/python-modules/dask/default.nix +++ b/pkgs/development/python-modules/dask/default.nix @@ -44,14 +44,14 @@ buildPythonPackage (finalAttrs: { pname = "dask"; - version = "2026.1.2"; + version = "2026.3.0"; pyproject = true; src = fetchFromGitHub { owner = "dask"; repo = "dask"; tag = finalAttrs.version; - hash = "sha256-cyeAU5r8uYb7aAII9HztKY+3On44/nOC9eU9stYYWzE="; + hash = "sha256-JfCiABGSCJKKSz2/r8fvpVwdQSZqvoQICe+lDvuNhoM="; }; postPatch = lib.optionalString stdenv.hostPlatform.isLinux '' @@ -118,6 +118,10 @@ buildPythonPackage (finalAttrs: { pytestFlags = [ # Rerun failed tests up to three times "--reruns=3" + + # FutureWarning: The previous implementation of stack is deprecated and will be removed in a + # future version of pandas. + "-Wignore::FutureWarning" ]; disabledTestMarks = [ @@ -125,8 +129,16 @@ buildPythonPackage (finalAttrs: { "network" ]; - # https://github.com/dask/dask/issues/12042 - disabledTests = lib.optionals (pythonAtLeast "3.14") [ + disabledTests = [ + # https://github.com/dask/dask/issues/10931 + "test_combine_first_all_nans" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + # RuntimeWarning: divide by zero encountered in det + "test_array_notimpl_function_dask" + ] + ++ lib.optionals (pythonAtLeast "3.14") [ + # https://github.com/dask/dask/issues/12042 "test_multiple_repartition_partition_size" ]; From 3176f2ee8f9b24351dc9172a70299fd0bf3fadf0 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 22 Mar 2026 23:16:21 +0000 Subject: [PATCH 2/2] python3Packages.distributed: 2026.1.2 -> 2026.3.0 Diff: https://github.com/dask/distributed/compare/2026.1.2...2026.3.0 Changelog: https://github.com/dask/distributed/releases/tag/2026.3.0 --- pkgs/development/python-modules/distributed/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/distributed/default.nix b/pkgs/development/python-modules/distributed/default.nix index 81999062196e..8a03aa1cd8ea 100644 --- a/pkgs/development/python-modules/distributed/default.nix +++ b/pkgs/development/python-modules/distributed/default.nix @@ -27,14 +27,14 @@ buildPythonPackage (finalAttrs: { pname = "distributed"; - version = "2026.1.2"; + version = "2026.3.0"; pyproject = true; src = fetchFromGitHub { owner = "dask"; repo = "distributed"; tag = finalAttrs.version; - hash = "sha256-VkZ9rd+eVyfwfRMSAqriR8UjdlqsqHYCkCHZJnk0VOU="; + hash = "sha256-lStJwJbhuyPuJ7Nbcm6S6f7tq1T5DtAy8zE1p2Mdrt0="; }; build-system = [