From 002beda20d89fbcdfc15649b634c424bcbe9852f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 10 Mar 2023 22:52:31 +0100 Subject: [PATCH] python310Packages.jax: Fix disabled test specifiers Fixes: 3bc5413 --- pkgs/development/python-modules/jax/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/jax/default.nix b/pkgs/development/python-modules/jax/default.nix index 8295efd84cc9..26f89695ee16 100644 --- a/pkgs/development/python-modules/jax/default.nix +++ b/pkgs/development/python-modules/jax/default.nix @@ -72,9 +72,9 @@ buildPythonPackage rec { # UserWarning: Explicitly requested dtype # requested in astype is not available, and will be truncated to # dtype float32. (With numpy 1.24) - "LaxBackedScipyStatsTests::testKde3" - "LaxBackedScipyStatsTests::testKde5" - "LaxBackedScipyStatsTests::testKde6" + "testKde3" + "testKde5" + "testKde6" ] ++ lib.optionals usingMKL [ # See # * https://github.com/google/jax/issues/9705