From 8b702dda352fa7d8f90407fb796daa5697dc76b7 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 15 Nov 2024 04:28:54 +0100 Subject: [PATCH] python312Packages.pydevd: disable failing test This is due to the numpy 2 migration. --- pkgs/development/python-modules/pydevd/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pydevd/default.nix b/pkgs/development/python-modules/pydevd/default.nix index 207e5e5c9edf..20264af54865 100644 --- a/pkgs/development/python-modules/pydevd/default.nix +++ b/pkgs/development/python-modules/pydevd/default.nix @@ -62,6 +62,8 @@ buildPythonPackage rec { "test_tracing_other_threads" # subprocess.CalledProcessError "test_find_main_thread_id" + # numpy 2 compat + "test_evaluate_numpy" ] ++ lib.optionals (pythonAtLeast "3.12") [ "test_case_handled_and_unhandled_exception_generator"