python311Packages.jaxopt: disable failing tests

This commit is contained in:
Fabian Affolter 2023-06-06 23:29:10 +02:00
parent 0b00177a30
commit 2209743004

View File

@ -17,6 +17,8 @@
buildPythonPackage rec {
pname = "jaxopt";
version = "0.5.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
@ -50,6 +52,11 @@ buildPythonPackage rec {
"jaxopt.tree_util"
];
disabledTests = [
# Stack frame issue
"test_bisect"
];
meta = with lib; {
homepage = "https://jaxopt.github.io";
description = "Hardware accelerated, batchable and differentiable optimizers in JAX";